Autodesk.Revit.DB.FabricationConnectorInfo
类表示Revit中的钣金连接器信息。它包含有关连接器的位置、方向、尺寸、类型以及相关联的逻辑管道或风管的信息。
public FabricationConnectorInfo(int connectorType, XYZ position, XYZ normal, XYZ direction, double diameter, double length)
该构造函数创建一个新的FabricationConnectorInfo
实例。
参数:
connectorType
:连接器类型的整数代码position
:连接器中心的三维坐标normal
:连接器正常方向的向量direction
:连接器方向的向量diameter
:连接器的直径length
:连接器的长度public int ConnectorType { get; }
获取连接器类型的整数代码。
public XYZ Position { get; }
获取连接器中心的三维坐标。
public XYZ Normal { get; }
获取连接器正常方向的向量。
public XYZ Direction { get; }
获取连接器方向的向量。
public double Diameter { get; }
获取连接器的直径。
public double Length { get; }
获取连接器的长度。
该类没有提供任何方法。
以下示例展示了如何创建一个FabricationConnectorInfo
实例:
FabricationConnectorInfo connectorInfo = new FabricationConnectorInfo(
connectorTypeInt,
new XYZ(xPos, yPos, zPos),
new XYZ(xNormal, yNormal, zNormal),
new XYZ(xDirection, yDirection, zDirection),
diameter,
length);