8.9.3.1 IfcAxis1Placement(一维轴定位)
RV ⓘ
AbV ⓘ
8.9.3.1.1 语义定义(Semantic definition)
IfcAxis1Placement 提供单轴的位置和方向。

图 8.9.3.1.A 展示了在父三维坐标系中 IfcAxis1Placement 的定义。
8.9.3.1.2 实体继承(Entity inheritance)
-
- IfcPlacement
- IfcAnnotationFillArea
- IfcBooleanResult
- IfcBoundingBox
- IfcCartesianPointList
- IfcCartesianTransformationOperator
- IfcCsgPrimitive3D
- IfcCurve
- IfcDirection
- IfcFaceBasedSurfaceModel
- IfcFillAreaStyleHatching
- IfcFillAreaStyleTiles
- IfcGeometricSet
- IfcHalfSpaceSolid
- IfcLightSource
- IfcPlanarExtent
- IfcPoint
- IfcSectionedSpine
- IfcSegment
- IfcShellBasedSurfaceModel
- IfcSolidModel
- IfcSurface
- IfcTessellatedItem
- IfcTextLiteral
- IfcVector
8.9.3.1.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,例如,为几何曲线提供曲线样式,包括颜色和厚度。 |
|
| IfcPlacement (2) | |||
| 1 | Location | IfcPoint |
参考点(如圆心)的几何位置,用于确定待定位项目的位置。 |
| * | Dim | IfcDimensionCount |
此属性是形式化派生的
该类的空间维度,由位置坐标的维度推导得出。 |
| 点击显示 4 个隐藏的继承特性 点击隐藏 4 个继承特性 | |||
| IfcAxis1Placement (2) | |||
| 2 | Axis | OPTIONAL IfcDirection |
局部 Z 轴的方向。 |
| * | Z | IfcDirection |
此属性是形式化派生的
局部 Z 轴的归一化方向。如果给定,则与 Axis 值相同;否则默认为 [0.,0.,1.] |
8.9.3.1.4 形式化命题(Formal propositions)
| 名称 | 描述 |
|---|---|
| AxisIs3D |
如果给定 Axis,应仅引用三维 IfcDirection。 |
|
|
| LocationIs3D |
定义 Location 的笛卡尔点应具有三维性。 |
|
|
| LocationIsCP |
无可用描述 |
|
|
8.9.3.1.5 形式化表示(Formal representation)
ENTITY IfcAxis1Placement
SUBTYPE OF (IfcPlacement);
Axis : OPTIONAL IfcDirection;
DERIVE
Z : IfcDirection := NVL (IfcNormalise(Axis), IfcRepresentationItem() || IfcGeometricRepresentationItem () || IfcDirection([0.0,0.0,1.0]));
WHERE
AxisIs3D : (NOT (EXISTS (Axis))) OR (Axis.Dim = 3);
LocationIs3D : SELF\IfcPlacement.Location.Dim = 3;
LocationIsCP : 'IFC4X3_DEV_62887e3f.IFCCARTESIANPOINT' IN TYPEOF(SELF\IfcPlacement.Location);
END_ENTITY;