8.9.3.52 IfcPolynomialCurve(多项式曲线)
AbV ⓘ
8.9.3.52.1 语义定义(Semantic definition)
多项式曲线。
8.9.3.52.2 实体继承(Entity inheritance)
-
- IfcCurve
- IfcAnnotationFillArea
- IfcBooleanResult
- IfcBoundingBox
- IfcCartesianPointList
- IfcCartesianTransformationOperator
- IfcCsgPrimitive3D
- IfcDirection
- IfcFaceBasedSurfaceModel
- IfcFillAreaStyleHatching
- IfcFillAreaStyleTiles
- IfcGeometricSet
- IfcHalfSpaceSolid
- IfcLightSource
- IfcPlacement
- IfcPlanarExtent
- IfcPoint
- IfcSectionedSpine
- IfcSegment
- IfcShellBasedSurfaceModel
- IfcSolidModel
- IfcSurface
- IfcTessellatedItem
- IfcTextLiteral
- IfcVector
8.9.3.52.3 特性(Attributes)
| # | 特性(Attributes) | 类型 | 描述 |
|---|---|---|---|
| IfcRepresentationItem (2) | |||
| LayerAssignment | SET [0:1] OF IfcPresentationLayerAssignment FOR AssignedItems |
将表示项分配给单个或多个层。LayerAssignments 可以覆盖其所在的 IfcRepresentation 的 Items 列表中的 LayerAssignments。 |
|
| StyledByItem | SET [0:1] OF IfcStyledItem FOR Item |
引用为表示提供表现信息的 IfcStyledItem,例如,为几何曲线提供曲线样式,包括颜色和厚度。 |
|
| IfcCurve (1) | |||
| * | Dim | IfcDimensionCount |
此属性是形式化派生的
此抽象类的空间维度,所有子类(如 IfcLine、IfcConic 和 IfcBoundedCurve)的定义各不相同。 |
| 点击显示 3 个隐藏的继承特性 点击隐藏 3 个继承特性 | |||
| IfcPolynomialCurve (4) | |||
| 1 | Position | IfcPlacement |
无可用描述 |
| 2 | CoefficientsX | OPTIONAL LIST [2:?] OF IfcReal |
无可用描述 |
| 3 | CoefficientsY | OPTIONAL LIST [2:?] OF IfcReal |
无可用描述 |
| 4 | CoefficientsZ | OPTIONAL LIST [2:?] OF IfcReal |
无可用描述 |
8.9.3.52.4 形式化命题(Formal propositions)
| 名称 | 描述 |
|---|---|
| CorrectPositionDim |
无可用描述 |
|
|
| ValidCoefficients |
无可用描述 |
|
|
8.9.3.52.5 形式化表示(Formal representation)
ENTITY IfcPolynomialCurve
SUBTYPE OF (IfcCurve);
Position : IfcPlacement;
CoefficientsX : OPTIONAL LIST [2:?] OF IfcReal;
CoefficientsY : OPTIONAL LIST [2:?] OF IfcReal;
CoefficientsZ : OPTIONAL LIST [2:?] OF IfcReal;
WHERE
CorrectPositionDim : ((Position.Dim=2) AND (NOT EXISTS(CoefficientsZ))) OR (Position.Dim=3);
ValidCoefficients : (EXISTS(CoefficientsX) AND EXISTS(CoefficientsY)) OR (EXISTS(CoefficientsX) AND EXISTS(CoefficientsZ)) OR (EXISTS(CoefficientsY) AND EXISTS(CoefficientsZ)) OR (EXISTS(CoefficientsX) AND EXISTS(CoefficientsY) AND EXISTS(CoefficientsZ));
END_ENTITY;