| 标注 | 说明 | 数据类型 | 
输入 TIN  | 第一个输入 TIN。  | TIN Layer | 
输入 TIN  | 第二个输入 TIN。  | TIN Layer | 
输入要素类  | 将在 TIN 之间拉伸的要素。  | Feature Layer | 
输出要素类  | 将存储拉伸后的要素输出。  | Feature Class | 
摘要
通过在两个不规则三角网 (TIN) 数据集间拉伸各输入要素创建 3D 要素。
插图

使用情况
参数
arcpy.ddd.ExtrudeBetween(in_tin1, in_tin2, in_feature_class, out_feature_class)
| 名称 | 说明 | 数据类型 | 
in_tin1  | 第一个输入 TIN。  | TIN Layer | 
in_tin2  | 第二个输入 TIN。  | TIN Layer | 
in_feature_class  | 将在 TIN 之间拉伸的要素。  | Feature Layer | 
out_feature_class  | 将存储拉伸后的要素输出。  | Feature Class | 
代码示例
下面的示例演示了如何在 Python 窗口中使用此工具。
arcpy.env.workspace = "C:/data"
arcpy.ddd.ExtrudeBetween("tin1", "tin2", "study_area.shp", "extrusion.shp")下面的示例演示了如何在独立 Python 脚本中使用此工具。
'''****************************************************************************
Name: ExtrudeBetween Example
Description: This script demonstrates how to use the
             ExtrudeBetween tool.
****************************************************************************'''
# Import system modules
import arcpy
# Set environment settings
arcpy.env.workspace = "C:/data"
# Set Local Variables
inTIN1 = "ceiling"
inTIN2 = "floor"
inPoly = "study_area.shp"
# Ensure output has a unique name
outMP = arcpy.CreateUniqueName("extrusion.shp")
#Execute ExtrudeBetween
arcpy.ddd.ExtrudeBetween(inTIN1, inTIN2, inPoly, outMP)