PathReinforcementType
类是 Autodesk.Revit.DB.Structure
命名空间中的一个类型,它表示用于路径钢筋的类型。可用于 RebarPath
对象。
无
以下是 PathReinforcementType
类的一些属性:
属性名 | 返回值类型 | 描述 |
---|---|---|
BarType |
RebarBarType |
钢筋的类型 |
BarSpacing |
RebarSpacingRule |
钢筋的间距 |
BendDiameter |
double |
弯曲直径 |
BendAngle |
double |
弯曲角度 |
HookAtStart |
RebarHookOrientation |
开始处的弯钩方向 |
HookAtEnd |
RebarHookOrientation |
结束处的弯钩方向 |
HookLengthAtStart |
double |
开始处的弯钩长度 |
HookLengthAtEnd |
double |
结束处的弯钩长度 |
IncludeBarBendRadius |
bool |
是否包含钢筋弯曲半径 |
以下是 PathReinforcementType
类的一些方法:
方法名 | 返回值类型 | 描述 |
---|---|---|
Equals |
bool |
比较两个对象是否相等 |
GetHashCode |
int |
获取对象的哈希码 |
// 用于创建路径钢筋的类型对象
PathReinforcementType pathReinforcementType = new PathReinforcementType();
pathReinforcementType.BarType = RebarBarType.Deformed;
pathReinforcementType.BarSpacing = RebarSpacingRule.AtXYZ;
pathReinforcementType.BendDiameter = 25;
pathReinforcementType.HookLengthAtStart = 2;