@pilotdev/pilot-web-3d 24.15.0 → 24.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +1822 -1799
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -670,6 +670,36 @@ export class HoverEvent extends Event {
|
|
|
670
670
|
export class GlobalEvents {
|
|
671
671
|
static events: EventsDispatcherCore;
|
|
672
672
|
}
|
|
673
|
+
export class RenderViewSettings {
|
|
674
|
+
telemetry?: boolean;
|
|
675
|
+
hideEdgesWhenNavigation?: boolean;
|
|
676
|
+
antiAliasing?: boolean;
|
|
677
|
+
displayMode?: DisplayMode;
|
|
678
|
+
cameraMode?: CameraMode;
|
|
679
|
+
/** Desired render framerate */
|
|
680
|
+
desiredFramerate?: number;
|
|
681
|
+
/** Allocated time for rendering operations, excluding scene rendering */
|
|
682
|
+
manageTime?: number;
|
|
683
|
+
/** Number of scene updates managed at once */
|
|
684
|
+
chunkUpdateSize?: number;
|
|
685
|
+
/** Draw hovered meshes on the `selectionScene` */
|
|
686
|
+
hoverMeshes?: boolean;
|
|
687
|
+
/** Draw hovered edges on the `selectionScene` */
|
|
688
|
+
hoverEdges?: boolean;
|
|
689
|
+
/** Draw selected meshes on the `selectionScene` */
|
|
690
|
+
selectEdges?: boolean;
|
|
691
|
+
/** Draw selected edges on the `selectionScene` */
|
|
692
|
+
selectMeshes?: boolean;
|
|
693
|
+
}
|
|
694
|
+
export enum DisplayMode {
|
|
695
|
+
FACES_AND_EDGES = 0,
|
|
696
|
+
FACES = 1
|
|
697
|
+
}
|
|
698
|
+
export enum CameraMode {
|
|
699
|
+
ORTHOGRAPHIC = 0,
|
|
700
|
+
PERSPECTIVE = 1
|
|
701
|
+
}
|
|
702
|
+
export const defaultRenderViewSettings: RenderViewSettings;
|
|
673
703
|
export type Point3 = {
|
|
674
704
|
x: number;
|
|
675
705
|
y: number;
|
|
@@ -779,6 +809,15 @@ export interface ICameraControl {
|
|
|
779
809
|
* @param duration - (optional) navigation duration, used if {@link isEnable} is true. If defined: turns off navigation {@link mode} after {@link duration} delay.
|
|
780
810
|
*/
|
|
781
811
|
setNavigationMode(mode: CameraNavigationMode, isEnable: boolean, duration?: number): void;
|
|
812
|
+
/**
|
|
813
|
+
* Gets the camera projection mode
|
|
814
|
+
*/
|
|
815
|
+
getCameraMode(): CameraMode;
|
|
816
|
+
/**
|
|
817
|
+
* Sets the camera projection mode
|
|
818
|
+
* @param mode - projection mode: orthographic or perspective
|
|
819
|
+
*/
|
|
820
|
+
setCameraMode(mode: CameraMode): boolean;
|
|
782
821
|
}
|
|
783
822
|
export class EventTypes extends CoreEventTypes {
|
|
784
823
|
static MODEL_PART_LOADED: string;
|
|
@@ -871,1491 +910,104 @@ export interface ModelElementTree {
|
|
|
871
910
|
*/
|
|
872
911
|
getChildLevelNumber(element: string | ModelElement): number;
|
|
873
912
|
}
|
|
874
|
-
export
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
IfcBoundaryNodeConditionWarping = 90,
|
|
973
|
-
IfcBoundedCurve = 91,
|
|
974
|
-
IfcBoundedSurface = 92,
|
|
975
|
-
IfcBoundingBox = 93,
|
|
976
|
-
IfcBoxAlignment = 94,
|
|
977
|
-
IfcBoxedHalfSpace = 95,
|
|
978
|
-
IfcBSplineCurve = 96,
|
|
979
|
-
IfcBSplineCurveForm = 97,
|
|
980
|
-
IfcBSplineCurveWithKnots = 98,
|
|
981
|
-
IfcBSplineSurface = 99,
|
|
982
|
-
IfcBSplineSurfaceForm = 100,
|
|
983
|
-
IfcBSplineSurfaceWithKnots = 101,
|
|
984
|
-
IfcBuilding = 102,
|
|
985
|
-
IfcBuildingElement = 103,
|
|
986
|
-
IfcBuildingElementPart = 104,
|
|
987
|
-
IfcBuildingElementPartType = 105,
|
|
988
|
-
IfcBuildingElementPartTypeEnum = 106,
|
|
989
|
-
IfcBuildingElementProxy = 107,
|
|
990
|
-
IfcBuildingElementProxyType = 108,
|
|
991
|
-
IfcBuildingElementProxyTypeEnum = 109,
|
|
992
|
-
IfcBuildingElementType = 110,
|
|
993
|
-
IfcBuildingStorey = 111,
|
|
994
|
-
IfcBuildingSystem = 112,
|
|
995
|
-
IfcBuildingSystemTypeEnum = 113,
|
|
996
|
-
IfcBurner = 114,
|
|
997
|
-
IfcBurnerType = 115,
|
|
998
|
-
IfcBurnerTypeEnum = 116,
|
|
999
|
-
IfcCableCarrierFitting = 117,
|
|
1000
|
-
IfcCableCarrierFittingType = 118,
|
|
1001
|
-
IfcCableCarrierFittingTypeEnum = 119,
|
|
1002
|
-
IfcCableCarrierSegment = 120,
|
|
1003
|
-
IfcCableCarrierSegmentType = 121,
|
|
1004
|
-
IfcCableCarrierSegmentTypeEnum = 122,
|
|
1005
|
-
IfcCableFitting = 123,
|
|
1006
|
-
IfcCableFittingType = 124,
|
|
1007
|
-
IfcCableFittingTypeEnum = 125,
|
|
1008
|
-
IfcCableSegment = 126,
|
|
1009
|
-
IfcCableSegmentType = 127,
|
|
1010
|
-
IfcCableSegmentTypeEnum = 128,
|
|
1011
|
-
IfcCardinalPointReference = 129,
|
|
1012
|
-
IfcCartesianPoint = 130,
|
|
1013
|
-
IfcCartesianPointList = 131,
|
|
1014
|
-
IfcCartesianPointList2D = 132,
|
|
1015
|
-
IfcCartesianPointList3D = 133,
|
|
1016
|
-
IfcCartesianTransformationOperator = 134,
|
|
1017
|
-
IfcCartesianTransformationOperator2D = 135,
|
|
1018
|
-
IfcCartesianTransformationOperator2DnonUniform = 136,
|
|
1019
|
-
IfcCartesianTransformationOperator3D = 137,
|
|
1020
|
-
IfcCartesianTransformationOperator3DnonUniform = 138,
|
|
1021
|
-
IfcCenterLineProfileDef = 139,
|
|
1022
|
-
IfcChangeActionEnum = 140,
|
|
1023
|
-
IfcChiller = 141,
|
|
1024
|
-
IfcChillerType = 142,
|
|
1025
|
-
IfcChillerTypeEnum = 143,
|
|
1026
|
-
IfcChimney = 144,
|
|
1027
|
-
IfcChimneyType = 145,
|
|
1028
|
-
IfcChimneyTypeEnum = 146,
|
|
1029
|
-
IfcCircle = 147,
|
|
1030
|
-
IfcCircleHollowProfileDef = 148,
|
|
1031
|
-
IfcCircleProfileDef = 149,
|
|
1032
|
-
IfcCircularArcSegment2D = 150,
|
|
1033
|
-
IfcCivilElement = 151,
|
|
1034
|
-
IfcCivilElementType = 152,
|
|
1035
|
-
IfcClassification = 153,
|
|
1036
|
-
IfcClassificationReference = 154,
|
|
1037
|
-
IfcClassificationReferenceSelect = 155,
|
|
1038
|
-
IfcClassificationSelect = 156,
|
|
1039
|
-
IfcClosedShell = 157,
|
|
1040
|
-
IfcCoil = 158,
|
|
1041
|
-
IfcCoilType = 159,
|
|
1042
|
-
IfcCoilTypeEnum = 160,
|
|
1043
|
-
IfcColour = 161,
|
|
1044
|
-
IfcColourOrFactor = 162,
|
|
1045
|
-
IfcColourRgb = 163,
|
|
1046
|
-
IfcColourRgbList = 164,
|
|
1047
|
-
IfcColourSpecification = 165,
|
|
1048
|
-
IfcColumn = 166,
|
|
1049
|
-
IfcColumnStandardCase = 167,
|
|
1050
|
-
IfcColumnType = 168,
|
|
1051
|
-
IfcColumnTypeEnum = 169,
|
|
1052
|
-
IfcCommunicationsAppliance = 170,
|
|
1053
|
-
IfcCommunicationsApplianceType = 171,
|
|
1054
|
-
IfcCommunicationsApplianceTypeEnum = 172,
|
|
1055
|
-
IfcComplexNumber = 173,
|
|
1056
|
-
IfcComplexProperty = 174,
|
|
1057
|
-
IfcComplexPropertyTemplate = 175,
|
|
1058
|
-
IfcComplexPropertyTemplateTypeEnum = 176,
|
|
1059
|
-
IfcCompositeCurve = 177,
|
|
1060
|
-
IfcCompositeCurveOnSurface = 178,
|
|
1061
|
-
IfcCompositeCurveSegment = 179,
|
|
1062
|
-
IfcCompositeProfileDef = 180,
|
|
1063
|
-
IfcCompoundPlaneAngleMeasure = 181,
|
|
1064
|
-
IfcCompressor = 182,
|
|
1065
|
-
IfcCompressorType = 183,
|
|
1066
|
-
IfcCompressorTypeEnum = 184,
|
|
1067
|
-
IfcCondenser = 185,
|
|
1068
|
-
IfcCondenserType = 186,
|
|
1069
|
-
IfcCondenserTypeEnum = 187,
|
|
1070
|
-
IfcConic = 188,
|
|
1071
|
-
IfcConnectedFaceSet = 189,
|
|
1072
|
-
IfcConnectionCurveGeometry = 190,
|
|
1073
|
-
IfcConnectionGeometry = 191,
|
|
1074
|
-
IfcConnectionPointEccentricity = 192,
|
|
1075
|
-
IfcConnectionPointGeometry = 193,
|
|
1076
|
-
IfcConnectionSurfaceGeometry = 194,
|
|
1077
|
-
IfcConnectionTypeEnum = 195,
|
|
1078
|
-
IfcConnectionVolumeGeometry = 196,
|
|
1079
|
-
IfcConstraint = 197,
|
|
1080
|
-
IfcConstraintEnum = 198,
|
|
1081
|
-
IfcConstructionEquipmentResource = 199,
|
|
1082
|
-
IfcConstructionEquipmentResourceType = 200,
|
|
1083
|
-
IfcConstructionEquipmentResourceTypeEnum = 201,
|
|
1084
|
-
IfcConstructionMaterialResource = 202,
|
|
1085
|
-
IfcConstructionMaterialResourceType = 203,
|
|
1086
|
-
IfcConstructionMaterialResourceTypeEnum = 204,
|
|
1087
|
-
IfcConstructionProductResource = 205,
|
|
1088
|
-
IfcConstructionProductResourceType = 206,
|
|
1089
|
-
IfcConstructionProductResourceTypeEnum = 207,
|
|
1090
|
-
IfcConstructionResource = 208,
|
|
1091
|
-
IfcConstructionResourceType = 209,
|
|
1092
|
-
IfcContext = 210,
|
|
1093
|
-
IfcContextDependentMeasure = 211,
|
|
1094
|
-
IfcContextDependentUnit = 212,
|
|
1095
|
-
IfcControl = 213,
|
|
1096
|
-
IfcController = 214,
|
|
1097
|
-
IfcControllerType = 215,
|
|
1098
|
-
IfcControllerTypeEnum = 216,
|
|
1099
|
-
IfcConversionBasedUnit = 217,
|
|
1100
|
-
IfcConversionBasedUnitWithOffset = 218,
|
|
1101
|
-
IfcCooledBeam = 219,
|
|
1102
|
-
IfcCooledBeamType = 220,
|
|
1103
|
-
IfcCooledBeamTypeEnum = 221,
|
|
1104
|
-
IfcCoolingTower = 222,
|
|
1105
|
-
IfcCoolingTowerType = 223,
|
|
1106
|
-
IfcCoolingTowerTypeEnum = 224,
|
|
1107
|
-
IfcCoordinateOperation = 225,
|
|
1108
|
-
IfcCoordinateReferenceSystem = 226,
|
|
1109
|
-
IfcCoordinateReferenceSystemSelect = 227,
|
|
1110
|
-
IfcCostItem = 228,
|
|
1111
|
-
IfcCostItemTypeEnum = 229,
|
|
1112
|
-
IfcCostSchedule = 230,
|
|
1113
|
-
IfcCostScheduleTypeEnum = 231,
|
|
1114
|
-
IfcCostValue = 232,
|
|
1115
|
-
IfcCountMeasure = 233,
|
|
1116
|
-
IfcCovering = 234,
|
|
1117
|
-
IfcCoveringType = 235,
|
|
1118
|
-
IfcCoveringTypeEnum = 236,
|
|
1119
|
-
IfcCrewResource = 237,
|
|
1120
|
-
IfcCrewResourceType = 238,
|
|
1121
|
-
IfcCrewResourceTypeEnum = 239,
|
|
1122
|
-
IfcCsgPrimitive3D = 240,
|
|
1123
|
-
IfcCsgSelect = 241,
|
|
1124
|
-
IfcCsgSolid = 242,
|
|
1125
|
-
IfcCShapeProfileDef = 243,
|
|
1126
|
-
IfcCurrencyRelationship = 244,
|
|
1127
|
-
IfcCurtainWall = 245,
|
|
1128
|
-
IfcCurtainWallType = 246,
|
|
1129
|
-
IfcCurtainWallTypeEnum = 247,
|
|
1130
|
-
IfcCurvatureMeasure = 248,
|
|
1131
|
-
IfcCurve = 249,
|
|
1132
|
-
IfcCurveBoundedPlane = 250,
|
|
1133
|
-
IfcCurveBoundedSurface = 251,
|
|
1134
|
-
IfcCurveFontOrScaledCurveFontSelect = 252,
|
|
1135
|
-
IfcCurveInterpolationEnum = 253,
|
|
1136
|
-
IfcCurveOnSurface = 254,
|
|
1137
|
-
IfcCurveOrEdgeCurve = 255,
|
|
1138
|
-
IfcCurveSegment2D = 256,
|
|
1139
|
-
IfcCurveStyle = 257,
|
|
1140
|
-
IfcCurveStyleFont = 258,
|
|
1141
|
-
IfcCurveStyleFontAndScaling = 259,
|
|
1142
|
-
IfcCurveStyleFontPattern = 260,
|
|
1143
|
-
IfcCurveStyleFontSelect = 261,
|
|
1144
|
-
IfcCylindricalSurface = 262,
|
|
1145
|
-
IfcDamper = 263,
|
|
1146
|
-
IfcDamperType = 264,
|
|
1147
|
-
IfcDamperTypeEnum = 265,
|
|
1148
|
-
IfcDataOriginEnum = 266,
|
|
1149
|
-
IfcDate = 267,
|
|
1150
|
-
IfcDateTime = 268,
|
|
1151
|
-
IfcDayInMonthNumber = 269,
|
|
1152
|
-
IfcDayInWeekNumber = 270,
|
|
1153
|
-
IfcDefinitionSelect = 271,
|
|
1154
|
-
IfcDerivedMeasureValue = 272,
|
|
1155
|
-
IfcDerivedProfileDef = 273,
|
|
1156
|
-
IfcDerivedUnit = 274,
|
|
1157
|
-
IfcDerivedUnitElement = 275,
|
|
1158
|
-
IfcDerivedUnitEnum = 276,
|
|
1159
|
-
IfcDescriptiveMeasure = 277,
|
|
1160
|
-
IfcDimensionalExponents = 278,
|
|
1161
|
-
IfcDimensionCount = 279,
|
|
1162
|
-
IfcDirection = 280,
|
|
1163
|
-
IfcDirectionSenseEnum = 281,
|
|
1164
|
-
IfcDiscreteAccessory = 282,
|
|
1165
|
-
IfcDiscreteAccessoryType = 283,
|
|
1166
|
-
IfcDiscreteAccessoryTypeEnum = 284,
|
|
1167
|
-
IfcDistanceExpression = 285,
|
|
1168
|
-
IfcDistributionChamberElement = 286,
|
|
1169
|
-
IfcDistributionChamberElementType = 287,
|
|
1170
|
-
IfcDistributionChamberElementTypeEnum = 288,
|
|
1171
|
-
IfcDistributionCircuit = 289,
|
|
1172
|
-
IfcDistributionControlElement = 290,
|
|
1173
|
-
IfcDistributionControlElementType = 291,
|
|
1174
|
-
IfcDistributionElement = 292,
|
|
1175
|
-
IfcDistributionElementType = 293,
|
|
1176
|
-
IfcDistributionFlowElement = 294,
|
|
1177
|
-
IfcDistributionFlowElementType = 295,
|
|
1178
|
-
IfcDistributionPort = 296,
|
|
1179
|
-
IfcDistributionPortTypeEnum = 297,
|
|
1180
|
-
IfcDistributionSystem = 298,
|
|
1181
|
-
IfcDistributionSystemEnum = 299,
|
|
1182
|
-
IfcDocumentConfidentialityEnum = 300,
|
|
1183
|
-
IfcDocumentInformation = 301,
|
|
1184
|
-
IfcDocumentInformationRelationship = 302,
|
|
1185
|
-
IfcDocumentReference = 303,
|
|
1186
|
-
IfcDocumentSelect = 304,
|
|
1187
|
-
IfcDocumentStatusEnum = 305,
|
|
1188
|
-
IfcDoor = 306,
|
|
1189
|
-
IfcDoorLiningProperties = 307,
|
|
1190
|
-
IfcDoorPanelOperationEnum = 308,
|
|
1191
|
-
IfcDoorPanelPositionEnum = 309,
|
|
1192
|
-
IfcDoorPanelProperties = 310,
|
|
1193
|
-
IfcDoorStandardCase = 311,
|
|
1194
|
-
IfcDoorStyle = 312,
|
|
1195
|
-
IfcDoorStyleConstructionEnum = 313,
|
|
1196
|
-
IfcDoorStyleOperationEnum = 314,
|
|
1197
|
-
IfcDoorType = 315,
|
|
1198
|
-
IfcDoorTypeEnum = 316,
|
|
1199
|
-
IfcDoorTypeOperationEnum = 317,
|
|
1200
|
-
IfcDoseEquivalentMeasure = 318,
|
|
1201
|
-
IfcDraughtingPreDefinedColour = 319,
|
|
1202
|
-
IfcDraughtingPreDefinedCurveFont = 320,
|
|
1203
|
-
IfcDuctFitting = 321,
|
|
1204
|
-
IfcDuctFittingType = 322,
|
|
1205
|
-
IfcDuctFittingTypeEnum = 323,
|
|
1206
|
-
IfcDuctSegment = 324,
|
|
1207
|
-
IfcDuctSegmentType = 325,
|
|
1208
|
-
IfcDuctSegmentTypeEnum = 326,
|
|
1209
|
-
IfcDuctSilencer = 327,
|
|
1210
|
-
IfcDuctSilencerType = 328,
|
|
1211
|
-
IfcDuctSilencerTypeEnum = 329,
|
|
1212
|
-
IfcDuration = 330,
|
|
1213
|
-
IfcDynamicViscosityMeasure = 331,
|
|
1214
|
-
IfcEdge = 332,
|
|
1215
|
-
IfcEdgeCurve = 333,
|
|
1216
|
-
IfcEdgeLoop = 334,
|
|
1217
|
-
IfcElectricAppliance = 335,
|
|
1218
|
-
IfcElectricApplianceType = 336,
|
|
1219
|
-
IfcElectricApplianceTypeEnum = 337,
|
|
1220
|
-
IfcElectricCapacitanceMeasure = 338,
|
|
1221
|
-
IfcElectricChargeMeasure = 339,
|
|
1222
|
-
IfcElectricConductanceMeasure = 340,
|
|
1223
|
-
IfcElectricCurrentMeasure = 341,
|
|
1224
|
-
IfcElectricDistributionBoard = 342,
|
|
1225
|
-
IfcElectricDistributionBoardType = 343,
|
|
1226
|
-
IfcElectricDistributionBoardTypeEnum = 344,
|
|
1227
|
-
IfcElectricFlowStorageDevice = 345,
|
|
1228
|
-
IfcElectricFlowStorageDeviceType = 346,
|
|
1229
|
-
IfcElectricFlowStorageDeviceTypeEnum = 347,
|
|
1230
|
-
IfcElectricGenerator = 348,
|
|
1231
|
-
IfcElectricGeneratorType = 349,
|
|
1232
|
-
IfcElectricGeneratorTypeEnum = 350,
|
|
1233
|
-
IfcElectricMotor = 351,
|
|
1234
|
-
IfcElectricMotorType = 352,
|
|
1235
|
-
IfcElectricMotorTypeEnum = 353,
|
|
1236
|
-
IfcElectricResistanceMeasure = 354,
|
|
1237
|
-
IfcElectricTimeControl = 355,
|
|
1238
|
-
IfcElectricTimeControlType = 356,
|
|
1239
|
-
IfcElectricTimeControlTypeEnum = 357,
|
|
1240
|
-
IfcElectricVoltageMeasure = 358,
|
|
1241
|
-
IfcElement = 359,
|
|
1242
|
-
IfcElementarySurface = 360,
|
|
1243
|
-
IfcElementAssembly = 361,
|
|
1244
|
-
IfcElementAssemblyType = 362,
|
|
1245
|
-
IfcElementAssemblyTypeEnum = 363,
|
|
1246
|
-
IfcElementComponent = 364,
|
|
1247
|
-
IfcElementComponentType = 365,
|
|
1248
|
-
IfcElementCompositionEnum = 366,
|
|
1249
|
-
IfcElementQuantity = 367,
|
|
1250
|
-
IfcElementType = 368,
|
|
1251
|
-
IfcEllipse = 369,
|
|
1252
|
-
IfcEllipseProfileDef = 370,
|
|
1253
|
-
IfcEnergyConversionDevice = 371,
|
|
1254
|
-
IfcEnergyConversionDeviceType = 372,
|
|
1255
|
-
IfcEnergyMeasure = 373,
|
|
1256
|
-
IfcEngine = 374,
|
|
1257
|
-
IfcEngineType = 375,
|
|
1258
|
-
IfcEngineTypeEnum = 376,
|
|
1259
|
-
IfcEvaporativeCooler = 377,
|
|
1260
|
-
IfcEvaporativeCoolerType = 378,
|
|
1261
|
-
IfcEvaporativeCoolerTypeEnum = 379,
|
|
1262
|
-
IfcEvaporator = 380,
|
|
1263
|
-
IfcEvaporatorType = 381,
|
|
1264
|
-
IfcEvaporatorTypeEnum = 382,
|
|
1265
|
-
IfcEvent = 383,
|
|
1266
|
-
IfcEventTime = 384,
|
|
1267
|
-
IfcEventTriggerTypeEnum = 385,
|
|
1268
|
-
IfcEventType = 386,
|
|
1269
|
-
IfcEventTypeEnum = 387,
|
|
1270
|
-
IfcExtendedProperties = 388,
|
|
1271
|
-
IfcExternalInformation = 389,
|
|
1272
|
-
IfcExternallyDefinedHatchStyle = 390,
|
|
1273
|
-
IfcExternallyDefinedSurfaceStyle = 391,
|
|
1274
|
-
IfcExternallyDefinedTextFont = 392,
|
|
1275
|
-
IfcExternalReference = 393,
|
|
1276
|
-
IfcExternalReferenceRelationship = 394,
|
|
1277
|
-
IfcExternalSpatialElement = 395,
|
|
1278
|
-
IfcExternalSpatialElementTypeEnum = 396,
|
|
1279
|
-
IfcExternalSpatialStructureElement = 397,
|
|
1280
|
-
IfcExtrudedAreaSolid = 398,
|
|
1281
|
-
IfcExtrudedAreaSolidTapered = 399,
|
|
1282
|
-
IfcFace = 400,
|
|
1283
|
-
IfcFaceBasedSurfaceModel = 401,
|
|
1284
|
-
IfcFaceBound = 402,
|
|
1285
|
-
IfcFaceOuterBound = 403,
|
|
1286
|
-
IfcFaceSurface = 404,
|
|
1287
|
-
IfcFacetedBrep = 405,
|
|
1288
|
-
IfcFacetedBrepWithVoids = 406,
|
|
1289
|
-
IfcFailureConnectionCondition = 407,
|
|
1290
|
-
IfcFan = 408,
|
|
1291
|
-
IfcFanType = 409,
|
|
1292
|
-
IfcFanTypeEnum = 410,
|
|
1293
|
-
IfcFastener = 411,
|
|
1294
|
-
IfcFastenerType = 412,
|
|
1295
|
-
IfcFastenerTypeEnum = 413,
|
|
1296
|
-
IfcFeatureElement = 414,
|
|
1297
|
-
IfcFeatureElementAddition = 415,
|
|
1298
|
-
IfcFeatureElementSubtraction = 416,
|
|
1299
|
-
IfcFillAreaStyle = 417,
|
|
1300
|
-
IfcFillAreaStyleHatching = 418,
|
|
1301
|
-
IfcFillAreaStyleTiles = 419,
|
|
1302
|
-
IfcFillStyleSelect = 420,
|
|
1303
|
-
IfcFilter = 421,
|
|
1304
|
-
IfcFilterType = 422,
|
|
1305
|
-
IfcFilterTypeEnum = 423,
|
|
1306
|
-
IfcFireSuppressionTerminal = 424,
|
|
1307
|
-
IfcFireSuppressionTerminalType = 425,
|
|
1308
|
-
IfcFireSuppressionTerminalTypeEnum = 426,
|
|
1309
|
-
IfcFixedReferenceSweptAreaSolid = 427,
|
|
1310
|
-
IfcFlowController = 428,
|
|
1311
|
-
IfcFlowControllerType = 429,
|
|
1312
|
-
IfcFlowDirectionEnum = 430,
|
|
1313
|
-
IfcFlowFitting = 431,
|
|
1314
|
-
IfcFlowFittingType = 432,
|
|
1315
|
-
IfcFlowInstrument = 433,
|
|
1316
|
-
IfcFlowInstrumentType = 434,
|
|
1317
|
-
IfcFlowInstrumentTypeEnum = 435,
|
|
1318
|
-
IfcFlowMeter = 436,
|
|
1319
|
-
IfcFlowMeterType = 437,
|
|
1320
|
-
IfcFlowMeterTypeEnum = 438,
|
|
1321
|
-
IfcFlowMovingDevice = 439,
|
|
1322
|
-
IfcFlowMovingDeviceType = 440,
|
|
1323
|
-
IfcFlowSegment = 441,
|
|
1324
|
-
IfcFlowSegmentType = 442,
|
|
1325
|
-
IfcFlowStorageDevice = 443,
|
|
1326
|
-
IfcFlowStorageDeviceType = 444,
|
|
1327
|
-
IfcFlowTerminal = 445,
|
|
1328
|
-
IfcFlowTerminalType = 446,
|
|
1329
|
-
IfcFlowTreatmentDevice = 447,
|
|
1330
|
-
IfcFlowTreatmentDeviceType = 448,
|
|
1331
|
-
IfcFontStyle = 449,
|
|
1332
|
-
IfcFontVariant = 450,
|
|
1333
|
-
IfcFontWeight = 451,
|
|
1334
|
-
IfcFooting = 452,
|
|
1335
|
-
IfcFootingType = 453,
|
|
1336
|
-
IfcFootingTypeEnum = 454,
|
|
1337
|
-
IfcForceMeasure = 455,
|
|
1338
|
-
IfcFrequencyMeasure = 456,
|
|
1339
|
-
IfcFurnishingElement = 457,
|
|
1340
|
-
IfcFurnishingElementType = 458,
|
|
1341
|
-
IfcFurniture = 459,
|
|
1342
|
-
IfcFurnitureType = 460,
|
|
1343
|
-
IfcFurnitureTypeEnum = 461,
|
|
1344
|
-
IfcGeographicElement = 462,
|
|
1345
|
-
IfcGeographicElementType = 463,
|
|
1346
|
-
IfcGeographicElementTypeEnum = 464,
|
|
1347
|
-
IfcGeometricCurveSet = 465,
|
|
1348
|
-
IfcGeometricProjectionEnum = 466,
|
|
1349
|
-
IfcGeometricRepresentationContext = 467,
|
|
1350
|
-
IfcGeometricRepresentationItem = 468,
|
|
1351
|
-
IfcGeometricRepresentationSubContext = 469,
|
|
1352
|
-
IfcGeometricSet = 470,
|
|
1353
|
-
IfcGeometricSetSelect = 471,
|
|
1354
|
-
IfcGloballyUniqueId = 472,
|
|
1355
|
-
IfcGlobalOrLocalEnum = 473,
|
|
1356
|
-
IfcGrid = 474,
|
|
1357
|
-
IfcGridAxis = 475,
|
|
1358
|
-
IfcGridPlacement = 476,
|
|
1359
|
-
IfcGridPlacementDirectionSelect = 477,
|
|
1360
|
-
IfcGridTypeEnum = 478,
|
|
1361
|
-
IfcGroup = 479,
|
|
1362
|
-
IfcHalfSpaceSolid = 480,
|
|
1363
|
-
IfcHatchLineDistanceSelect = 481,
|
|
1364
|
-
IfcHeatExchanger = 482,
|
|
1365
|
-
IfcHeatExchangerType = 483,
|
|
1366
|
-
IfcHeatExchangerTypeEnum = 484,
|
|
1367
|
-
IfcHeatFluxDensityMeasure = 485,
|
|
1368
|
-
IfcHeatingValueMeasure = 486,
|
|
1369
|
-
IfcHumidifier = 487,
|
|
1370
|
-
IfcHumidifierType = 488,
|
|
1371
|
-
IfcHumidifierTypeEnum = 489,
|
|
1372
|
-
IfcIdentifier = 490,
|
|
1373
|
-
IfcIlluminanceMeasure = 491,
|
|
1374
|
-
IfcImageTexture = 492,
|
|
1375
|
-
IfcIndexedColourMap = 493,
|
|
1376
|
-
IfcIndexedPolyCurve = 494,
|
|
1377
|
-
IfcIndexedPolygonalFace = 495,
|
|
1378
|
-
IfcIndexedPolygonalFaceWithVoids = 496,
|
|
1379
|
-
IfcIndexedTextureMap = 497,
|
|
1380
|
-
IfcIndexedTriangleTextureMap = 498,
|
|
1381
|
-
IfcInductanceMeasure = 499,
|
|
1382
|
-
IfcInteger = 500,
|
|
1383
|
-
IfcIntegerCountRateMeasure = 501,
|
|
1384
|
-
IfcInterceptor = 502,
|
|
1385
|
-
IfcInterceptorType = 503,
|
|
1386
|
-
IfcInterceptorTypeEnum = 504,
|
|
1387
|
-
IfcInternalOrExternalEnum = 505,
|
|
1388
|
-
IfcIntersectionCurve = 506,
|
|
1389
|
-
IfcInventory = 507,
|
|
1390
|
-
IfcInventoryTypeEnum = 508,
|
|
1391
|
-
IfcIonConcentrationMeasure = 509,
|
|
1392
|
-
IfcIrregularTimeSeries = 510,
|
|
1393
|
-
IfcIrregularTimeSeriesValue = 511,
|
|
1394
|
-
IfcIShapeProfileDef = 512,
|
|
1395
|
-
IfcIsothermalMoistureCapacityMeasure = 513,
|
|
1396
|
-
IfcJunctionBox = 514,
|
|
1397
|
-
IfcJunctionBoxType = 515,
|
|
1398
|
-
IfcJunctionBoxTypeEnum = 516,
|
|
1399
|
-
IfcKinematicViscosityMeasure = 517,
|
|
1400
|
-
IfcKnotType = 518,
|
|
1401
|
-
IfcLabel = 519,
|
|
1402
|
-
IfcLaborResource = 520,
|
|
1403
|
-
IfcLaborResourceType = 521,
|
|
1404
|
-
IfcLaborResourceTypeEnum = 522,
|
|
1405
|
-
IfcLagTime = 523,
|
|
1406
|
-
IfcLamp = 524,
|
|
1407
|
-
IfcLampType = 525,
|
|
1408
|
-
IfcLampTypeEnum = 526,
|
|
1409
|
-
IfcLanguageId = 527,
|
|
1410
|
-
IfcLayeredItem = 528,
|
|
1411
|
-
IfcLayerSetDirectionEnum = 529,
|
|
1412
|
-
IfcLengthMeasure = 530,
|
|
1413
|
-
IfcLibraryInformation = 531,
|
|
1414
|
-
IfcLibraryReference = 532,
|
|
1415
|
-
IfcLibrarySelect = 533,
|
|
1416
|
-
IfcLightDistributionCurveEnum = 534,
|
|
1417
|
-
IfcLightDistributionData = 535,
|
|
1418
|
-
IfcLightDistributionDataSourceSelect = 536,
|
|
1419
|
-
IfcLightEmissionSourceEnum = 537,
|
|
1420
|
-
IfcLightFixture = 538,
|
|
1421
|
-
IfcLightFixtureType = 539,
|
|
1422
|
-
IfcLightFixtureTypeEnum = 540,
|
|
1423
|
-
IfcLightIntensityDistribution = 541,
|
|
1424
|
-
IfcLightSource = 542,
|
|
1425
|
-
IfcLightSourceAmbient = 543,
|
|
1426
|
-
IfcLightSourceDirectional = 544,
|
|
1427
|
-
IfcLightSourceGoniometric = 545,
|
|
1428
|
-
IfcLightSourcePositional = 546,
|
|
1429
|
-
IfcLightSourceSpot = 547,
|
|
1430
|
-
IfcLine = 548,
|
|
1431
|
-
IfcLinearForceMeasure = 549,
|
|
1432
|
-
IfcLinearMomentMeasure = 550,
|
|
1433
|
-
IfcLinearPlacement = 551,
|
|
1434
|
-
IfcLinearPositioningElement = 552,
|
|
1435
|
-
IfcLinearStiffnessMeasure = 553,
|
|
1436
|
-
IfcLinearVelocityMeasure = 554,
|
|
1437
|
-
IfcLineIndex = 555,
|
|
1438
|
-
IfcLineSegment2D = 556,
|
|
1439
|
-
IfcLoadGroupTypeEnum = 557,
|
|
1440
|
-
IfcLocalPlacement = 558,
|
|
1441
|
-
IfcLogical = 559,
|
|
1442
|
-
IfcLogicalOperatorEnum = 560,
|
|
1443
|
-
IfcLoop = 561,
|
|
1444
|
-
IfcLShapeProfileDef = 562,
|
|
1445
|
-
IfcLuminousFluxMeasure = 563,
|
|
1446
|
-
IfcLuminousIntensityDistributionMeasure = 564,
|
|
1447
|
-
IfcLuminousIntensityMeasure = 565,
|
|
1448
|
-
IfcMagneticFluxDensityMeasure = 566,
|
|
1449
|
-
IfcMagneticFluxMeasure = 567,
|
|
1450
|
-
IfcManifoldSolidBrep = 568,
|
|
1451
|
-
IfcMapConversion = 569,
|
|
1452
|
-
IfcMappedItem = 570,
|
|
1453
|
-
IfcMassDensityMeasure = 571,
|
|
1454
|
-
IfcMassFlowRateMeasure = 572,
|
|
1455
|
-
IfcMassMeasure = 573,
|
|
1456
|
-
IfcMassPerLengthMeasure = 574,
|
|
1457
|
-
IfcMaterial = 575,
|
|
1458
|
-
IfcMaterialClassificationRelationship = 576,
|
|
1459
|
-
IfcMaterialConstituent = 577,
|
|
1460
|
-
IfcMaterialConstituentSet = 578,
|
|
1461
|
-
IfcMaterialDefinition = 579,
|
|
1462
|
-
IfcMaterialDefinitionRepresentation = 580,
|
|
1463
|
-
IfcMaterialLayer = 581,
|
|
1464
|
-
IfcMaterialLayerSet = 582,
|
|
1465
|
-
IfcMaterialLayerSetUsage = 583,
|
|
1466
|
-
IfcMaterialLayerWithOffsets = 584,
|
|
1467
|
-
IfcMaterialList = 585,
|
|
1468
|
-
IfcMaterialProfile = 586,
|
|
1469
|
-
IfcMaterialProfileSet = 587,
|
|
1470
|
-
IfcMaterialProfileSetUsage = 588,
|
|
1471
|
-
IfcMaterialProfileSetUsageTapering = 589,
|
|
1472
|
-
IfcMaterialProfileWithOffsets = 590,
|
|
1473
|
-
IfcMaterialProperties = 591,
|
|
1474
|
-
IfcMaterialRelationship = 592,
|
|
1475
|
-
IfcMaterialSelect = 593,
|
|
1476
|
-
IfcMaterialUsageDefinition = 594,
|
|
1477
|
-
IfcMeasureValue = 595,
|
|
1478
|
-
IfcMeasureWithUnit = 596,
|
|
1479
|
-
IfcMechanicalFastener = 597,
|
|
1480
|
-
IfcMechanicalFastenerType = 598,
|
|
1481
|
-
IfcMechanicalFastenerTypeEnum = 599,
|
|
1482
|
-
IfcMedicalDevice = 600,
|
|
1483
|
-
IfcMedicalDeviceType = 601,
|
|
1484
|
-
IfcMedicalDeviceTypeEnum = 602,
|
|
1485
|
-
IfcMember = 603,
|
|
1486
|
-
IfcMemberStandardCase = 604,
|
|
1487
|
-
IfcMemberType = 605,
|
|
1488
|
-
IfcMemberTypeEnum = 606,
|
|
1489
|
-
IfcMetric = 607,
|
|
1490
|
-
IfcMetricValueSelect = 608,
|
|
1491
|
-
IfcMirroredProfileDef = 609,
|
|
1492
|
-
IfcModulusOfElasticityMeasure = 610,
|
|
1493
|
-
IfcModulusOfLinearSubgradeReactionMeasure = 611,
|
|
1494
|
-
IfcModulusOfRotationalSubgradeReactionMeasure = 612,
|
|
1495
|
-
IfcModulusOfRotationalSubgradeReactionSelect = 613,
|
|
1496
|
-
IfcModulusOfSubgradeReactionMeasure = 614,
|
|
1497
|
-
IfcModulusOfSubgradeReactionSelect = 615,
|
|
1498
|
-
IfcModulusOfTranslationalSubgradeReactionSelect = 616,
|
|
1499
|
-
IfcMoistureDiffusivityMeasure = 617,
|
|
1500
|
-
IfcMolecularWeightMeasure = 618,
|
|
1501
|
-
IfcMomentOfInertiaMeasure = 619,
|
|
1502
|
-
IfcMonetaryMeasure = 620,
|
|
1503
|
-
IfcMonetaryUnit = 621,
|
|
1504
|
-
IfcMonthInYearNumber = 622,
|
|
1505
|
-
IfcMotorConnection = 623,
|
|
1506
|
-
IfcMotorConnectionType = 624,
|
|
1507
|
-
IfcMotorConnectionTypeEnum = 625,
|
|
1508
|
-
IfcNamedUnit = 626,
|
|
1509
|
-
IfcNonNegativeLengthMeasure = 627,
|
|
1510
|
-
IfcNormalisedRatioMeasure = 628,
|
|
1511
|
-
IfcNullStyle = 629,
|
|
1512
|
-
IfcNumericMeasure = 630,
|
|
1513
|
-
IfcObject = 631,
|
|
1514
|
-
IfcObjectDefinition = 632,
|
|
1515
|
-
IfcObjective = 633,
|
|
1516
|
-
IfcObjectiveEnum = 634,
|
|
1517
|
-
IfcObjectPlacement = 635,
|
|
1518
|
-
IfcObjectReferenceSelect = 636,
|
|
1519
|
-
IfcObjectTypeEnum = 637,
|
|
1520
|
-
IfcOccupant = 638,
|
|
1521
|
-
IfcOccupantTypeEnum = 639,
|
|
1522
|
-
IfcOffsetCurve = 640,
|
|
1523
|
-
IfcOffsetCurve2D = 641,
|
|
1524
|
-
IfcOffsetCurve3D = 642,
|
|
1525
|
-
IfcOffsetCurveByDistances = 643,
|
|
1526
|
-
IfcOpeningElement = 644,
|
|
1527
|
-
IfcOpeningElementTypeEnum = 645,
|
|
1528
|
-
IfcOpeningStandardCase = 646,
|
|
1529
|
-
IfcOpenShell = 647,
|
|
1530
|
-
IfcOrganization = 648,
|
|
1531
|
-
IfcOrganizationRelationship = 649,
|
|
1532
|
-
IfcOrientationExpression = 650,
|
|
1533
|
-
IfcOrientedEdge = 651,
|
|
1534
|
-
IfcOuterBoundaryCurve = 652,
|
|
1535
|
-
IfcOutlet = 653,
|
|
1536
|
-
IfcOutletType = 654,
|
|
1537
|
-
IfcOutletTypeEnum = 655,
|
|
1538
|
-
IfcOwnerHistory = 656,
|
|
1539
|
-
IfcParameterizedProfileDef = 657,
|
|
1540
|
-
IfcParameterValue = 658,
|
|
1541
|
-
IfcPath = 659,
|
|
1542
|
-
IfcPcurve = 660,
|
|
1543
|
-
IfcPerformanceHistory = 661,
|
|
1544
|
-
IfcPerformanceHistoryTypeEnum = 662,
|
|
1545
|
-
IfcPermeableCoveringOperationEnum = 663,
|
|
1546
|
-
IfcPermeableCoveringProperties = 664,
|
|
1547
|
-
IfcPermit = 665,
|
|
1548
|
-
IfcPermitTypeEnum = 666,
|
|
1549
|
-
IfcPerson = 667,
|
|
1550
|
-
IfcPersonAndOrganization = 668,
|
|
1551
|
-
IfcPHMeasure = 669,
|
|
1552
|
-
IfcPhysicalComplexQuantity = 670,
|
|
1553
|
-
IfcPhysicalOrVirtualEnum = 671,
|
|
1554
|
-
IfcPhysicalQuantity = 672,
|
|
1555
|
-
IfcPhysicalSimpleQuantity = 673,
|
|
1556
|
-
IfcPile = 674,
|
|
1557
|
-
IfcPileConstructionEnum = 675,
|
|
1558
|
-
IfcPileType = 676,
|
|
1559
|
-
IfcPileTypeEnum = 677,
|
|
1560
|
-
IfcPipeFitting = 678,
|
|
1561
|
-
IfcPipeFittingType = 679,
|
|
1562
|
-
IfcPipeFittingTypeEnum = 680,
|
|
1563
|
-
IfcPipeSegment = 681,
|
|
1564
|
-
IfcPipeSegmentType = 682,
|
|
1565
|
-
IfcPipeSegmentTypeEnum = 683,
|
|
1566
|
-
IfcPixelTexture = 684,
|
|
1567
|
-
IfcPlacement = 685,
|
|
1568
|
-
IfcPlanarBox = 686,
|
|
1569
|
-
IfcPlanarExtent = 687,
|
|
1570
|
-
IfcPlanarForceMeasure = 688,
|
|
1571
|
-
IfcPlane = 689,
|
|
1572
|
-
IfcPlaneAngleMeasure = 690,
|
|
1573
|
-
IfcPlate = 691,
|
|
1574
|
-
IfcPlateStandardCase = 692,
|
|
1575
|
-
IfcPlateType = 693,
|
|
1576
|
-
IfcPlateTypeEnum = 694,
|
|
1577
|
-
IfcPoint = 695,
|
|
1578
|
-
IfcPointOnCurve = 696,
|
|
1579
|
-
IfcPointOnSurface = 697,
|
|
1580
|
-
IfcPointOrVertexPoint = 698,
|
|
1581
|
-
IfcPolygonalBoundedHalfSpace = 699,
|
|
1582
|
-
IfcPolygonalFaceSet = 700,
|
|
1583
|
-
IfcPolyline = 701,
|
|
1584
|
-
IfcPolyLoop = 702,
|
|
1585
|
-
IfcPort = 703,
|
|
1586
|
-
IfcPositioningElement = 704,
|
|
1587
|
-
IfcPositiveInteger = 705,
|
|
1588
|
-
IfcPositiveLengthMeasure = 706,
|
|
1589
|
-
IfcPositivePlaneAngleMeasure = 707,
|
|
1590
|
-
IfcPositiveRatioMeasure = 708,
|
|
1591
|
-
IfcPostalAddress = 709,
|
|
1592
|
-
IfcPowerMeasure = 710,
|
|
1593
|
-
IfcPreDefinedColour = 711,
|
|
1594
|
-
IfcPreDefinedCurveFont = 712,
|
|
1595
|
-
IfcPreDefinedItem = 713,
|
|
1596
|
-
IfcPreDefinedProperties = 714,
|
|
1597
|
-
IfcPreDefinedPropertySet = 715,
|
|
1598
|
-
IfcPreDefinedTextFont = 716,
|
|
1599
|
-
IfcPreferredSurfaceCurveRepresentation = 717,
|
|
1600
|
-
IfcPresentableText = 718,
|
|
1601
|
-
IfcPresentationItem = 719,
|
|
1602
|
-
IfcPresentationLayerAssignment = 720,
|
|
1603
|
-
IfcPresentationLayerWithStyle = 721,
|
|
1604
|
-
IfcPresentationStyle = 722,
|
|
1605
|
-
IfcPresentationStyleAssignment = 723,
|
|
1606
|
-
IfcPresentationStyleSelect = 724,
|
|
1607
|
-
IfcPressureMeasure = 725,
|
|
1608
|
-
IfcProcedure = 726,
|
|
1609
|
-
IfcProcedureType = 727,
|
|
1610
|
-
IfcProcedureTypeEnum = 728,
|
|
1611
|
-
IfcProcess = 729,
|
|
1612
|
-
IfcProcessSelect = 730,
|
|
1613
|
-
IfcProduct = 731,
|
|
1614
|
-
IfcProductDefinitionShape = 732,
|
|
1615
|
-
IfcProductRepresentation = 733,
|
|
1616
|
-
IfcProductRepresentationSelect = 734,
|
|
1617
|
-
IfcProductSelect = 735,
|
|
1618
|
-
IfcProfileDef = 736,
|
|
1619
|
-
IfcProfileProperties = 737,
|
|
1620
|
-
IfcProfileTypeEnum = 738,
|
|
1621
|
-
IfcProject = 739,
|
|
1622
|
-
IfcProjectedCRS = 740,
|
|
1623
|
-
IfcProjectedOrTrueLengthEnum = 741,
|
|
1624
|
-
IfcProjectionElement = 742,
|
|
1625
|
-
IfcProjectionElementTypeEnum = 743,
|
|
1626
|
-
IfcProjectLibrary = 744,
|
|
1627
|
-
IfcProjectOrder = 745,
|
|
1628
|
-
IfcProjectOrderTypeEnum = 746,
|
|
1629
|
-
IfcProperty = 747,
|
|
1630
|
-
IfcPropertyAbstraction = 748,
|
|
1631
|
-
IfcPropertyBoundedValue = 749,
|
|
1632
|
-
IfcPropertyDefinition = 750,
|
|
1633
|
-
IfcPropertyDependencyRelationship = 751,
|
|
1634
|
-
IfcPropertyEnumeratedValue = 752,
|
|
1635
|
-
IfcPropertyEnumeration = 753,
|
|
1636
|
-
IfcPropertyListValue = 754,
|
|
1637
|
-
IfcPropertyReferenceValue = 755,
|
|
1638
|
-
IfcPropertySet = 756,
|
|
1639
|
-
IfcPropertySetDefinition = 757,
|
|
1640
|
-
IfcPropertySetDefinitionSelect = 758,
|
|
1641
|
-
IfcPropertySetDefinitionSet = 759,
|
|
1642
|
-
IfcPropertySetTemplate = 760,
|
|
1643
|
-
IfcPropertySetTemplateTypeEnum = 761,
|
|
1644
|
-
IfcPropertySingleValue = 762,
|
|
1645
|
-
IfcPropertyTableValue = 763,
|
|
1646
|
-
IfcPropertyTemplate = 764,
|
|
1647
|
-
IfcPropertyTemplateDefinition = 765,
|
|
1648
|
-
IfcProtectiveDevice = 766,
|
|
1649
|
-
IfcProtectiveDeviceTrippingUnit = 767,
|
|
1650
|
-
IfcProtectiveDeviceTrippingUnitType = 768,
|
|
1651
|
-
IfcProtectiveDeviceTrippingUnitTypeEnum = 769,
|
|
1652
|
-
IfcProtectiveDeviceType = 770,
|
|
1653
|
-
IfcProtectiveDeviceTypeEnum = 771,
|
|
1654
|
-
IfcProxy = 772,
|
|
1655
|
-
IfcPump = 773,
|
|
1656
|
-
IfcPumpType = 774,
|
|
1657
|
-
IfcPumpTypeEnum = 775,
|
|
1658
|
-
IfcQuantityArea = 776,
|
|
1659
|
-
IfcQuantityCount = 777,
|
|
1660
|
-
IfcQuantityLength = 778,
|
|
1661
|
-
IfcQuantitySet = 779,
|
|
1662
|
-
IfcQuantityTime = 780,
|
|
1663
|
-
IfcQuantityVolume = 781,
|
|
1664
|
-
IfcQuantityWeight = 782,
|
|
1665
|
-
IfcRadioActivityMeasure = 783,
|
|
1666
|
-
IfcRailing = 784,
|
|
1667
|
-
IfcRailingType = 785,
|
|
1668
|
-
IfcRailingTypeEnum = 786,
|
|
1669
|
-
IfcRamp = 787,
|
|
1670
|
-
IfcRampFlight = 788,
|
|
1671
|
-
IfcRampFlightType = 789,
|
|
1672
|
-
IfcRampFlightTypeEnum = 790,
|
|
1673
|
-
IfcRampType = 791,
|
|
1674
|
-
IfcRampTypeEnum = 792,
|
|
1675
|
-
IfcRatioMeasure = 793,
|
|
1676
|
-
IfcRationalBSplineCurveWithKnots = 794,
|
|
1677
|
-
IfcRationalBSplineSurfaceWithKnots = 795,
|
|
1678
|
-
IfcReal = 796,
|
|
1679
|
-
IfcRectangleHollowProfileDef = 797,
|
|
1680
|
-
IfcRectangleProfileDef = 798,
|
|
1681
|
-
IfcRectangularPyramid = 799,
|
|
1682
|
-
IfcRectangularTrimmedSurface = 800,
|
|
1683
|
-
IfcRecurrencePattern = 801,
|
|
1684
|
-
IfcRecurrenceTypeEnum = 802,
|
|
1685
|
-
IfcReference = 803,
|
|
1686
|
-
IfcReferent = 804,
|
|
1687
|
-
IfcReferentTypeEnum = 805,
|
|
1688
|
-
IfcReflectanceMethodEnum = 806,
|
|
1689
|
-
IfcRegularTimeSeries = 807,
|
|
1690
|
-
IfcReinforcementBarProperties = 808,
|
|
1691
|
-
IfcReinforcementDefinitionProperties = 809,
|
|
1692
|
-
IfcReinforcingBar = 810,
|
|
1693
|
-
IfcReinforcingBarRoleEnum = 811,
|
|
1694
|
-
IfcReinforcingBarSurfaceEnum = 812,
|
|
1695
|
-
IfcReinforcingBarType = 813,
|
|
1696
|
-
IfcReinforcingBarTypeEnum = 814,
|
|
1697
|
-
IfcReinforcingElement = 815,
|
|
1698
|
-
IfcReinforcingElementType = 816,
|
|
1699
|
-
IfcReinforcingMesh = 817,
|
|
1700
|
-
IfcReinforcingMeshType = 818,
|
|
1701
|
-
IfcReinforcingMeshTypeEnum = 819,
|
|
1702
|
-
IfcRelAggregates = 820,
|
|
1703
|
-
IfcRelAssigns = 821,
|
|
1704
|
-
IfcRelAssignsToActor = 822,
|
|
1705
|
-
IfcRelAssignsToControl = 823,
|
|
1706
|
-
IfcRelAssignsToGroup = 824,
|
|
1707
|
-
IfcRelAssignsToGroupByFactor = 825,
|
|
1708
|
-
IfcRelAssignsToProcess = 826,
|
|
1709
|
-
IfcRelAssignsToProduct = 827,
|
|
1710
|
-
IfcRelAssignsToResource = 828,
|
|
1711
|
-
IfcRelAssociates = 829,
|
|
1712
|
-
IfcRelAssociatesApproval = 830,
|
|
1713
|
-
IfcRelAssociatesClassification = 831,
|
|
1714
|
-
IfcRelAssociatesConstraint = 832,
|
|
1715
|
-
IfcRelAssociatesDocument = 833,
|
|
1716
|
-
IfcRelAssociatesLibrary = 834,
|
|
1717
|
-
IfcRelAssociatesMaterial = 835,
|
|
1718
|
-
IfcRelationship = 836,
|
|
1719
|
-
IfcRelConnects = 837,
|
|
1720
|
-
IfcRelConnectsElements = 838,
|
|
1721
|
-
IfcRelConnectsPathElements = 839,
|
|
1722
|
-
IfcRelConnectsPorts = 840,
|
|
1723
|
-
IfcRelConnectsPortToElement = 841,
|
|
1724
|
-
IfcRelConnectsStructuralActivity = 842,
|
|
1725
|
-
IfcRelConnectsStructuralMember = 843,
|
|
1726
|
-
IfcRelConnectsWithEccentricity = 844,
|
|
1727
|
-
IfcRelConnectsWithRealizingElements = 845,
|
|
1728
|
-
IfcRelContainedInSpatialStructure = 846,
|
|
1729
|
-
IfcRelCoversBldgElements = 847,
|
|
1730
|
-
IfcRelCoversSpaces = 848,
|
|
1731
|
-
IfcRelDeclares = 849,
|
|
1732
|
-
IfcRelDecomposes = 850,
|
|
1733
|
-
IfcRelDefines = 851,
|
|
1734
|
-
IfcRelDefinesByObject = 852,
|
|
1735
|
-
IfcRelDefinesByProperties = 853,
|
|
1736
|
-
IfcRelDefinesByTemplate = 854,
|
|
1737
|
-
IfcRelDefinesByType = 855,
|
|
1738
|
-
IfcRelFillsElement = 856,
|
|
1739
|
-
IfcRelFlowControlElements = 857,
|
|
1740
|
-
IfcRelInterferesElements = 858,
|
|
1741
|
-
IfcRelNests = 859,
|
|
1742
|
-
IfcRelProjectsElement = 860,
|
|
1743
|
-
IfcRelReferencedInSpatialStructure = 861,
|
|
1744
|
-
IfcRelSequence = 862,
|
|
1745
|
-
IfcRelServicesBuildings = 863,
|
|
1746
|
-
IfcRelSpaceBoundary = 864,
|
|
1747
|
-
IfcRelSpaceBoundary1stLevel = 865,
|
|
1748
|
-
IfcRelSpaceBoundary2ndLevel = 866,
|
|
1749
|
-
IfcRelVoidsElement = 867,
|
|
1750
|
-
IfcReparametrisedCompositeCurveSegment = 868,
|
|
1751
|
-
IfcRepresentation = 869,
|
|
1752
|
-
IfcRepresentationContext = 870,
|
|
1753
|
-
IfcRepresentationItem = 871,
|
|
1754
|
-
IfcRepresentationMap = 872,
|
|
1755
|
-
IfcResource = 873,
|
|
1756
|
-
IfcResourceApprovalRelationship = 874,
|
|
1757
|
-
IfcResourceConstraintRelationship = 875,
|
|
1758
|
-
IfcResourceLevelRelationship = 876,
|
|
1759
|
-
IfcResourceObjectSelect = 877,
|
|
1760
|
-
IfcResourceSelect = 878,
|
|
1761
|
-
IfcResourceTime = 879,
|
|
1762
|
-
IfcRevolvedAreaSolid = 880,
|
|
1763
|
-
IfcRevolvedAreaSolidTapered = 881,
|
|
1764
|
-
IfcRightCircularCone = 882,
|
|
1765
|
-
IfcRightCircularCylinder = 883,
|
|
1766
|
-
IfcRoleEnum = 884,
|
|
1767
|
-
IfcRoof = 885,
|
|
1768
|
-
IfcRoofType = 886,
|
|
1769
|
-
IfcRoofTypeEnum = 887,
|
|
1770
|
-
IfcRoot = 888,
|
|
1771
|
-
IfcRotationalFrequencyMeasure = 889,
|
|
1772
|
-
IfcRotationalMassMeasure = 890,
|
|
1773
|
-
IfcRotationalStiffnessMeasure = 891,
|
|
1774
|
-
IfcRotationalStiffnessSelect = 892,
|
|
1775
|
-
IfcRoundedRectangleProfileDef = 893,
|
|
1776
|
-
IfcSanitaryTerminal = 894,
|
|
1777
|
-
IfcSanitaryTerminalType = 895,
|
|
1778
|
-
IfcSanitaryTerminalTypeEnum = 896,
|
|
1779
|
-
IfcSchedulingTime = 897,
|
|
1780
|
-
IfcSeamCurve = 898,
|
|
1781
|
-
IfcSectionalAreaIntegralMeasure = 899,
|
|
1782
|
-
IfcSectionedSolid = 900,
|
|
1783
|
-
IfcSectionedSolidHorizontal = 901,
|
|
1784
|
-
IfcSectionedSpine = 902,
|
|
1785
|
-
IfcSectionModulusMeasure = 903,
|
|
1786
|
-
IfcSectionProperties = 904,
|
|
1787
|
-
IfcSectionReinforcementProperties = 905,
|
|
1788
|
-
IfcSectionTypeEnum = 906,
|
|
1789
|
-
IfcSegmentIndexSelect = 907,
|
|
1790
|
-
IfcSensor = 908,
|
|
1791
|
-
IfcSensorType = 909,
|
|
1792
|
-
IfcSensorTypeEnum = 910,
|
|
1793
|
-
IfcSequenceEnum = 911,
|
|
1794
|
-
IfcShadingDevice = 912,
|
|
1795
|
-
IfcShadingDeviceType = 913,
|
|
1796
|
-
IfcShadingDeviceTypeEnum = 914,
|
|
1797
|
-
IfcShapeAspect = 915,
|
|
1798
|
-
IfcShapeModel = 916,
|
|
1799
|
-
IfcShapeRepresentation = 917,
|
|
1800
|
-
IfcShearModulusMeasure = 918,
|
|
1801
|
-
IfcShell = 919,
|
|
1802
|
-
IfcShellBasedSurfaceModel = 920,
|
|
1803
|
-
IfcSimpleProperty = 921,
|
|
1804
|
-
IfcSimplePropertyTemplate = 922,
|
|
1805
|
-
IfcSimplePropertyTemplateTypeEnum = 923,
|
|
1806
|
-
IfcSimpleValue = 924,
|
|
1807
|
-
IfcSIPrefix = 925,
|
|
1808
|
-
IfcSite = 926,
|
|
1809
|
-
IfcSIUnit = 927,
|
|
1810
|
-
IfcSIUnitName = 928,
|
|
1811
|
-
IfcSizeSelect = 929,
|
|
1812
|
-
IfcSlab = 930,
|
|
1813
|
-
IfcSlabElementedCase = 931,
|
|
1814
|
-
IfcSlabStandardCase = 932,
|
|
1815
|
-
IfcSlabType = 933,
|
|
1816
|
-
IfcSlabTypeEnum = 934,
|
|
1817
|
-
IfcSlippageConnectionCondition = 935,
|
|
1818
|
-
IfcSolarDevice = 936,
|
|
1819
|
-
IfcSolarDeviceType = 937,
|
|
1820
|
-
IfcSolarDeviceTypeEnum = 938,
|
|
1821
|
-
IfcSolidAngleMeasure = 939,
|
|
1822
|
-
IfcSolidModel = 940,
|
|
1823
|
-
IfcSolidOrShell = 941,
|
|
1824
|
-
IfcSoundPowerLevelMeasure = 942,
|
|
1825
|
-
IfcSoundPowerMeasure = 943,
|
|
1826
|
-
IfcSoundPressureLevelMeasure = 944,
|
|
1827
|
-
IfcSoundPressureMeasure = 945,
|
|
1828
|
-
IfcSpace = 946,
|
|
1829
|
-
IfcSpaceBoundarySelect = 947,
|
|
1830
|
-
IfcSpaceHeater = 948,
|
|
1831
|
-
IfcSpaceHeaterType = 949,
|
|
1832
|
-
IfcSpaceHeaterTypeEnum = 950,
|
|
1833
|
-
IfcSpaceType = 951,
|
|
1834
|
-
IfcSpaceTypeEnum = 952,
|
|
1835
|
-
IfcSpatialElement = 953,
|
|
1836
|
-
IfcSpatialElementType = 954,
|
|
1837
|
-
IfcSpatialStructureElement = 955,
|
|
1838
|
-
IfcSpatialStructureElementType = 956,
|
|
1839
|
-
IfcSpatialZone = 957,
|
|
1840
|
-
IfcSpatialZoneType = 958,
|
|
1841
|
-
IfcSpatialZoneTypeEnum = 959,
|
|
1842
|
-
IfcSpecificHeatCapacityMeasure = 960,
|
|
1843
|
-
IfcSpecularExponent = 961,
|
|
1844
|
-
IfcSpecularHighlightSelect = 962,
|
|
1845
|
-
IfcSpecularRoughness = 963,
|
|
1846
|
-
IfcSphere = 964,
|
|
1847
|
-
IfcSphericalSurface = 965,
|
|
1848
|
-
IfcStackTerminal = 966,
|
|
1849
|
-
IfcStackTerminalType = 967,
|
|
1850
|
-
IfcStackTerminalTypeEnum = 968,
|
|
1851
|
-
IfcStair = 969,
|
|
1852
|
-
IfcStairFlight = 970,
|
|
1853
|
-
IfcStairFlightType = 971,
|
|
1854
|
-
IfcStairFlightTypeEnum = 972,
|
|
1855
|
-
IfcStairType = 973,
|
|
1856
|
-
IfcStairTypeEnum = 974,
|
|
1857
|
-
IfcStateEnum = 975,
|
|
1858
|
-
IfcStrippedOptional = 976,
|
|
1859
|
-
IfcStructuralAction = 977,
|
|
1860
|
-
IfcStructuralActivity = 978,
|
|
1861
|
-
IfcStructuralActivityAssignmentSelect = 979,
|
|
1862
|
-
IfcStructuralAnalysisModel = 980,
|
|
1863
|
-
IfcStructuralConnection = 981,
|
|
1864
|
-
IfcStructuralConnectionCondition = 982,
|
|
1865
|
-
IfcStructuralCurveAction = 983,
|
|
1866
|
-
IfcStructuralCurveActivityTypeEnum = 984,
|
|
1867
|
-
IfcStructuralCurveConnection = 985,
|
|
1868
|
-
IfcStructuralCurveMember = 986,
|
|
1869
|
-
IfcStructuralCurveMemberTypeEnum = 987,
|
|
1870
|
-
IfcStructuralCurveMemberVarying = 988,
|
|
1871
|
-
IfcStructuralCurveReaction = 989,
|
|
1872
|
-
IfcStructuralItem = 990,
|
|
1873
|
-
IfcStructuralLinearAction = 991,
|
|
1874
|
-
IfcStructuralLoad = 992,
|
|
1875
|
-
IfcStructuralLoadCase = 993,
|
|
1876
|
-
IfcStructuralLoadConfiguration = 994,
|
|
1877
|
-
IfcStructuralLoadGroup = 995,
|
|
1878
|
-
IfcStructuralLoadLinearForce = 996,
|
|
1879
|
-
IfcStructuralLoadOrResult = 997,
|
|
1880
|
-
IfcStructuralLoadPlanarForce = 998,
|
|
1881
|
-
IfcStructuralLoadSingleDisplacement = 999,
|
|
1882
|
-
IfcStructuralLoadSingleDisplacementDistortion = 1000,
|
|
1883
|
-
IfcStructuralLoadSingleForce = 1001,
|
|
1884
|
-
IfcStructuralLoadSingleForceWarping = 1002,
|
|
1885
|
-
IfcStructuralLoadStatic = 1003,
|
|
1886
|
-
IfcStructuralLoadTemperature = 1004,
|
|
1887
|
-
IfcStructuralMember = 1005,
|
|
1888
|
-
IfcStructuralPlanarAction = 1006,
|
|
1889
|
-
IfcStructuralPointAction = 1007,
|
|
1890
|
-
IfcStructuralPointConnection = 1008,
|
|
1891
|
-
IfcStructuralPointReaction = 1009,
|
|
1892
|
-
IfcStructuralReaction = 1010,
|
|
1893
|
-
IfcStructuralResultGroup = 1011,
|
|
1894
|
-
IfcStructuralSurfaceAction = 1012,
|
|
1895
|
-
IfcStructuralSurfaceActivityTypeEnum = 1013,
|
|
1896
|
-
IfcStructuralSurfaceConnection = 1014,
|
|
1897
|
-
IfcStructuralSurfaceMember = 1015,
|
|
1898
|
-
IfcStructuralSurfaceMemberTypeEnum = 1016,
|
|
1899
|
-
IfcStructuralSurfaceMemberVarying = 1017,
|
|
1900
|
-
IfcStructuralSurfaceReaction = 1018,
|
|
1901
|
-
IfcStyleAssignmentSelect = 1019,
|
|
1902
|
-
IfcStyledItem = 1020,
|
|
1903
|
-
IfcStyledRepresentation = 1021,
|
|
1904
|
-
IfcStyleModel = 1022,
|
|
1905
|
-
IfcSubContractResource = 1023,
|
|
1906
|
-
IfcSubContractResourceType = 1024,
|
|
1907
|
-
IfcSubContractResourceTypeEnum = 1025,
|
|
1908
|
-
IfcSubedge = 1026,
|
|
1909
|
-
IfcSurface = 1027,
|
|
1910
|
-
IfcSurfaceCurve = 1028,
|
|
1911
|
-
IfcSurfaceCurveSweptAreaSolid = 1029,
|
|
1912
|
-
IfcSurfaceFeature = 1030,
|
|
1913
|
-
IfcSurfaceFeatureTypeEnum = 1031,
|
|
1914
|
-
IfcSurfaceOfLinearExtrusion = 1032,
|
|
1915
|
-
IfcSurfaceOfRevolution = 1033,
|
|
1916
|
-
IfcSurfaceOrFaceSurface = 1034,
|
|
1917
|
-
IfcSurfaceReinforcementArea = 1035,
|
|
1918
|
-
IfcSurfaceSide = 1036,
|
|
1919
|
-
IfcSurfaceStyle = 1037,
|
|
1920
|
-
IfcSurfaceStyleElementSelect = 1038,
|
|
1921
|
-
IfcSurfaceStyleLighting = 1039,
|
|
1922
|
-
IfcSurfaceStyleRefraction = 1040,
|
|
1923
|
-
IfcSurfaceStyleRendering = 1041,
|
|
1924
|
-
IfcSurfaceStyleShading = 1042,
|
|
1925
|
-
IfcSurfaceStyleWithTextures = 1043,
|
|
1926
|
-
IfcSurfaceTexture = 1044,
|
|
1927
|
-
IfcSweptAreaSolid = 1045,
|
|
1928
|
-
IfcSweptDiskSolid = 1046,
|
|
1929
|
-
IfcSweptDiskSolidPolygonal = 1047,
|
|
1930
|
-
IfcSweptSurface = 1048,
|
|
1931
|
-
IfcSwitchingDevice = 1049,
|
|
1932
|
-
IfcSwitchingDeviceType = 1050,
|
|
1933
|
-
IfcSwitchingDeviceTypeEnum = 1051,
|
|
1934
|
-
IfcSystem = 1052,
|
|
1935
|
-
IfcSystemFurnitureElement = 1053,
|
|
1936
|
-
IfcSystemFurnitureElementType = 1054,
|
|
1937
|
-
IfcSystemFurnitureElementTypeEnum = 1055,
|
|
1938
|
-
IfcTable = 1056,
|
|
1939
|
-
IfcTableColumn = 1057,
|
|
1940
|
-
IfcTableRow = 1058,
|
|
1941
|
-
IfcTank = 1059,
|
|
1942
|
-
IfcTankType = 1060,
|
|
1943
|
-
IfcTankTypeEnum = 1061,
|
|
1944
|
-
IfcTask = 1062,
|
|
1945
|
-
IfcTaskDurationEnum = 1063,
|
|
1946
|
-
IfcTaskTime = 1064,
|
|
1947
|
-
IfcTaskTimeRecurring = 1065,
|
|
1948
|
-
IfcTaskType = 1066,
|
|
1949
|
-
IfcTaskTypeEnum = 1067,
|
|
1950
|
-
IfcTelecomAddress = 1068,
|
|
1951
|
-
IfcTemperatureGradientMeasure = 1069,
|
|
1952
|
-
IfcTemperatureRateOfChangeMeasure = 1070,
|
|
1953
|
-
IfcTendon = 1071,
|
|
1954
|
-
IfcTendonAnchor = 1072,
|
|
1955
|
-
IfcTendonAnchorType = 1073,
|
|
1956
|
-
IfcTendonAnchorTypeEnum = 1074,
|
|
1957
|
-
IfcTendonType = 1075,
|
|
1958
|
-
IfcTendonTypeEnum = 1076,
|
|
1959
|
-
IfcTessellatedFaceSet = 1077,
|
|
1960
|
-
IfcTessellatedItem = 1078,
|
|
1961
|
-
IfcText = 1079,
|
|
1962
|
-
IfcTextAlignment = 1080,
|
|
1963
|
-
IfcTextDecoration = 1081,
|
|
1964
|
-
IfcTextFontName = 1082,
|
|
1965
|
-
IfcTextFontSelect = 1083,
|
|
1966
|
-
IfcTextLiteral = 1084,
|
|
1967
|
-
IfcTextLiteralWithExtent = 1085,
|
|
1968
|
-
IfcTextPath = 1086,
|
|
1969
|
-
IfcTextStyle = 1087,
|
|
1970
|
-
IfcTextStyleFontModel = 1088,
|
|
1971
|
-
IfcTextStyleForDefinedFont = 1089,
|
|
1972
|
-
IfcTextStyleTextModel = 1090,
|
|
1973
|
-
IfcTextTransformation = 1091,
|
|
1974
|
-
IfcTextureCoordinate = 1092,
|
|
1975
|
-
IfcTextureCoordinateGenerator = 1093,
|
|
1976
|
-
IfcTextureMap = 1094,
|
|
1977
|
-
IfcTextureVertex = 1095,
|
|
1978
|
-
IfcTextureVertexList = 1096,
|
|
1979
|
-
IfcThermalAdmittanceMeasure = 1097,
|
|
1980
|
-
IfcThermalConductivityMeasure = 1098,
|
|
1981
|
-
IfcThermalExpansionCoefficientMeasure = 1099,
|
|
1982
|
-
IfcThermalResistanceMeasure = 1100,
|
|
1983
|
-
IfcThermalTransmittanceMeasure = 1101,
|
|
1984
|
-
IfcThermodynamicTemperatureMeasure = 1102,
|
|
1985
|
-
IfcTime = 1103,
|
|
1986
|
-
IfcTimeMeasure = 1104,
|
|
1987
|
-
IfcTimeOrRatioSelect = 1105,
|
|
1988
|
-
IfcTimePeriod = 1106,
|
|
1989
|
-
IfcTimeSeries = 1107,
|
|
1990
|
-
IfcTimeSeriesDataTypeEnum = 1108,
|
|
1991
|
-
IfcTimeSeriesValue = 1109,
|
|
1992
|
-
IfcTimeStamp = 1110,
|
|
1993
|
-
IfcTopologicalRepresentationItem = 1111,
|
|
1994
|
-
IfcTopologyRepresentation = 1112,
|
|
1995
|
-
IfcToroidalSurface = 1113,
|
|
1996
|
-
IfcTorqueMeasure = 1114,
|
|
1997
|
-
IfcTransformer = 1115,
|
|
1998
|
-
IfcTransformerType = 1116,
|
|
1999
|
-
IfcTransformerTypeEnum = 1117,
|
|
2000
|
-
IfcTransitionCode = 1118,
|
|
2001
|
-
IfcTransitionCurveSegment2D = 1119,
|
|
2002
|
-
IfcTransitionCurveType = 1120,
|
|
2003
|
-
IfcTranslationalStiffnessSelect = 1121,
|
|
2004
|
-
IfcTransportElement = 1122,
|
|
2005
|
-
IfcTransportElementType = 1123,
|
|
2006
|
-
IfcTransportElementTypeEnum = 1124,
|
|
2007
|
-
IfcTrapeziumProfileDef = 1125,
|
|
2008
|
-
IfcTriangulatedFaceSet = 1126,
|
|
2009
|
-
IfcTriangulatedIrregularNetwork = 1127,
|
|
2010
|
-
IfcTrimmedCurve = 1128,
|
|
2011
|
-
IfcTrimmingPreference = 1129,
|
|
2012
|
-
IfcTrimmingSelect = 1130,
|
|
2013
|
-
IfcTShapeProfileDef = 1131,
|
|
2014
|
-
IfcTubeBundle = 1132,
|
|
2015
|
-
IfcTubeBundleType = 1133,
|
|
2016
|
-
IfcTubeBundleTypeEnum = 1134,
|
|
2017
|
-
IfcTypeObject = 1135,
|
|
2018
|
-
IfcTypeProcess = 1136,
|
|
2019
|
-
IfcTypeProduct = 1137,
|
|
2020
|
-
IfcTypeResource = 1138,
|
|
2021
|
-
IfcUnit = 1139,
|
|
2022
|
-
IfcUnitaryControlElement = 1140,
|
|
2023
|
-
IfcUnitaryControlElementType = 1141,
|
|
2024
|
-
IfcUnitaryControlElementTypeEnum = 1142,
|
|
2025
|
-
IfcUnitaryEquipment = 1143,
|
|
2026
|
-
IfcUnitaryEquipmentType = 1144,
|
|
2027
|
-
IfcUnitaryEquipmentTypeEnum = 1145,
|
|
2028
|
-
IfcUnitAssignment = 1146,
|
|
2029
|
-
IfcUnitEnum = 1147,
|
|
2030
|
-
IfcURIReference = 1148,
|
|
2031
|
-
IfcUShapeProfileDef = 1149,
|
|
2032
|
-
IfcValue = 1150,
|
|
2033
|
-
IfcValve = 1151,
|
|
2034
|
-
IfcValveType = 1152,
|
|
2035
|
-
IfcValveTypeEnum = 1153,
|
|
2036
|
-
IfcVaporPermeabilityMeasure = 1154,
|
|
2037
|
-
IfcVector = 1155,
|
|
2038
|
-
IfcVectorOrDirection = 1156,
|
|
2039
|
-
IfcVertex = 1157,
|
|
2040
|
-
IfcVertexLoop = 1158,
|
|
2041
|
-
IfcVertexPoint = 1159,
|
|
2042
|
-
IfcVibrationIsolator = 1160,
|
|
2043
|
-
IfcVibrationIsolatorType = 1161,
|
|
2044
|
-
IfcVibrationIsolatorTypeEnum = 1162,
|
|
2045
|
-
IfcVirtualElement = 1163,
|
|
2046
|
-
IfcVirtualGridIntersection = 1164,
|
|
2047
|
-
IfcVoidingFeature = 1165,
|
|
2048
|
-
IfcVoidingFeatureTypeEnum = 1166,
|
|
2049
|
-
IfcVolumeMeasure = 1167,
|
|
2050
|
-
IfcVolumetricFlowRateMeasure = 1168,
|
|
2051
|
-
IfcWall = 1169,
|
|
2052
|
-
IfcWallElementedCase = 1170,
|
|
2053
|
-
IfcWallStandardCase = 1171,
|
|
2054
|
-
IfcWallType = 1172,
|
|
2055
|
-
IfcWallTypeEnum = 1173,
|
|
2056
|
-
IfcWarpingConstantMeasure = 1174,
|
|
2057
|
-
IfcWarpingMomentMeasure = 1175,
|
|
2058
|
-
IfcWarpingStiffnessSelect = 1176,
|
|
2059
|
-
IfcWasteTerminal = 1177,
|
|
2060
|
-
IfcWasteTerminalType = 1178,
|
|
2061
|
-
IfcWasteTerminalTypeEnum = 1179,
|
|
2062
|
-
IfcWindow = 1180,
|
|
2063
|
-
IfcWindowLiningProperties = 1181,
|
|
2064
|
-
IfcWindowPanelOperationEnum = 1182,
|
|
2065
|
-
IfcWindowPanelPositionEnum = 1183,
|
|
2066
|
-
IfcWindowPanelProperties = 1184,
|
|
2067
|
-
IfcWindowStandardCase = 1185,
|
|
2068
|
-
IfcWindowStyle = 1186,
|
|
2069
|
-
IfcWindowStyleConstructionEnum = 1187,
|
|
2070
|
-
IfcWindowStyleOperationEnum = 1188,
|
|
2071
|
-
IfcWindowType = 1189,
|
|
2072
|
-
IfcWindowTypeEnum = 1190,
|
|
2073
|
-
IfcWindowTypePartitioningEnum = 1191,
|
|
2074
|
-
IfcWorkCalendar = 1192,
|
|
2075
|
-
IfcWorkCalendarTypeEnum = 1193,
|
|
2076
|
-
IfcWorkControl = 1194,
|
|
2077
|
-
IfcWorkPlan = 1195,
|
|
2078
|
-
IfcWorkPlanTypeEnum = 1196,
|
|
2079
|
-
IfcWorkSchedule = 1197,
|
|
2080
|
-
IfcWorkScheduleTypeEnum = 1198,
|
|
2081
|
-
IfcWorkTime = 1199,
|
|
2082
|
-
IfcZone = 1200,
|
|
2083
|
-
IfcZShapeProfileDef = 1201,
|
|
2084
|
-
UNDEFINED = 1202,
|
|
2085
|
-
Other3DModel = 1203
|
|
2086
|
-
}
|
|
2087
|
-
export class ModelElementPropertySet {
|
|
2088
|
-
name: string;
|
|
2089
|
-
properties: ModelElementProperty[];
|
|
2090
|
-
type: IfcType;
|
|
2091
|
-
}
|
|
2092
|
-
export class ModelElementProperty {
|
|
2093
|
-
name: string;
|
|
2094
|
-
unit: number;
|
|
2095
|
-
value: ModelElementPropertyValue;
|
|
2096
|
-
}
|
|
2097
|
-
export class ModelElementPropertyValue {
|
|
2098
|
-
str_value?: string;
|
|
2099
|
-
int_value?: number;
|
|
2100
|
-
double_value?: number;
|
|
2101
|
-
date_value?: bigint;
|
|
2102
|
-
array_value: Array<string>;
|
|
2103
|
-
decimal_value?: number;
|
|
2104
|
-
guid_value?: string;
|
|
2105
|
-
array_int_value: Array<number>;
|
|
2106
|
-
bool_value?: boolean;
|
|
2107
|
-
get value(): unknown;
|
|
2108
|
-
}
|
|
2109
|
-
|
|
2110
|
-
export class SettingsNames {
|
|
2111
|
-
static TELEMETRY: string;
|
|
2112
|
-
static AXES: string;
|
|
2113
|
-
static CAMERA_ANIMATION: string;
|
|
2114
|
-
static HIDE_SMALL_ELEMENTS_WHEN_NAVIGATING: string;
|
|
2115
|
-
static GLOBAL_LIGHT: string;
|
|
2116
|
-
static LIGHT_SOURCE: string;
|
|
2117
|
-
static ANTI_ALIASING: string;
|
|
2118
|
-
static HIDE_SMALL_ELEMENTS_MOVING: string;
|
|
2119
|
-
static SMALL_ELEMENT_SIZE: string;
|
|
2120
|
-
static LABEL_LINE_LENGTH: string;
|
|
2121
|
-
static HIDE_EDGES_WHEN_NAVIGATING: string;
|
|
2122
|
-
static DISPLAY_MODE: string;
|
|
2123
|
-
static NAVIGATION_CUBE: string;
|
|
2124
|
-
static DESIRED_FRAMERATE: string;
|
|
2125
|
-
static MANAGE_TIME: string;
|
|
2126
|
-
static HOVER_MESHES: string;
|
|
2127
|
-
static HOVER_EDGES: string;
|
|
2128
|
-
static SELECT_MESHES: string;
|
|
2129
|
-
static SELECT_EDGES: string;
|
|
2130
|
-
}
|
|
2131
|
-
export enum ValueType {
|
|
2132
|
-
STRING = 0,
|
|
2133
|
-
NUMBER = 1,
|
|
2134
|
-
ENUM = 2,
|
|
2135
|
-
BOOL = 3
|
|
2136
|
-
}
|
|
2137
|
-
export class RenderViewSettings {
|
|
2138
|
-
telemetry?: boolean;
|
|
2139
|
-
hideEdgesWhenNavigation?: boolean;
|
|
2140
|
-
antiAliasing?: boolean;
|
|
2141
|
-
displayMode?: DisplayMode;
|
|
2142
|
-
/** Desired render framerate */
|
|
2143
|
-
desiredFramerate?: number;
|
|
2144
|
-
/** Allocated time for rendering operations, excluding scene rendering */
|
|
2145
|
-
manageTime?: number;
|
|
2146
|
-
/** Number of scene updates managed at once */
|
|
2147
|
-
chunkUpdateSize?: number;
|
|
2148
|
-
/** Draw hovered meshes on the `selectionScene` */
|
|
2149
|
-
hoverMeshes?: boolean;
|
|
2150
|
-
/** Draw hovered edges on the `selectionScene` */
|
|
2151
|
-
hoverEdges?: boolean;
|
|
2152
|
-
/** Draw selected meshes on the `selectionScene` */
|
|
2153
|
-
selectEdges?: boolean;
|
|
2154
|
-
/** Draw selected edges on the `selectionScene` */
|
|
2155
|
-
selectMeshes?: boolean;
|
|
2156
|
-
}
|
|
2157
|
-
export enum DisplayMode {
|
|
2158
|
-
FACES_AND_EDGES = 0,
|
|
2159
|
-
FACES = 1
|
|
2160
|
-
}
|
|
2161
|
-
export const defaultRenderViewSettings: RenderViewSettings;
|
|
2162
|
-
export class Viewer3DConfiguration extends ViewerConfiguration {
|
|
2163
|
-
render: ViewerSettings;
|
|
2164
|
-
|
|
2165
|
-
constructor(appearance?: ViewerSettings, render?: ViewerSettings);
|
|
2166
|
-
}
|
|
2167
|
-
export const defaultViewer3DSettings: ViewerSettings;
|
|
2168
|
-
export interface SceneCheckOptions {
|
|
2169
|
-
/** specify whether intersections should be filtered by clippings */
|
|
2170
|
-
filterByClipping?: boolean;
|
|
2171
|
-
}
|
|
2172
|
-
export interface ModelCheckOptions extends SceneCheckOptions {
|
|
2173
|
-
/** Scene names to check intersections. */
|
|
2174
|
-
sceneNames?: string[];
|
|
2175
|
-
}
|
|
2176
|
-
export interface IIntersectionChecker<TOptions> {
|
|
2177
|
-
/**
|
|
2178
|
-
* Gets {@link THREE.Intersection<THREE.Object3D>} between a casted {@link ray} and model object.
|
|
2179
|
-
* @param ray
|
|
2180
|
-
* @param camera
|
|
2181
|
-
* @param options - (optional) intersection check options.
|
|
2182
|
-
*/
|
|
2183
|
-
getIntersectionByRay(ray: THREE.Ray, camera: THREE.Camera, options?: TOptions): THREE.Intersection<THREE.Object3D> | undefined;
|
|
2184
|
-
/**
|
|
2185
|
-
* Gets ID of the model object intersected by {@link ray}
|
|
2186
|
-
* @param ray
|
|
2187
|
-
* @param camera
|
|
2188
|
-
* @param options - (optional) intersection check options.
|
|
2189
|
-
*/
|
|
2190
|
-
getIntersectionIDByRay(ray: THREE.Ray, camera: THREE.Camera, options?: TOptions): {
|
|
2191
|
-
modelId: string;
|
|
2192
|
-
guid: string;
|
|
2193
|
-
} | undefined;
|
|
2194
|
-
/**
|
|
2195
|
-
* Gets {@link THREE.Intersection} between a ray, casted from {@link camera} to {@link ndcPoint}, and model object.
|
|
2196
|
-
* @param ndcPoint
|
|
2197
|
-
* @param camera
|
|
2198
|
-
* @param options - (optional) intersection check options.
|
|
2199
|
-
*/
|
|
2200
|
-
getIntersectionByNdcPt(ndcPoint: THREE.Vector2, camera: THREE.Camera, options?: TOptions): THREE.Intersection<THREE.Object3D> | undefined;
|
|
2201
|
-
/**
|
|
2202
|
-
* Gets ID of the model object intersected by ray, casted from {@link camera} to {@link ndcPoint}.
|
|
2203
|
-
* @param ndcPoint
|
|
2204
|
-
* @param camera
|
|
2205
|
-
* @param options - (optional) intersection check options.
|
|
2206
|
-
*/
|
|
2207
|
-
getIntersectionIDByNdcPt(ndcPoint: THREE.Vector2, camera: THREE.Camera, options?: TOptions): {
|
|
2208
|
-
modelId: string;
|
|
2209
|
-
guid: string;
|
|
2210
|
-
} | undefined;
|
|
2211
|
-
/**
|
|
2212
|
-
* Gets IDs of the model objects intersected by frustum.
|
|
2213
|
-
* @param ndcFrustumBox - frustum in the NDC space.
|
|
2214
|
-
* @param unProjMatrix - NDC to World projection matrix.
|
|
2215
|
-
* @param isContainsOnly - if true, gets only fully contained objects in the frustum.
|
|
2216
|
-
* @param options - (optional) intersection check options.
|
|
2217
|
-
*/
|
|
2218
|
-
getIntersectionIDByFrustumNdcPt(ndcFrustumBox: THREE.Box3, unProjMatrix: THREE.Matrix4, isContainsOnly: boolean, options?: TOptions): {
|
|
2219
|
-
modelId: string;
|
|
2220
|
-
guid: string;
|
|
2221
|
-
}[];
|
|
2222
|
-
/**
|
|
2223
|
-
* Gets all intersections between a ray, casted from {@link camera} to {@link ndcPoint} and model objects.
|
|
2224
|
-
* @param ray
|
|
2225
|
-
* @param camera
|
|
2226
|
-
* @param options - (optional) intersection check options.
|
|
2227
|
-
*/
|
|
2228
|
-
getAllIntersectionsByRay(ray: THREE.Ray, camera: THREE.Camera, options?: TOptions): THREE.Intersection<THREE.Object3D>[];
|
|
2229
|
-
/**
|
|
2230
|
-
* Gets IDs of the model objects intersected by ray, casted from {@link camera} to {@link ndcPoint}.
|
|
2231
|
-
* @param ndcPos
|
|
2232
|
-
* @param camera
|
|
2233
|
-
* @param options - (optional) intersection check options.
|
|
2234
|
-
*/
|
|
2235
|
-
getAllIntersectionsByNdcPt(ndcPos: THREE.Vector2, camera: THREE.Camera, options?: TOptions): THREE.Intersection<THREE.Object3D>[];
|
|
2236
|
-
}
|
|
2237
|
-
export interface ISceneIntersectionChecker extends IIntersectionChecker<SceneCheckOptions> {
|
|
2238
|
-
/** Gets the bounding box of the scene*/
|
|
2239
|
-
get boundingBox(): THREE.Box3;
|
|
2240
|
-
}
|
|
2241
|
-
export interface IModelIntersectionChecker extends IIntersectionChecker<ModelCheckOptions> {
|
|
2242
|
-
/** Gets the bounding box of the model*/
|
|
2243
|
-
get boundingBox(): THREE.Box3;
|
|
2244
|
-
/** Gets the center of the model*/
|
|
2245
|
-
get modelCenter(): THREE.Vector3;
|
|
2246
|
-
}
|
|
2247
|
-
export class TPair<TKey, TValue> {
|
|
2248
|
-
|
|
2249
|
-
constructor(key: TKey, value: TValue);
|
|
2250
|
-
get key(): TKey;
|
|
2251
|
-
get value(): TValue;
|
|
2252
|
-
}
|
|
2253
|
-
export interface IRenderOperationContext {
|
|
2254
|
-
/** If true, renderScenes operations will be forced*/
|
|
2255
|
-
isRedrawRequested: boolean;
|
|
2256
|
-
/** If true - operations will not be suspended by the scheduler*/
|
|
2257
|
-
isForcedExecution: boolean;
|
|
2258
|
-
/** Gets renderer*/
|
|
2259
|
-
get renderer(): I3DRenderer;
|
|
2260
|
-
/** Gets camera*/
|
|
2261
|
-
get camera(): THREE.Camera;
|
|
2262
|
-
/** Gets render settings*/
|
|
2263
|
-
get settings(): RenderViewSettings;
|
|
2264
|
-
/** Indicates whether the navigation is in progress */
|
|
2265
|
-
get isNavigation(): boolean;
|
|
2266
|
-
/** Indicates whether faces and edges should be drawn */
|
|
2267
|
-
get displayMode(): DisplayMode;
|
|
2268
|
-
/** Indicates whether the operation has been requested to be suspended by the scheduler*/
|
|
2269
|
-
get isSuspensionRequested(): boolean;
|
|
2270
|
-
/** Gets the remaining time for the render operations in current iteration*/
|
|
2271
|
-
get remainedTime(): DOMHighResTimeStamp;
|
|
2272
|
-
/** Gets the time elapsed on render operations in current iteration*/
|
|
2273
|
-
get elapsedTime(): DOMHighResTimeStamp;
|
|
2274
|
-
/** Gets the timestamp of the last rendered frame*/
|
|
2275
|
-
get lastFrameTimestamp(): DOMHighResTimeStamp;
|
|
2276
|
-
/** Gets the timestamp of the last finished render cycle*/
|
|
2277
|
-
get lastRenderCycleTimestamp(): DOMHighResTimeStamp;
|
|
2278
|
-
/** Indicates that the operation time has exceeded the alloted time */
|
|
2279
|
-
get isElapsed(): boolean;
|
|
2280
|
-
/**Data shared between operations in a one render cycle */
|
|
2281
|
-
get userData(): Map<string, object>;
|
|
2282
|
-
}
|
|
2283
|
-
export enum OperationStatus {
|
|
2284
|
-
/** Operation planned in the render cycle */
|
|
2285
|
-
Planned = 0,
|
|
2286
|
-
/** Operation suspended in the render cycle, will be resumed at the next iteration*/
|
|
2287
|
-
Suspended = 1,
|
|
2288
|
-
/** Operation finished in the render cycle */
|
|
2289
|
-
Finished = 2
|
|
2290
|
-
}
|
|
2291
|
-
export enum OperationMode {
|
|
2292
|
-
/** Perform an operation once*/
|
|
2293
|
-
OneTime = 0,
|
|
2294
|
-
/** Perform an operation once in a render cycle*/
|
|
2295
|
-
EveryCycle = 1,
|
|
2296
|
-
/** Perform an operation for each frame */
|
|
2297
|
-
EveryFrame = 2
|
|
2298
|
-
}
|
|
2299
|
-
export enum OperationPriority {
|
|
2300
|
-
beforeAll = 0,
|
|
2301
|
-
scanForChanges = 8,
|
|
2302
|
-
applyChanges = 16,
|
|
2303
|
-
manageScenes = 24,
|
|
2304
|
-
renderScenes = 32,
|
|
2305
|
-
renderViewcube = 40,
|
|
2306
|
-
afterAll = 100
|
|
2307
|
-
}
|
|
2308
|
-
export type RenderOperationDelegate = (context: IRenderOperationContext) => OperationStatus;
|
|
2309
|
-
export enum SceneNames {
|
|
2310
|
-
Main = "MainScene",
|
|
2311
|
-
PointCloud = "PointCloud",
|
|
2312
|
-
Overlay = "OverlayScene"
|
|
2313
|
-
}
|
|
2314
|
-
export interface IUserScene extends THREE.Scene {
|
|
2315
|
-
/** Scene name */
|
|
2316
|
-
readonly name: string;
|
|
2317
|
-
/** Indicates whether the scene should to be updated (should to be managed)*/
|
|
2318
|
-
get needsUpdate(): boolean;
|
|
2319
|
-
/** Indicates whether the scene should be redrawn*/
|
|
2320
|
-
get needsRedraw(): boolean;
|
|
2321
|
-
/** Gets the scene intersection checker */
|
|
2322
|
-
get intersectionChecker(): ISceneIntersectionChecker | null;
|
|
2323
|
-
/** Sets clipping enable */
|
|
2324
|
-
set clippingEnable(value: boolean);
|
|
2325
|
-
/** Indicates whether the scene should be clipped */
|
|
2326
|
-
get clippingEnable(): boolean;
|
|
2327
|
-
/** Place objects on scene */
|
|
2328
|
-
addRange(objects: THREE.Object3D[]): void;
|
|
2329
|
-
/** Update objects on scene */
|
|
2330
|
-
updateRange(objects: TPair<THREE.Object3D, UpdateType>[]): void;
|
|
2331
|
-
/** Remove objects from scene */
|
|
2332
|
-
removeRange(objects: THREE.Object3D[]): void;
|
|
2333
|
-
/** Indicates if the object is placed on scene */
|
|
2334
|
-
has(obj: THREE.Object3D): boolean;
|
|
2335
|
-
/** Traverse scene */
|
|
2336
|
-
traverse(callback: (object: THREE.Object3D) => void): void;
|
|
2337
|
-
/** Set cliping for the scene */
|
|
2338
|
-
setClipping(planes: THREE.Plane[]): void;
|
|
2339
|
-
/** Manage scene, manage updates on scene */
|
|
2340
|
-
manageScene(context?: IRenderOperationContext): boolean;
|
|
2341
|
-
/** Render scene */
|
|
2342
|
-
render(context?: IRenderOperationContext): void;
|
|
2343
|
-
/** Dispose scene */
|
|
2344
|
-
dispose(): void;
|
|
2345
|
-
}
|
|
2346
|
-
export interface I3DRenderer {
|
|
2347
|
-
clippingPlanes: THREE.Plane[];
|
|
2348
|
-
domElement: HTMLCanvasElement;
|
|
2349
|
-
clear(color?: boolean, depth?: boolean, stencil?: boolean): void;
|
|
2350
|
-
getClearColor(target: THREE.Color): THREE.Color;
|
|
2351
|
-
setClearColor(color: THREE.ColorRepresentation, alpha?: number): void;
|
|
2352
|
-
clearDepth(): void;
|
|
2353
|
-
render(scene: THREE.Object3D, camera: THREE.Camera): void;
|
|
2354
|
-
getSize(target: THREE.Vector2): THREE.Vector2;
|
|
2355
|
-
setSize(width: number, height: number, updateStyle?: boolean): void;
|
|
2356
|
-
setPixelRatio(value: number): void;
|
|
2357
|
-
setViewport(x: THREE.Vector4 | number, y?: number, width?: number, height?: number): void;
|
|
2358
|
-
getViewport(target: THREE.Vector4): THREE.Vector4;
|
|
913
|
+
export class TPair<TKey, TValue> {
|
|
914
|
+
|
|
915
|
+
constructor(key: TKey, value: TValue);
|
|
916
|
+
get key(): TKey;
|
|
917
|
+
get value(): TValue;
|
|
918
|
+
}
|
|
919
|
+
export interface SceneCheckOptions {
|
|
920
|
+
/** specify whether intersections should be filtered by clippings */
|
|
921
|
+
filterByClipping?: boolean;
|
|
922
|
+
}
|
|
923
|
+
export interface ModelCheckOptions extends SceneCheckOptions {
|
|
924
|
+
/** Scene names to check intersections. */
|
|
925
|
+
sceneNames?: string[];
|
|
926
|
+
}
|
|
927
|
+
export interface IIntersectionChecker<TOptions> {
|
|
928
|
+
/**
|
|
929
|
+
* Gets {@link THREE.Intersection<THREE.Object3D>} between a casted {@link ray} and model object.
|
|
930
|
+
* @param ray
|
|
931
|
+
* @param camera
|
|
932
|
+
* @param options - (optional) intersection check options.
|
|
933
|
+
*/
|
|
934
|
+
getIntersectionByRay(ray: THREE.Ray, camera: THREE.Camera, options?: TOptions): THREE.Intersection<THREE.Object3D> | undefined;
|
|
935
|
+
/**
|
|
936
|
+
* Gets ID of the model object intersected by {@link ray}
|
|
937
|
+
* @param ray
|
|
938
|
+
* @param camera
|
|
939
|
+
* @param options - (optional) intersection check options.
|
|
940
|
+
*/
|
|
941
|
+
getIntersectionIDByRay(ray: THREE.Ray, camera: THREE.Camera, options?: TOptions): {
|
|
942
|
+
modelId: string;
|
|
943
|
+
guid: string;
|
|
944
|
+
} | undefined;
|
|
945
|
+
/**
|
|
946
|
+
* Gets {@link THREE.Intersection} between a ray, casted from {@link camera} to {@link ndcPoint}, and model object.
|
|
947
|
+
* @param ndcPoint
|
|
948
|
+
* @param camera
|
|
949
|
+
* @param options - (optional) intersection check options.
|
|
950
|
+
*/
|
|
951
|
+
getIntersectionByNdcPt(ndcPoint: THREE.Vector2, camera: THREE.Camera, options?: TOptions): THREE.Intersection<THREE.Object3D> | undefined;
|
|
952
|
+
/**
|
|
953
|
+
* Gets ID of the model object intersected by ray, casted from {@link camera} to {@link ndcPoint}.
|
|
954
|
+
* @param ndcPoint
|
|
955
|
+
* @param camera
|
|
956
|
+
* @param options - (optional) intersection check options.
|
|
957
|
+
*/
|
|
958
|
+
getIntersectionIDByNdcPt(ndcPoint: THREE.Vector2, camera: THREE.Camera, options?: TOptions): {
|
|
959
|
+
modelId: string;
|
|
960
|
+
guid: string;
|
|
961
|
+
} | undefined;
|
|
962
|
+
/**
|
|
963
|
+
* Gets IDs of the model objects intersected by frustum.
|
|
964
|
+
* @param ndcFrustumBox - frustum in the NDC space.
|
|
965
|
+
* @param unProjMatrix - NDC to World projection matrix.
|
|
966
|
+
* @param isContainsOnly - if true, gets only fully contained objects in the frustum.
|
|
967
|
+
* @param options - (optional) intersection check options.
|
|
968
|
+
*/
|
|
969
|
+
getIntersectionIDByFrustumNdcPt(ndcFrustumBox: THREE.Box3, unProjMatrix: THREE.Matrix4, isContainsOnly: boolean, options?: TOptions): {
|
|
970
|
+
modelId: string;
|
|
971
|
+
guid: string;
|
|
972
|
+
}[];
|
|
973
|
+
/**
|
|
974
|
+
* Gets all intersections between a ray, casted from {@link camera} to {@link ndcPoint} and model objects.
|
|
975
|
+
* @param ray
|
|
976
|
+
* @param camera
|
|
977
|
+
* @param options - (optional) intersection check options.
|
|
978
|
+
*/
|
|
979
|
+
getAllIntersectionsByRay(ray: THREE.Ray, camera: THREE.Camera, options?: TOptions): THREE.Intersection<THREE.Object3D>[];
|
|
980
|
+
/**
|
|
981
|
+
* Gets IDs of the model objects intersected by ray, casted from {@link camera} to {@link ndcPoint}.
|
|
982
|
+
* @param ndcPos
|
|
983
|
+
* @param camera
|
|
984
|
+
* @param options - (optional) intersection check options.
|
|
985
|
+
*/
|
|
986
|
+
getAllIntersectionsByNdcPt(ndcPos: THREE.Vector2, camera: THREE.Camera, options?: TOptions): THREE.Intersection<THREE.Object3D>[];
|
|
987
|
+
}
|
|
988
|
+
export interface ISceneIntersectionChecker extends IIntersectionChecker<SceneCheckOptions> {
|
|
989
|
+
/** Gets the bounding box of the scene*/
|
|
990
|
+
get boundingBox(): THREE.Box3;
|
|
991
|
+
}
|
|
992
|
+
export interface IModelIntersectionChecker extends IIntersectionChecker<ModelCheckOptions> {
|
|
993
|
+
/** Gets the bounding box of the model*/
|
|
994
|
+
get boundingBox(): THREE.Box3;
|
|
995
|
+
/** Gets the center of the model*/
|
|
996
|
+
get modelCenter(): THREE.Vector3;
|
|
997
|
+
}
|
|
998
|
+
export interface I3DRenderer {
|
|
999
|
+
clippingPlanes: THREE.Plane[];
|
|
1000
|
+
domElement: HTMLCanvasElement;
|
|
1001
|
+
clear(color?: boolean, depth?: boolean, stencil?: boolean): void;
|
|
1002
|
+
getClearColor(target: THREE.Color): THREE.Color;
|
|
1003
|
+
setClearColor(color: THREE.ColorRepresentation, alpha?: number): void;
|
|
1004
|
+
clearDepth(): void;
|
|
1005
|
+
render(scene: THREE.Object3D, camera: THREE.Camera): void;
|
|
1006
|
+
getSize(target: THREE.Vector2): THREE.Vector2;
|
|
1007
|
+
setSize(width: number, height: number, updateStyle?: boolean): void;
|
|
1008
|
+
setPixelRatio(value: number): void;
|
|
1009
|
+
setViewport(x: THREE.Vector4 | number, y?: number, width?: number, height?: number): void;
|
|
1010
|
+
getViewport(target: THREE.Vector4): THREE.Vector4;
|
|
2359
1011
|
dispose(): void;
|
|
2360
1012
|
}
|
|
2361
1013
|
export interface IRenderViewer3D {
|
|
@@ -2403,188 +1055,98 @@ export interface IRenderViewer3D {
|
|
|
2403
1055
|
*/
|
|
2404
1056
|
removeScene(scene: IUserScene): void;
|
|
2405
1057
|
}
|
|
2406
|
-
export
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
/**
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
get
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
get instancingColor(): boolean;
|
|
2436
|
-
set instancingColor(value: boolean);
|
|
2437
|
-
/**
|
|
2438
|
-
* @default new THREE.Color( 0xffffff )
|
|
2439
|
-
*/
|
|
2440
|
-
color: THREE.Color;
|
|
2441
|
-
protected refreshUniformsCommon(uniforms: {
|
|
2442
|
-
[uniform: string]: THREE.IUniform;
|
|
2443
|
-
}, material: CustomMeshLambertMaterial, renderer: THREE.WebGLRenderer): void;
|
|
2444
|
-
protected refreshUniforms(uniforms: {
|
|
2445
|
-
[uniform: string]: THREE.IUniform;
|
|
2446
|
-
}, material: CustomMaterial, renderer: THREE.WebGLRenderer): void;
|
|
2447
|
-
copy(source: CustomMeshLambertMaterial): this;
|
|
2448
|
-
}
|
|
2449
|
-
export interface CustomLineMaterialParameters extends THREE.ShaderMaterialParameters {
|
|
2450
|
-
instancing?: boolean | undefined;
|
|
2451
|
-
instancingColor?: boolean | undefined;
|
|
2452
|
-
color?: THREE.ColorRepresentation | undefined;
|
|
2453
|
-
}
|
|
2454
|
-
export class CustomLineMaterial extends CustomMaterial {
|
|
2455
|
-
type: string;
|
|
2456
|
-
|
|
2457
|
-
constructor(parameters?: CustomLineMaterialParameters);
|
|
2458
|
-
/**
|
|
2459
|
-
* @default false
|
|
2460
|
-
*/
|
|
2461
|
-
get instancing(): boolean;
|
|
2462
|
-
set instancing(value: boolean);
|
|
2463
|
-
/**
|
|
2464
|
-
* @default false
|
|
2465
|
-
*/
|
|
2466
|
-
get instancingColor(): boolean;
|
|
2467
|
-
set instancingColor(value: boolean);
|
|
2468
|
-
/**
|
|
2469
|
-
* @default 0xffffff
|
|
2470
|
-
*/
|
|
2471
|
-
color: THREE.Color;
|
|
2472
|
-
copy(source: CustomLineMaterial): this;
|
|
2473
|
-
protected refreshUniforms(uniforms: {
|
|
2474
|
-
[uniform: string]: THREE.IUniform;
|
|
2475
|
-
}, material: CustomLineMaterial, renderer: THREE.WebGLRenderer): void;
|
|
2476
|
-
}
|
|
2477
|
-
export interface MeshLineMaterialParameters extends THREE.ShaderMaterialParameters {
|
|
2478
|
-
color?: THREE.ColorRepresentation | undefined;
|
|
2479
|
-
dashed?: boolean | undefined;
|
|
2480
|
-
dashScale?: number | undefined;
|
|
2481
|
-
dashSize?: number | undefined;
|
|
2482
|
-
dashOffset?: number | undefined;
|
|
2483
|
-
gapSize?: number | undefined;
|
|
2484
|
-
worldUnits?: boolean | undefined;
|
|
2485
|
-
}
|
|
2486
|
-
export class MeshLineMaterial extends CustomMaterial {
|
|
2487
|
-
type: string;
|
|
2488
|
-
|
|
2489
|
-
constructor(parameters: MeshLineMaterialParameters);
|
|
2490
|
-
/**
|
|
2491
|
-
* @default false
|
|
2492
|
-
*/
|
|
2493
|
-
get worldUnits(): boolean;
|
|
2494
|
-
set worldUnits(value: boolean);
|
|
2495
|
-
/**
|
|
2496
|
-
* @default false
|
|
2497
|
-
*/
|
|
2498
|
-
get dashed(): boolean;
|
|
2499
|
-
set dashed(value: boolean);
|
|
2500
|
-
get resolution(): THREE.Vector2;
|
|
2501
|
-
/**
|
|
2502
|
-
* @default 0xffffff
|
|
2503
|
-
*/
|
|
2504
|
-
color: THREE.Color;
|
|
2505
|
-
/**
|
|
2506
|
-
* @default 1
|
|
2507
|
-
*/
|
|
2508
|
-
dashScale: number;
|
|
2509
|
-
/**
|
|
2510
|
-
* @default 1
|
|
2511
|
-
*/
|
|
2512
|
-
dashSize: number;
|
|
2513
|
-
/**
|
|
2514
|
-
* @default 0
|
|
2515
|
-
*/
|
|
2516
|
-
dashOffset: number;
|
|
2517
|
-
/**
|
|
2518
|
-
* @default 1
|
|
2519
|
-
*/
|
|
2520
|
-
gapSize: number;
|
|
2521
|
-
copy(source: MeshLineMaterial): this;
|
|
2522
|
-
protected refreshUniforms(uniforms: {
|
|
2523
|
-
[uniform: string]: THREE.IUniform;
|
|
2524
|
-
}, material: CustomMaterial, renderer: THREE.WebGLRenderer): void;
|
|
1058
|
+
export interface IRenderOperationContext {
|
|
1059
|
+
/** If true, renderScenes operations will be forced*/
|
|
1060
|
+
isRedrawRequested: boolean;
|
|
1061
|
+
/** If true - operations will not be suspended by the scheduler*/
|
|
1062
|
+
isForcedExecution: boolean;
|
|
1063
|
+
/** Gets renderer*/
|
|
1064
|
+
get renderer(): I3DRenderer;
|
|
1065
|
+
/** Gets camera*/
|
|
1066
|
+
get camera(): THREE.Camera;
|
|
1067
|
+
/** Gets render settings*/
|
|
1068
|
+
get settings(): RenderViewSettings;
|
|
1069
|
+
/** Indicates whether the navigation is in progress */
|
|
1070
|
+
get isNavigation(): boolean;
|
|
1071
|
+
/** Indicates whether faces and edges should be drawn */
|
|
1072
|
+
get displayMode(): DisplayMode;
|
|
1073
|
+
/** Indicates whether the operation has been requested to be suspended by the scheduler*/
|
|
1074
|
+
get isSuspensionRequested(): boolean;
|
|
1075
|
+
/** Gets the remaining time for the render operations in current iteration*/
|
|
1076
|
+
get remainedTime(): DOMHighResTimeStamp;
|
|
1077
|
+
/** Gets the time elapsed on render operations in current iteration*/
|
|
1078
|
+
get elapsedTime(): DOMHighResTimeStamp;
|
|
1079
|
+
/** Gets the timestamp of the last rendered frame*/
|
|
1080
|
+
get lastFrameTimestamp(): DOMHighResTimeStamp;
|
|
1081
|
+
/** Gets the timestamp of the last finished render cycle*/
|
|
1082
|
+
get lastRenderCycleTimestamp(): DOMHighResTimeStamp;
|
|
1083
|
+
/** Indicates that the operation time has exceeded the alloted time */
|
|
1084
|
+
get isElapsed(): boolean;
|
|
1085
|
+
/**Data shared between operations in a one render cycle */
|
|
1086
|
+
get userData(): Map<string, object>;
|
|
2525
1087
|
}
|
|
2526
|
-
export
|
|
1088
|
+
export enum OperationStatus {
|
|
1089
|
+
/** Operation planned in the render cycle */
|
|
1090
|
+
Planned = 0,
|
|
1091
|
+
/** Operation suspended in the render cycle, will be resumed at the next iteration*/
|
|
1092
|
+
Suspended = 1,
|
|
1093
|
+
/** Operation finished in the render cycle */
|
|
1094
|
+
Finished = 2
|
|
2527
1095
|
}
|
|
2528
|
-
export
|
|
2529
|
-
|
|
2530
|
-
|
|
2531
|
-
|
|
2532
|
-
|
|
2533
|
-
|
|
2534
|
-
|
|
2535
|
-
color: THREE.Color;
|
|
2536
|
-
/**
|
|
2537
|
-
* @default null
|
|
2538
|
-
*/
|
|
2539
|
-
map: THREE.Texture | null;
|
|
2540
|
-
/**
|
|
2541
|
-
* @default null
|
|
2542
|
-
*/
|
|
2543
|
-
alphaMap: THREE.Texture | null;
|
|
2544
|
-
/**
|
|
2545
|
-
* @default 1
|
|
2546
|
-
*/
|
|
2547
|
-
size: number;
|
|
2548
|
-
/**
|
|
2549
|
-
* @default true
|
|
2550
|
-
*/
|
|
2551
|
-
sizeAttenuation: boolean;
|
|
2552
|
-
copy(source: CustomPointMaterial): this;
|
|
2553
|
-
protected refreshUniformsCommon(uniforms: {
|
|
2554
|
-
[uniform: string]: THREE.IUniform;
|
|
2555
|
-
}, material: CustomPointMaterial, renderer: THREE.WebGLRenderer): void;
|
|
2556
|
-
protected refreshUniforms(uniforms: {
|
|
2557
|
-
[uniform: string]: THREE.IUniform;
|
|
2558
|
-
}, material: CustomMaterial, renderer: THREE.WebGLRenderer): void;
|
|
1096
|
+
export enum OperationMode {
|
|
1097
|
+
/** Perform an operation once*/
|
|
1098
|
+
OneTime = 0,
|
|
1099
|
+
/** Perform an operation once in a render cycle*/
|
|
1100
|
+
EveryCycle = 1,
|
|
1101
|
+
/** Perform an operation for each frame */
|
|
1102
|
+
EveryFrame = 2
|
|
2559
1103
|
}
|
|
2560
|
-
export
|
|
2561
|
-
|
|
2562
|
-
|
|
2563
|
-
|
|
1104
|
+
export enum OperationPriority {
|
|
1105
|
+
beforeAll = 0,
|
|
1106
|
+
scanForChanges = 8,
|
|
1107
|
+
applyChanges = 16,
|
|
1108
|
+
manageScenes = 24,
|
|
1109
|
+
renderScenes = 32,
|
|
1110
|
+
renderViewcube = 40,
|
|
1111
|
+
afterAll = 100
|
|
2564
1112
|
}
|
|
2565
|
-
export
|
|
2566
|
-
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
|
|
2585
|
-
|
|
2586
|
-
|
|
2587
|
-
|
|
1113
|
+
export type RenderOperationDelegate = (context: IRenderOperationContext) => OperationStatus;
|
|
1114
|
+
export enum SceneNames {
|
|
1115
|
+
Main = "MainScene",
|
|
1116
|
+
PointCloud = "PointCloud",
|
|
1117
|
+
Overlay = "OverlayScene"
|
|
1118
|
+
}
|
|
1119
|
+
export interface IUserScene extends THREE.Scene {
|
|
1120
|
+
/** Scene name */
|
|
1121
|
+
readonly name: string;
|
|
1122
|
+
/** Indicates whether the scene should to be updated (should to be managed)*/
|
|
1123
|
+
get needsUpdate(): boolean;
|
|
1124
|
+
/** Indicates whether the scene should be redrawn*/
|
|
1125
|
+
get needsRedraw(): boolean;
|
|
1126
|
+
/** Gets the scene intersection checker */
|
|
1127
|
+
get intersectionChecker(): ISceneIntersectionChecker | null;
|
|
1128
|
+
/** Sets clipping enable */
|
|
1129
|
+
set clippingEnable(value: boolean);
|
|
1130
|
+
/** Indicates whether the scene should be clipped */
|
|
1131
|
+
get clippingEnable(): boolean;
|
|
1132
|
+
/** Place objects on scene */
|
|
1133
|
+
addRange(objects: THREE.Object3D[]): void;
|
|
1134
|
+
/** Update objects on scene */
|
|
1135
|
+
updateRange(objects: TPair<THREE.Object3D, UpdateType>[]): void;
|
|
1136
|
+
/** Remove objects from scene */
|
|
1137
|
+
removeRange(objects: THREE.Object3D[]): void;
|
|
1138
|
+
/** Indicates if the object is placed on scene */
|
|
1139
|
+
has(obj: THREE.Object3D): boolean;
|
|
1140
|
+
/** Traverse scene */
|
|
1141
|
+
traverse(callback: (object: THREE.Object3D) => void): void;
|
|
1142
|
+
/** Set cliping for the scene */
|
|
1143
|
+
setClipping(planes: THREE.Plane[]): void;
|
|
1144
|
+
/** Manage scene, manage updates on scene */
|
|
1145
|
+
manageScene(context?: IRenderOperationContext): boolean;
|
|
1146
|
+
/** Render scene */
|
|
1147
|
+
render(context?: IRenderOperationContext): void;
|
|
1148
|
+
/** Dispose scene */
|
|
1149
|
+
dispose(): void;
|
|
2588
1150
|
}
|
|
2589
1151
|
export enum NavigationHandlerPriority {
|
|
2590
1152
|
DefaultNavigation = 0,
|
|
@@ -2791,6 +1353,189 @@ export class GizmoBuilder {
|
|
|
2791
1353
|
static buildRotationAxis(axisDir: THREE.Vector3, handleBaseMatrial?: THREE.Material, handleHoveredMaterial?: THREE.Material, handleSelectedMaterial?: THREE.Material, pickerBaseMatrial?: THREE.Material, pickerHoveredMaterial?: THREE.Material, pickerSelectedMaterial?: THREE.Material): GizmoAxis;
|
|
2792
1354
|
static buildScaleAxis(axisDir: THREE.Vector3, handleBaseMatrial?: THREE.Material, handleHoveredMaterial?: THREE.Material, handleSelectedMaterial?: THREE.Material): GizmoAxis;
|
|
2793
1355
|
}
|
|
1356
|
+
export abstract class CustomMaterial extends THREE.ShaderMaterial {
|
|
1357
|
+
|
|
1358
|
+
constructor();
|
|
1359
|
+
get hash(): number;
|
|
1360
|
+
copy(source: CustomMaterial): this;
|
|
1361
|
+
protected refreshUniforms(uniforms: {
|
|
1362
|
+
[uniform: string]: THREE.IUniform;
|
|
1363
|
+
}, material: CustomMaterial, renderer: THREE.WebGLRenderer): void;
|
|
1364
|
+
protected onBeforeCompileCallback(shader: THREE.Shader): void;
|
|
1365
|
+
protected refreshTransformUniform(map: THREE.Texture, uniform: THREE.IUniform): void;
|
|
1366
|
+
protected onBeforeRender(renderer: THREE.WebGLRenderer, scene: THREE.Scene, camera: THREE.Camera, geometry: THREE.BufferGeometry, material: THREE.Material, group: THREE.Group): void;
|
|
1367
|
+
}
|
|
1368
|
+
export interface CustomMeshLambertMaterialParameters extends THREE.ShaderMaterialParameters {
|
|
1369
|
+
instancing?: boolean | undefined;
|
|
1370
|
+
instancingColor?: boolean | undefined;
|
|
1371
|
+
color?: THREE.ColorRepresentation | undefined;
|
|
1372
|
+
}
|
|
1373
|
+
export class CustomMeshLambertMaterial extends CustomMaterial {
|
|
1374
|
+
type: string;
|
|
1375
|
+
|
|
1376
|
+
constructor(parameters?: CustomMeshLambertMaterialParameters);
|
|
1377
|
+
/**
|
|
1378
|
+
* @default false
|
|
1379
|
+
*/
|
|
1380
|
+
get instancing(): boolean;
|
|
1381
|
+
set instancing(value: boolean);
|
|
1382
|
+
/**
|
|
1383
|
+
* @default false
|
|
1384
|
+
*/
|
|
1385
|
+
get instancingColor(): boolean;
|
|
1386
|
+
set instancingColor(value: boolean);
|
|
1387
|
+
/**
|
|
1388
|
+
* @default new THREE.Color( 0xffffff )
|
|
1389
|
+
*/
|
|
1390
|
+
color: THREE.Color;
|
|
1391
|
+
protected refreshUniformsCommon(uniforms: {
|
|
1392
|
+
[uniform: string]: THREE.IUniform;
|
|
1393
|
+
}, material: CustomMeshLambertMaterial, renderer: THREE.WebGLRenderer): void;
|
|
1394
|
+
protected refreshUniforms(uniforms: {
|
|
1395
|
+
[uniform: string]: THREE.IUniform;
|
|
1396
|
+
}, material: CustomMaterial, renderer: THREE.WebGLRenderer): void;
|
|
1397
|
+
copy(source: CustomMeshLambertMaterial): this;
|
|
1398
|
+
}
|
|
1399
|
+
export interface CustomLineMaterialParameters extends THREE.ShaderMaterialParameters {
|
|
1400
|
+
instancing?: boolean | undefined;
|
|
1401
|
+
instancingColor?: boolean | undefined;
|
|
1402
|
+
color?: THREE.ColorRepresentation | undefined;
|
|
1403
|
+
}
|
|
1404
|
+
export class CustomLineMaterial extends CustomMaterial {
|
|
1405
|
+
type: string;
|
|
1406
|
+
|
|
1407
|
+
constructor(parameters?: CustomLineMaterialParameters);
|
|
1408
|
+
/**
|
|
1409
|
+
* @default false
|
|
1410
|
+
*/
|
|
1411
|
+
get instancing(): boolean;
|
|
1412
|
+
set instancing(value: boolean);
|
|
1413
|
+
/**
|
|
1414
|
+
* @default false
|
|
1415
|
+
*/
|
|
1416
|
+
get instancingColor(): boolean;
|
|
1417
|
+
set instancingColor(value: boolean);
|
|
1418
|
+
/**
|
|
1419
|
+
* @default 0xffffff
|
|
1420
|
+
*/
|
|
1421
|
+
color: THREE.Color;
|
|
1422
|
+
copy(source: CustomLineMaterial): this;
|
|
1423
|
+
protected refreshUniforms(uniforms: {
|
|
1424
|
+
[uniform: string]: THREE.IUniform;
|
|
1425
|
+
}, material: CustomLineMaterial, renderer: THREE.WebGLRenderer): void;
|
|
1426
|
+
}
|
|
1427
|
+
export interface MeshLineMaterialParameters extends THREE.ShaderMaterialParameters {
|
|
1428
|
+
color?: THREE.ColorRepresentation | undefined;
|
|
1429
|
+
dashed?: boolean | undefined;
|
|
1430
|
+
dashScale?: number | undefined;
|
|
1431
|
+
dashSize?: number | undefined;
|
|
1432
|
+
dashOffset?: number | undefined;
|
|
1433
|
+
gapSize?: number | undefined;
|
|
1434
|
+
worldUnits?: boolean | undefined;
|
|
1435
|
+
}
|
|
1436
|
+
export class MeshLineMaterial extends CustomMaterial {
|
|
1437
|
+
type: string;
|
|
1438
|
+
|
|
1439
|
+
constructor(parameters: MeshLineMaterialParameters);
|
|
1440
|
+
/**
|
|
1441
|
+
* @default false
|
|
1442
|
+
*/
|
|
1443
|
+
get worldUnits(): boolean;
|
|
1444
|
+
set worldUnits(value: boolean);
|
|
1445
|
+
/**
|
|
1446
|
+
* @default false
|
|
1447
|
+
*/
|
|
1448
|
+
get dashed(): boolean;
|
|
1449
|
+
set dashed(value: boolean);
|
|
1450
|
+
get resolution(): THREE.Vector2;
|
|
1451
|
+
/**
|
|
1452
|
+
* @default 0xffffff
|
|
1453
|
+
*/
|
|
1454
|
+
color: THREE.Color;
|
|
1455
|
+
/**
|
|
1456
|
+
* @default 1
|
|
1457
|
+
*/
|
|
1458
|
+
dashScale: number;
|
|
1459
|
+
/**
|
|
1460
|
+
* @default 1
|
|
1461
|
+
*/
|
|
1462
|
+
dashSize: number;
|
|
1463
|
+
/**
|
|
1464
|
+
* @default 0
|
|
1465
|
+
*/
|
|
1466
|
+
dashOffset: number;
|
|
1467
|
+
/**
|
|
1468
|
+
* @default 1
|
|
1469
|
+
*/
|
|
1470
|
+
gapSize: number;
|
|
1471
|
+
copy(source: MeshLineMaterial): this;
|
|
1472
|
+
protected refreshUniforms(uniforms: {
|
|
1473
|
+
[uniform: string]: THREE.IUniform;
|
|
1474
|
+
}, material: CustomMaterial, renderer: THREE.WebGLRenderer): void;
|
|
1475
|
+
}
|
|
1476
|
+
export interface CustomPointMaterialParameters extends THREE.ShaderMaterialParameters, THREE.PointsMaterialParameters {
|
|
1477
|
+
}
|
|
1478
|
+
export class CustomPointMaterial extends CustomMaterial {
|
|
1479
|
+
type: string;
|
|
1480
|
+
|
|
1481
|
+
constructor(parameters?: CustomPointMaterialParameters);
|
|
1482
|
+
/**
|
|
1483
|
+
* @default new THREE.Color( 0xffffff )
|
|
1484
|
+
*/
|
|
1485
|
+
color: THREE.Color;
|
|
1486
|
+
/**
|
|
1487
|
+
* @default null
|
|
1488
|
+
*/
|
|
1489
|
+
map: THREE.Texture | null;
|
|
1490
|
+
/**
|
|
1491
|
+
* @default null
|
|
1492
|
+
*/
|
|
1493
|
+
alphaMap: THREE.Texture | null;
|
|
1494
|
+
/**
|
|
1495
|
+
* @default 1
|
|
1496
|
+
*/
|
|
1497
|
+
size: number;
|
|
1498
|
+
/**
|
|
1499
|
+
* @default true
|
|
1500
|
+
*/
|
|
1501
|
+
sizeAttenuation: boolean;
|
|
1502
|
+
copy(source: CustomPointMaterial): this;
|
|
1503
|
+
protected refreshUniformsCommon(uniforms: {
|
|
1504
|
+
[uniform: string]: THREE.IUniform;
|
|
1505
|
+
}, material: CustomPointMaterial, renderer: THREE.WebGLRenderer): void;
|
|
1506
|
+
protected refreshUniforms(uniforms: {
|
|
1507
|
+
[uniform: string]: THREE.IUniform;
|
|
1508
|
+
}, material: CustomMaterial, renderer: THREE.WebGLRenderer): void;
|
|
1509
|
+
}
|
|
1510
|
+
export interface CloudPointMaterialParameters extends THREE.ShaderMaterialParameters, THREE.PointsMaterialParameters {
|
|
1511
|
+
color?: THREE.ColorRepresentation | undefined;
|
|
1512
|
+
size?: number | undefined;
|
|
1513
|
+
sizeAttenuation?: boolean | undefined;
|
|
1514
|
+
}
|
|
1515
|
+
export class CloudPointMaterial extends CustomMaterial {
|
|
1516
|
+
type: string;
|
|
1517
|
+
|
|
1518
|
+
constructor(parameters?: CloudPointMaterialParameters);
|
|
1519
|
+
/**
|
|
1520
|
+
* @default true
|
|
1521
|
+
*/
|
|
1522
|
+
sizeAttenuation: boolean;
|
|
1523
|
+
/**
|
|
1524
|
+
* @default new THREE.Color( 0xffffff )
|
|
1525
|
+
*/
|
|
1526
|
+
color: THREE.Color;
|
|
1527
|
+
/**
|
|
1528
|
+
* @default 1
|
|
1529
|
+
*/
|
|
1530
|
+
size: number;
|
|
1531
|
+
copy(source: CloudPointMaterial): this;
|
|
1532
|
+
protected refreshUniformsCommon(uniforms: {
|
|
1533
|
+
[uniform: string]: THREE.IUniform;
|
|
1534
|
+
}, material: CloudPointMaterial, renderer: THREE.WebGLRenderer): void;
|
|
1535
|
+
protected refreshUniforms(uniforms: {
|
|
1536
|
+
[uniform: string]: THREE.IUniform;
|
|
1537
|
+
}, material: CustomMaterial, renderer: THREE.WebGLRenderer): void;
|
|
1538
|
+
}
|
|
2794
1539
|
export interface CustomSpriteMaterialParameters extends THREE.ShaderMaterialParameters {
|
|
2795
1540
|
color?: THREE.ColorRepresentation | undefined;
|
|
2796
1541
|
map?: THREE.Texture | null | undefined;
|
|
@@ -2872,137 +1617,1416 @@ export class MeshLineGeometry extends THREE.InstancedBufferGeometry {
|
|
|
2872
1617
|
computeBoundingBox(): void;
|
|
2873
1618
|
computeBoundingSphere(): void;
|
|
2874
1619
|
}
|
|
2875
|
-
export class MeshLine extends THREE.Mesh {
|
|
2876
|
-
type: string;
|
|
2877
|
-
material: MeshLineMaterial;
|
|
2878
|
-
geometry: MeshLineGeometry;
|
|
2879
|
-
|
|
2880
|
-
constructor(geometry?: MeshLineGeometry, material?: MeshLineMaterial);
|
|
2881
|
-
raycast(raycaster: THREE.Raycaster, intersects: THREE.Intersection[]): void;
|
|
1620
|
+
export class MeshLine extends THREE.Mesh {
|
|
1621
|
+
type: string;
|
|
1622
|
+
material: MeshLineMaterial;
|
|
1623
|
+
geometry: MeshLineGeometry;
|
|
1624
|
+
|
|
1625
|
+
constructor(geometry?: MeshLineGeometry, material?: MeshLineMaterial);
|
|
1626
|
+
raycast(raycaster: THREE.Raycaster, intersects: THREE.Intersection[]): void;
|
|
1627
|
+
}
|
|
1628
|
+
export class CustomSprite extends THREE.Sprite {
|
|
1629
|
+
material: CustomSpriteMaterial;
|
|
1630
|
+
|
|
1631
|
+
constructor(material: CustomSpriteMaterial);
|
|
1632
|
+
raycast(raycaster: THREE.Raycaster, intersects: THREE.Intersection<THREE.Object3D<THREE.Event>>[]): void;
|
|
1633
|
+
dispose(): void;
|
|
1634
|
+
}
|
|
1635
|
+
export interface LabelSpriteParameters {
|
|
1636
|
+
text?: string | undefined;
|
|
1637
|
+
sizeAttenuation?: boolean | undefined;
|
|
1638
|
+
fontFace?: string | FontFace | undefined;
|
|
1639
|
+
fontSize?: number | undefined;
|
|
1640
|
+
borderColor?: Color | undefined;
|
|
1641
|
+
backgroundColor?: Color | undefined;
|
|
1642
|
+
borderThickness?: number | undefined;
|
|
1643
|
+
borderRadius?: number | undefined;
|
|
1644
|
+
textColor?: Color | undefined;
|
|
1645
|
+
textPadding?: THREE.Vector4Tuple | undefined;
|
|
1646
|
+
}
|
|
1647
|
+
export class LabelSprite extends CustomSprite {
|
|
1648
|
+
readonly extraHeightFactor = 1.4;
|
|
1649
|
+
|
|
1650
|
+
constructor(parameters: LabelSpriteParameters);
|
|
1651
|
+
get sizeAttenuation(): boolean;
|
|
1652
|
+
set sizeAttenuation(value: boolean);
|
|
1653
|
+
/**
|
|
1654
|
+
* @default ''
|
|
1655
|
+
*/
|
|
1656
|
+
get text(): string;
|
|
1657
|
+
set text(value: string);
|
|
1658
|
+
/**
|
|
1659
|
+
* @default 'Roboto, sans-serif'
|
|
1660
|
+
*/
|
|
1661
|
+
get fontFace(): string | FontFace;
|
|
1662
|
+
set fontFace(value: string | FontFace);
|
|
1663
|
+
/**
|
|
1664
|
+
* @default 12
|
|
1665
|
+
*/
|
|
1666
|
+
get fontSize(): number;
|
|
1667
|
+
set fontSize(value: number);
|
|
1668
|
+
/**
|
|
1669
|
+
* @default 2
|
|
1670
|
+
*/
|
|
1671
|
+
get borderThickness(): number;
|
|
1672
|
+
set borderThickness(value: number);
|
|
1673
|
+
/**
|
|
1674
|
+
* @default new Color(0, 0, 0, 1.0)
|
|
1675
|
+
*/
|
|
1676
|
+
get borderColor(): Color;
|
|
1677
|
+
set borderColor(value: Color);
|
|
1678
|
+
/**
|
|
1679
|
+
* @default 1
|
|
1680
|
+
*/
|
|
1681
|
+
get borderRadius(): number;
|
|
1682
|
+
set borderRadius(value: number);
|
|
1683
|
+
/**
|
|
1684
|
+
* @default new Color(1.0, 1.0, 1.0, 1.0)
|
|
1685
|
+
*/
|
|
1686
|
+
get backgroundColor(): Color;
|
|
1687
|
+
set backgroundColor(value: Color);
|
|
1688
|
+
/**
|
|
1689
|
+
* @default new Color(0, 0, 0, 1.0)
|
|
1690
|
+
*/
|
|
1691
|
+
get textColor(): Color;
|
|
1692
|
+
set textColor(value: Color);
|
|
1693
|
+
/**
|
|
1694
|
+
* Label text padding: left, top, right, bottom
|
|
1695
|
+
* @default [0, 0, 0, 0]
|
|
1696
|
+
*/
|
|
1697
|
+
get textPadding(): THREE.Vector4Tuple;
|
|
1698
|
+
set textPadding(value: THREE.Vector4Tuple);
|
|
1699
|
+
dispose(): void;
|
|
1700
|
+
}
|
|
1701
|
+
export interface MeshPointMaterialParameters extends THREE.ShaderMaterialParameters {
|
|
1702
|
+
sizeAttenuation?: boolean | undefined;
|
|
1703
|
+
discreteClipping?: boolean | undefined;
|
|
1704
|
+
}
|
|
1705
|
+
export class MeshPointMaterial extends CustomMaterial {
|
|
1706
|
+
|
|
1707
|
+
constructor(parameters?: MeshPointMaterialParameters);
|
|
1708
|
+
/**
|
|
1709
|
+
* @default true
|
|
1710
|
+
*/
|
|
1711
|
+
get discreteClipping(): boolean;
|
|
1712
|
+
set discreteClipping(value: boolean);
|
|
1713
|
+
get resolution(): THREE.Vector2;
|
|
1714
|
+
/**
|
|
1715
|
+
* @default true
|
|
1716
|
+
*/
|
|
1717
|
+
sizeAttenuation: boolean;
|
|
1718
|
+
copy(source: MeshPointMaterial): this;
|
|
1719
|
+
protected refreshUniforms(uniforms: {
|
|
1720
|
+
[uniform: string]: THREE.IUniform;
|
|
1721
|
+
}, material: CustomMaterial, renderer: THREE.WebGLRenderer): void;
|
|
1722
|
+
}
|
|
1723
|
+
export interface MeshPointParamter {
|
|
1724
|
+
point?: THREE.Vector3;
|
|
1725
|
+
color?: Color;
|
|
1726
|
+
size?: number;
|
|
1727
|
+
}
|
|
1728
|
+
export class MeshPoints extends THREE.Mesh {
|
|
1729
|
+
geometry: THREE.InstancedBufferGeometry;
|
|
1730
|
+
material: MeshPointMaterial;
|
|
1731
|
+
|
|
1732
|
+
constructor();
|
|
1733
|
+
/**
|
|
1734
|
+
* @default new Color( 1,1,1,1 )
|
|
1735
|
+
*/
|
|
1736
|
+
color: Color;
|
|
1737
|
+
/**
|
|
1738
|
+
* @default 1
|
|
1739
|
+
*/
|
|
1740
|
+
pointSize: number;
|
|
1741
|
+
/**
|
|
1742
|
+
* @default new THREE.Vector3(0, 0, 0)
|
|
1743
|
+
*/
|
|
1744
|
+
point: THREE.Vector3;
|
|
1745
|
+
addPoint(pointParameter?: MeshPointParamter): number;
|
|
1746
|
+
updatePoint(index: number, pointParameter: MeshPointParamter): void;
|
|
1747
|
+
removePoint(index: number): this;
|
|
1748
|
+
updateAttributes(): void;
|
|
1749
|
+
dispose(): void;
|
|
1750
|
+
raycast(raycaster: THREE.Raycaster, intersects: THREE.Intersection<THREE.Object3D<THREE.Event>>[]): void;
|
|
1751
|
+
}
|
|
1752
|
+
export interface ModelPart {
|
|
1753
|
+
get id(): string;
|
|
1754
|
+
get elementTree(): ModelElementTree;
|
|
1755
|
+
setModelPartPlacement(placement: THREE.Matrix4Tuple | number[]): void;
|
|
1756
|
+
setModelPartScaling(scaling: number): void;
|
|
1757
|
+
getViewObject(): ViewObject;
|
|
1758
|
+
dispose(): void;
|
|
1759
|
+
}
|
|
1760
|
+
export enum IfcType {
|
|
1761
|
+
IfcAbsorbedDoseMeasure = 0,
|
|
1762
|
+
IfcAccelerationMeasure = 1,
|
|
1763
|
+
IfcActionRequest = 2,
|
|
1764
|
+
IfcActionRequestTypeEnum = 3,
|
|
1765
|
+
IfcActionSourceTypeEnum = 4,
|
|
1766
|
+
IfcActionTypeEnum = 5,
|
|
1767
|
+
IfcActor = 6,
|
|
1768
|
+
IfcActorRole = 7,
|
|
1769
|
+
IfcActorSelect = 8,
|
|
1770
|
+
IfcActuator = 9,
|
|
1771
|
+
IfcActuatorType = 10,
|
|
1772
|
+
IfcActuatorTypeEnum = 11,
|
|
1773
|
+
IfcAddress = 12,
|
|
1774
|
+
IfcAddressTypeEnum = 13,
|
|
1775
|
+
IfcAdvancedBrep = 14,
|
|
1776
|
+
IfcAdvancedBrepWithVoids = 15,
|
|
1777
|
+
IfcAdvancedFace = 16,
|
|
1778
|
+
IfcAirTerminal = 17,
|
|
1779
|
+
IfcAirTerminalBox = 18,
|
|
1780
|
+
IfcAirTerminalBoxType = 19,
|
|
1781
|
+
IfcAirTerminalBoxTypeEnum = 20,
|
|
1782
|
+
IfcAirTerminalType = 21,
|
|
1783
|
+
IfcAirTerminalTypeEnum = 22,
|
|
1784
|
+
IfcAirToAirHeatRecovery = 23,
|
|
1785
|
+
IfcAirToAirHeatRecoveryType = 24,
|
|
1786
|
+
IfcAirToAirHeatRecoveryTypeEnum = 25,
|
|
1787
|
+
IfcAlarm = 26,
|
|
1788
|
+
IfcAlarmType = 27,
|
|
1789
|
+
IfcAlarmTypeEnum = 28,
|
|
1790
|
+
IfcAlignment = 29,
|
|
1791
|
+
IfcAlignment2DHorizontal = 30,
|
|
1792
|
+
IfcAlignment2DHorizontalSegment = 31,
|
|
1793
|
+
IfcAlignment2DSegment = 32,
|
|
1794
|
+
IfcAlignment2DVerSegCircularArc = 33,
|
|
1795
|
+
IfcAlignment2DVerSegLine = 34,
|
|
1796
|
+
IfcAlignment2DVerSegParabolicArc = 35,
|
|
1797
|
+
IfcAlignment2DVertical = 36,
|
|
1798
|
+
IfcAlignment2DVerticalSegment = 37,
|
|
1799
|
+
IfcAlignmentCurve = 38,
|
|
1800
|
+
IfcAlignmentTypeEnum = 39,
|
|
1801
|
+
IfcAmountOfSubstanceMeasure = 40,
|
|
1802
|
+
IfcAnalysisModelTypeEnum = 41,
|
|
1803
|
+
IfcAnalysisTheoryTypeEnum = 42,
|
|
1804
|
+
IfcAngularVelocityMeasure = 43,
|
|
1805
|
+
IfcAnnotation = 44,
|
|
1806
|
+
IfcAnnotationFillArea = 45,
|
|
1807
|
+
IfcApplication = 46,
|
|
1808
|
+
IfcAppliedValue = 47,
|
|
1809
|
+
IfcAppliedValueSelect = 48,
|
|
1810
|
+
IfcApproval = 49,
|
|
1811
|
+
IfcApprovalRelationship = 50,
|
|
1812
|
+
IfcArbitraryClosedProfileDef = 51,
|
|
1813
|
+
IfcArbitraryOpenProfileDef = 52,
|
|
1814
|
+
IfcArbitraryProfileDefWithVoids = 53,
|
|
1815
|
+
IfcArcIndex = 54,
|
|
1816
|
+
IfcAreaDensityMeasure = 55,
|
|
1817
|
+
IfcAreaMeasure = 56,
|
|
1818
|
+
IfcArithmeticOperatorEnum = 57,
|
|
1819
|
+
IfcAssemblyPlaceEnum = 58,
|
|
1820
|
+
IfcAsset = 59,
|
|
1821
|
+
IfcAsymmetricIShapeProfileDef = 60,
|
|
1822
|
+
IfcAudioVisualAppliance = 61,
|
|
1823
|
+
IfcAudioVisualApplianceType = 62,
|
|
1824
|
+
IfcAudioVisualApplianceTypeEnum = 63,
|
|
1825
|
+
IfcAxis1Placement = 64,
|
|
1826
|
+
IfcAxis2Placement = 65,
|
|
1827
|
+
IfcAxis2Placement2D = 66,
|
|
1828
|
+
IfcAxis2Placement3D = 67,
|
|
1829
|
+
IfcBeam = 68,
|
|
1830
|
+
IfcBeamStandardCase = 69,
|
|
1831
|
+
IfcBeamType = 70,
|
|
1832
|
+
IfcBeamTypeEnum = 71,
|
|
1833
|
+
IfcBenchmarkEnum = 72,
|
|
1834
|
+
IfcBendingParameterSelect = 73,
|
|
1835
|
+
IfcBinary = 74,
|
|
1836
|
+
IfcBlobTexture = 75,
|
|
1837
|
+
IfcBlock = 76,
|
|
1838
|
+
IfcBoiler = 77,
|
|
1839
|
+
IfcBoilerType = 78,
|
|
1840
|
+
IfcBoilerTypeEnum = 79,
|
|
1841
|
+
IfcBoolean = 80,
|
|
1842
|
+
IfcBooleanClippingResult = 81,
|
|
1843
|
+
IfcBooleanOperand = 82,
|
|
1844
|
+
IfcBooleanOperator = 83,
|
|
1845
|
+
IfcBooleanResult = 84,
|
|
1846
|
+
IfcBoundaryCondition = 85,
|
|
1847
|
+
IfcBoundaryCurve = 86,
|
|
1848
|
+
IfcBoundaryEdgeCondition = 87,
|
|
1849
|
+
IfcBoundaryFaceCondition = 88,
|
|
1850
|
+
IfcBoundaryNodeCondition = 89,
|
|
1851
|
+
IfcBoundaryNodeConditionWarping = 90,
|
|
1852
|
+
IfcBoundedCurve = 91,
|
|
1853
|
+
IfcBoundedSurface = 92,
|
|
1854
|
+
IfcBoundingBox = 93,
|
|
1855
|
+
IfcBoxAlignment = 94,
|
|
1856
|
+
IfcBoxedHalfSpace = 95,
|
|
1857
|
+
IfcBSplineCurve = 96,
|
|
1858
|
+
IfcBSplineCurveForm = 97,
|
|
1859
|
+
IfcBSplineCurveWithKnots = 98,
|
|
1860
|
+
IfcBSplineSurface = 99,
|
|
1861
|
+
IfcBSplineSurfaceForm = 100,
|
|
1862
|
+
IfcBSplineSurfaceWithKnots = 101,
|
|
1863
|
+
IfcBuilding = 102,
|
|
1864
|
+
IfcBuildingElement = 103,
|
|
1865
|
+
IfcBuildingElementPart = 104,
|
|
1866
|
+
IfcBuildingElementPartType = 105,
|
|
1867
|
+
IfcBuildingElementPartTypeEnum = 106,
|
|
1868
|
+
IfcBuildingElementProxy = 107,
|
|
1869
|
+
IfcBuildingElementProxyType = 108,
|
|
1870
|
+
IfcBuildingElementProxyTypeEnum = 109,
|
|
1871
|
+
IfcBuildingElementType = 110,
|
|
1872
|
+
IfcBuildingStorey = 111,
|
|
1873
|
+
IfcBuildingSystem = 112,
|
|
1874
|
+
IfcBuildingSystemTypeEnum = 113,
|
|
1875
|
+
IfcBurner = 114,
|
|
1876
|
+
IfcBurnerType = 115,
|
|
1877
|
+
IfcBurnerTypeEnum = 116,
|
|
1878
|
+
IfcCableCarrierFitting = 117,
|
|
1879
|
+
IfcCableCarrierFittingType = 118,
|
|
1880
|
+
IfcCableCarrierFittingTypeEnum = 119,
|
|
1881
|
+
IfcCableCarrierSegment = 120,
|
|
1882
|
+
IfcCableCarrierSegmentType = 121,
|
|
1883
|
+
IfcCableCarrierSegmentTypeEnum = 122,
|
|
1884
|
+
IfcCableFitting = 123,
|
|
1885
|
+
IfcCableFittingType = 124,
|
|
1886
|
+
IfcCableFittingTypeEnum = 125,
|
|
1887
|
+
IfcCableSegment = 126,
|
|
1888
|
+
IfcCableSegmentType = 127,
|
|
1889
|
+
IfcCableSegmentTypeEnum = 128,
|
|
1890
|
+
IfcCardinalPointReference = 129,
|
|
1891
|
+
IfcCartesianPoint = 130,
|
|
1892
|
+
IfcCartesianPointList = 131,
|
|
1893
|
+
IfcCartesianPointList2D = 132,
|
|
1894
|
+
IfcCartesianPointList3D = 133,
|
|
1895
|
+
IfcCartesianTransformationOperator = 134,
|
|
1896
|
+
IfcCartesianTransformationOperator2D = 135,
|
|
1897
|
+
IfcCartesianTransformationOperator2DnonUniform = 136,
|
|
1898
|
+
IfcCartesianTransformationOperator3D = 137,
|
|
1899
|
+
IfcCartesianTransformationOperator3DnonUniform = 138,
|
|
1900
|
+
IfcCenterLineProfileDef = 139,
|
|
1901
|
+
IfcChangeActionEnum = 140,
|
|
1902
|
+
IfcChiller = 141,
|
|
1903
|
+
IfcChillerType = 142,
|
|
1904
|
+
IfcChillerTypeEnum = 143,
|
|
1905
|
+
IfcChimney = 144,
|
|
1906
|
+
IfcChimneyType = 145,
|
|
1907
|
+
IfcChimneyTypeEnum = 146,
|
|
1908
|
+
IfcCircle = 147,
|
|
1909
|
+
IfcCircleHollowProfileDef = 148,
|
|
1910
|
+
IfcCircleProfileDef = 149,
|
|
1911
|
+
IfcCircularArcSegment2D = 150,
|
|
1912
|
+
IfcCivilElement = 151,
|
|
1913
|
+
IfcCivilElementType = 152,
|
|
1914
|
+
IfcClassification = 153,
|
|
1915
|
+
IfcClassificationReference = 154,
|
|
1916
|
+
IfcClassificationReferenceSelect = 155,
|
|
1917
|
+
IfcClassificationSelect = 156,
|
|
1918
|
+
IfcClosedShell = 157,
|
|
1919
|
+
IfcCoil = 158,
|
|
1920
|
+
IfcCoilType = 159,
|
|
1921
|
+
IfcCoilTypeEnum = 160,
|
|
1922
|
+
IfcColour = 161,
|
|
1923
|
+
IfcColourOrFactor = 162,
|
|
1924
|
+
IfcColourRgb = 163,
|
|
1925
|
+
IfcColourRgbList = 164,
|
|
1926
|
+
IfcColourSpecification = 165,
|
|
1927
|
+
IfcColumn = 166,
|
|
1928
|
+
IfcColumnStandardCase = 167,
|
|
1929
|
+
IfcColumnType = 168,
|
|
1930
|
+
IfcColumnTypeEnum = 169,
|
|
1931
|
+
IfcCommunicationsAppliance = 170,
|
|
1932
|
+
IfcCommunicationsApplianceType = 171,
|
|
1933
|
+
IfcCommunicationsApplianceTypeEnum = 172,
|
|
1934
|
+
IfcComplexNumber = 173,
|
|
1935
|
+
IfcComplexProperty = 174,
|
|
1936
|
+
IfcComplexPropertyTemplate = 175,
|
|
1937
|
+
IfcComplexPropertyTemplateTypeEnum = 176,
|
|
1938
|
+
IfcCompositeCurve = 177,
|
|
1939
|
+
IfcCompositeCurveOnSurface = 178,
|
|
1940
|
+
IfcCompositeCurveSegment = 179,
|
|
1941
|
+
IfcCompositeProfileDef = 180,
|
|
1942
|
+
IfcCompoundPlaneAngleMeasure = 181,
|
|
1943
|
+
IfcCompressor = 182,
|
|
1944
|
+
IfcCompressorType = 183,
|
|
1945
|
+
IfcCompressorTypeEnum = 184,
|
|
1946
|
+
IfcCondenser = 185,
|
|
1947
|
+
IfcCondenserType = 186,
|
|
1948
|
+
IfcCondenserTypeEnum = 187,
|
|
1949
|
+
IfcConic = 188,
|
|
1950
|
+
IfcConnectedFaceSet = 189,
|
|
1951
|
+
IfcConnectionCurveGeometry = 190,
|
|
1952
|
+
IfcConnectionGeometry = 191,
|
|
1953
|
+
IfcConnectionPointEccentricity = 192,
|
|
1954
|
+
IfcConnectionPointGeometry = 193,
|
|
1955
|
+
IfcConnectionSurfaceGeometry = 194,
|
|
1956
|
+
IfcConnectionTypeEnum = 195,
|
|
1957
|
+
IfcConnectionVolumeGeometry = 196,
|
|
1958
|
+
IfcConstraint = 197,
|
|
1959
|
+
IfcConstraintEnum = 198,
|
|
1960
|
+
IfcConstructionEquipmentResource = 199,
|
|
1961
|
+
IfcConstructionEquipmentResourceType = 200,
|
|
1962
|
+
IfcConstructionEquipmentResourceTypeEnum = 201,
|
|
1963
|
+
IfcConstructionMaterialResource = 202,
|
|
1964
|
+
IfcConstructionMaterialResourceType = 203,
|
|
1965
|
+
IfcConstructionMaterialResourceTypeEnum = 204,
|
|
1966
|
+
IfcConstructionProductResource = 205,
|
|
1967
|
+
IfcConstructionProductResourceType = 206,
|
|
1968
|
+
IfcConstructionProductResourceTypeEnum = 207,
|
|
1969
|
+
IfcConstructionResource = 208,
|
|
1970
|
+
IfcConstructionResourceType = 209,
|
|
1971
|
+
IfcContext = 210,
|
|
1972
|
+
IfcContextDependentMeasure = 211,
|
|
1973
|
+
IfcContextDependentUnit = 212,
|
|
1974
|
+
IfcControl = 213,
|
|
1975
|
+
IfcController = 214,
|
|
1976
|
+
IfcControllerType = 215,
|
|
1977
|
+
IfcControllerTypeEnum = 216,
|
|
1978
|
+
IfcConversionBasedUnit = 217,
|
|
1979
|
+
IfcConversionBasedUnitWithOffset = 218,
|
|
1980
|
+
IfcCooledBeam = 219,
|
|
1981
|
+
IfcCooledBeamType = 220,
|
|
1982
|
+
IfcCooledBeamTypeEnum = 221,
|
|
1983
|
+
IfcCoolingTower = 222,
|
|
1984
|
+
IfcCoolingTowerType = 223,
|
|
1985
|
+
IfcCoolingTowerTypeEnum = 224,
|
|
1986
|
+
IfcCoordinateOperation = 225,
|
|
1987
|
+
IfcCoordinateReferenceSystem = 226,
|
|
1988
|
+
IfcCoordinateReferenceSystemSelect = 227,
|
|
1989
|
+
IfcCostItem = 228,
|
|
1990
|
+
IfcCostItemTypeEnum = 229,
|
|
1991
|
+
IfcCostSchedule = 230,
|
|
1992
|
+
IfcCostScheduleTypeEnum = 231,
|
|
1993
|
+
IfcCostValue = 232,
|
|
1994
|
+
IfcCountMeasure = 233,
|
|
1995
|
+
IfcCovering = 234,
|
|
1996
|
+
IfcCoveringType = 235,
|
|
1997
|
+
IfcCoveringTypeEnum = 236,
|
|
1998
|
+
IfcCrewResource = 237,
|
|
1999
|
+
IfcCrewResourceType = 238,
|
|
2000
|
+
IfcCrewResourceTypeEnum = 239,
|
|
2001
|
+
IfcCsgPrimitive3D = 240,
|
|
2002
|
+
IfcCsgSelect = 241,
|
|
2003
|
+
IfcCsgSolid = 242,
|
|
2004
|
+
IfcCShapeProfileDef = 243,
|
|
2005
|
+
IfcCurrencyRelationship = 244,
|
|
2006
|
+
IfcCurtainWall = 245,
|
|
2007
|
+
IfcCurtainWallType = 246,
|
|
2008
|
+
IfcCurtainWallTypeEnum = 247,
|
|
2009
|
+
IfcCurvatureMeasure = 248,
|
|
2010
|
+
IfcCurve = 249,
|
|
2011
|
+
IfcCurveBoundedPlane = 250,
|
|
2012
|
+
IfcCurveBoundedSurface = 251,
|
|
2013
|
+
IfcCurveFontOrScaledCurveFontSelect = 252,
|
|
2014
|
+
IfcCurveInterpolationEnum = 253,
|
|
2015
|
+
IfcCurveOnSurface = 254,
|
|
2016
|
+
IfcCurveOrEdgeCurve = 255,
|
|
2017
|
+
IfcCurveSegment2D = 256,
|
|
2018
|
+
IfcCurveStyle = 257,
|
|
2019
|
+
IfcCurveStyleFont = 258,
|
|
2020
|
+
IfcCurveStyleFontAndScaling = 259,
|
|
2021
|
+
IfcCurveStyleFontPattern = 260,
|
|
2022
|
+
IfcCurveStyleFontSelect = 261,
|
|
2023
|
+
IfcCylindricalSurface = 262,
|
|
2024
|
+
IfcDamper = 263,
|
|
2025
|
+
IfcDamperType = 264,
|
|
2026
|
+
IfcDamperTypeEnum = 265,
|
|
2027
|
+
IfcDataOriginEnum = 266,
|
|
2028
|
+
IfcDate = 267,
|
|
2029
|
+
IfcDateTime = 268,
|
|
2030
|
+
IfcDayInMonthNumber = 269,
|
|
2031
|
+
IfcDayInWeekNumber = 270,
|
|
2032
|
+
IfcDefinitionSelect = 271,
|
|
2033
|
+
IfcDerivedMeasureValue = 272,
|
|
2034
|
+
IfcDerivedProfileDef = 273,
|
|
2035
|
+
IfcDerivedUnit = 274,
|
|
2036
|
+
IfcDerivedUnitElement = 275,
|
|
2037
|
+
IfcDerivedUnitEnum = 276,
|
|
2038
|
+
IfcDescriptiveMeasure = 277,
|
|
2039
|
+
IfcDimensionalExponents = 278,
|
|
2040
|
+
IfcDimensionCount = 279,
|
|
2041
|
+
IfcDirection = 280,
|
|
2042
|
+
IfcDirectionSenseEnum = 281,
|
|
2043
|
+
IfcDiscreteAccessory = 282,
|
|
2044
|
+
IfcDiscreteAccessoryType = 283,
|
|
2045
|
+
IfcDiscreteAccessoryTypeEnum = 284,
|
|
2046
|
+
IfcDistanceExpression = 285,
|
|
2047
|
+
IfcDistributionChamberElement = 286,
|
|
2048
|
+
IfcDistributionChamberElementType = 287,
|
|
2049
|
+
IfcDistributionChamberElementTypeEnum = 288,
|
|
2050
|
+
IfcDistributionCircuit = 289,
|
|
2051
|
+
IfcDistributionControlElement = 290,
|
|
2052
|
+
IfcDistributionControlElementType = 291,
|
|
2053
|
+
IfcDistributionElement = 292,
|
|
2054
|
+
IfcDistributionElementType = 293,
|
|
2055
|
+
IfcDistributionFlowElement = 294,
|
|
2056
|
+
IfcDistributionFlowElementType = 295,
|
|
2057
|
+
IfcDistributionPort = 296,
|
|
2058
|
+
IfcDistributionPortTypeEnum = 297,
|
|
2059
|
+
IfcDistributionSystem = 298,
|
|
2060
|
+
IfcDistributionSystemEnum = 299,
|
|
2061
|
+
IfcDocumentConfidentialityEnum = 300,
|
|
2062
|
+
IfcDocumentInformation = 301,
|
|
2063
|
+
IfcDocumentInformationRelationship = 302,
|
|
2064
|
+
IfcDocumentReference = 303,
|
|
2065
|
+
IfcDocumentSelect = 304,
|
|
2066
|
+
IfcDocumentStatusEnum = 305,
|
|
2067
|
+
IfcDoor = 306,
|
|
2068
|
+
IfcDoorLiningProperties = 307,
|
|
2069
|
+
IfcDoorPanelOperationEnum = 308,
|
|
2070
|
+
IfcDoorPanelPositionEnum = 309,
|
|
2071
|
+
IfcDoorPanelProperties = 310,
|
|
2072
|
+
IfcDoorStandardCase = 311,
|
|
2073
|
+
IfcDoorStyle = 312,
|
|
2074
|
+
IfcDoorStyleConstructionEnum = 313,
|
|
2075
|
+
IfcDoorStyleOperationEnum = 314,
|
|
2076
|
+
IfcDoorType = 315,
|
|
2077
|
+
IfcDoorTypeEnum = 316,
|
|
2078
|
+
IfcDoorTypeOperationEnum = 317,
|
|
2079
|
+
IfcDoseEquivalentMeasure = 318,
|
|
2080
|
+
IfcDraughtingPreDefinedColour = 319,
|
|
2081
|
+
IfcDraughtingPreDefinedCurveFont = 320,
|
|
2082
|
+
IfcDuctFitting = 321,
|
|
2083
|
+
IfcDuctFittingType = 322,
|
|
2084
|
+
IfcDuctFittingTypeEnum = 323,
|
|
2085
|
+
IfcDuctSegment = 324,
|
|
2086
|
+
IfcDuctSegmentType = 325,
|
|
2087
|
+
IfcDuctSegmentTypeEnum = 326,
|
|
2088
|
+
IfcDuctSilencer = 327,
|
|
2089
|
+
IfcDuctSilencerType = 328,
|
|
2090
|
+
IfcDuctSilencerTypeEnum = 329,
|
|
2091
|
+
IfcDuration = 330,
|
|
2092
|
+
IfcDynamicViscosityMeasure = 331,
|
|
2093
|
+
IfcEdge = 332,
|
|
2094
|
+
IfcEdgeCurve = 333,
|
|
2095
|
+
IfcEdgeLoop = 334,
|
|
2096
|
+
IfcElectricAppliance = 335,
|
|
2097
|
+
IfcElectricApplianceType = 336,
|
|
2098
|
+
IfcElectricApplianceTypeEnum = 337,
|
|
2099
|
+
IfcElectricCapacitanceMeasure = 338,
|
|
2100
|
+
IfcElectricChargeMeasure = 339,
|
|
2101
|
+
IfcElectricConductanceMeasure = 340,
|
|
2102
|
+
IfcElectricCurrentMeasure = 341,
|
|
2103
|
+
IfcElectricDistributionBoard = 342,
|
|
2104
|
+
IfcElectricDistributionBoardType = 343,
|
|
2105
|
+
IfcElectricDistributionBoardTypeEnum = 344,
|
|
2106
|
+
IfcElectricFlowStorageDevice = 345,
|
|
2107
|
+
IfcElectricFlowStorageDeviceType = 346,
|
|
2108
|
+
IfcElectricFlowStorageDeviceTypeEnum = 347,
|
|
2109
|
+
IfcElectricGenerator = 348,
|
|
2110
|
+
IfcElectricGeneratorType = 349,
|
|
2111
|
+
IfcElectricGeneratorTypeEnum = 350,
|
|
2112
|
+
IfcElectricMotor = 351,
|
|
2113
|
+
IfcElectricMotorType = 352,
|
|
2114
|
+
IfcElectricMotorTypeEnum = 353,
|
|
2115
|
+
IfcElectricResistanceMeasure = 354,
|
|
2116
|
+
IfcElectricTimeControl = 355,
|
|
2117
|
+
IfcElectricTimeControlType = 356,
|
|
2118
|
+
IfcElectricTimeControlTypeEnum = 357,
|
|
2119
|
+
IfcElectricVoltageMeasure = 358,
|
|
2120
|
+
IfcElement = 359,
|
|
2121
|
+
IfcElementarySurface = 360,
|
|
2122
|
+
IfcElementAssembly = 361,
|
|
2123
|
+
IfcElementAssemblyType = 362,
|
|
2124
|
+
IfcElementAssemblyTypeEnum = 363,
|
|
2125
|
+
IfcElementComponent = 364,
|
|
2126
|
+
IfcElementComponentType = 365,
|
|
2127
|
+
IfcElementCompositionEnum = 366,
|
|
2128
|
+
IfcElementQuantity = 367,
|
|
2129
|
+
IfcElementType = 368,
|
|
2130
|
+
IfcEllipse = 369,
|
|
2131
|
+
IfcEllipseProfileDef = 370,
|
|
2132
|
+
IfcEnergyConversionDevice = 371,
|
|
2133
|
+
IfcEnergyConversionDeviceType = 372,
|
|
2134
|
+
IfcEnergyMeasure = 373,
|
|
2135
|
+
IfcEngine = 374,
|
|
2136
|
+
IfcEngineType = 375,
|
|
2137
|
+
IfcEngineTypeEnum = 376,
|
|
2138
|
+
IfcEvaporativeCooler = 377,
|
|
2139
|
+
IfcEvaporativeCoolerType = 378,
|
|
2140
|
+
IfcEvaporativeCoolerTypeEnum = 379,
|
|
2141
|
+
IfcEvaporator = 380,
|
|
2142
|
+
IfcEvaporatorType = 381,
|
|
2143
|
+
IfcEvaporatorTypeEnum = 382,
|
|
2144
|
+
IfcEvent = 383,
|
|
2145
|
+
IfcEventTime = 384,
|
|
2146
|
+
IfcEventTriggerTypeEnum = 385,
|
|
2147
|
+
IfcEventType = 386,
|
|
2148
|
+
IfcEventTypeEnum = 387,
|
|
2149
|
+
IfcExtendedProperties = 388,
|
|
2150
|
+
IfcExternalInformation = 389,
|
|
2151
|
+
IfcExternallyDefinedHatchStyle = 390,
|
|
2152
|
+
IfcExternallyDefinedSurfaceStyle = 391,
|
|
2153
|
+
IfcExternallyDefinedTextFont = 392,
|
|
2154
|
+
IfcExternalReference = 393,
|
|
2155
|
+
IfcExternalReferenceRelationship = 394,
|
|
2156
|
+
IfcExternalSpatialElement = 395,
|
|
2157
|
+
IfcExternalSpatialElementTypeEnum = 396,
|
|
2158
|
+
IfcExternalSpatialStructureElement = 397,
|
|
2159
|
+
IfcExtrudedAreaSolid = 398,
|
|
2160
|
+
IfcExtrudedAreaSolidTapered = 399,
|
|
2161
|
+
IfcFace = 400,
|
|
2162
|
+
IfcFaceBasedSurfaceModel = 401,
|
|
2163
|
+
IfcFaceBound = 402,
|
|
2164
|
+
IfcFaceOuterBound = 403,
|
|
2165
|
+
IfcFaceSurface = 404,
|
|
2166
|
+
IfcFacetedBrep = 405,
|
|
2167
|
+
IfcFacetedBrepWithVoids = 406,
|
|
2168
|
+
IfcFailureConnectionCondition = 407,
|
|
2169
|
+
IfcFan = 408,
|
|
2170
|
+
IfcFanType = 409,
|
|
2171
|
+
IfcFanTypeEnum = 410,
|
|
2172
|
+
IfcFastener = 411,
|
|
2173
|
+
IfcFastenerType = 412,
|
|
2174
|
+
IfcFastenerTypeEnum = 413,
|
|
2175
|
+
IfcFeatureElement = 414,
|
|
2176
|
+
IfcFeatureElementAddition = 415,
|
|
2177
|
+
IfcFeatureElementSubtraction = 416,
|
|
2178
|
+
IfcFillAreaStyle = 417,
|
|
2179
|
+
IfcFillAreaStyleHatching = 418,
|
|
2180
|
+
IfcFillAreaStyleTiles = 419,
|
|
2181
|
+
IfcFillStyleSelect = 420,
|
|
2182
|
+
IfcFilter = 421,
|
|
2183
|
+
IfcFilterType = 422,
|
|
2184
|
+
IfcFilterTypeEnum = 423,
|
|
2185
|
+
IfcFireSuppressionTerminal = 424,
|
|
2186
|
+
IfcFireSuppressionTerminalType = 425,
|
|
2187
|
+
IfcFireSuppressionTerminalTypeEnum = 426,
|
|
2188
|
+
IfcFixedReferenceSweptAreaSolid = 427,
|
|
2189
|
+
IfcFlowController = 428,
|
|
2190
|
+
IfcFlowControllerType = 429,
|
|
2191
|
+
IfcFlowDirectionEnum = 430,
|
|
2192
|
+
IfcFlowFitting = 431,
|
|
2193
|
+
IfcFlowFittingType = 432,
|
|
2194
|
+
IfcFlowInstrument = 433,
|
|
2195
|
+
IfcFlowInstrumentType = 434,
|
|
2196
|
+
IfcFlowInstrumentTypeEnum = 435,
|
|
2197
|
+
IfcFlowMeter = 436,
|
|
2198
|
+
IfcFlowMeterType = 437,
|
|
2199
|
+
IfcFlowMeterTypeEnum = 438,
|
|
2200
|
+
IfcFlowMovingDevice = 439,
|
|
2201
|
+
IfcFlowMovingDeviceType = 440,
|
|
2202
|
+
IfcFlowSegment = 441,
|
|
2203
|
+
IfcFlowSegmentType = 442,
|
|
2204
|
+
IfcFlowStorageDevice = 443,
|
|
2205
|
+
IfcFlowStorageDeviceType = 444,
|
|
2206
|
+
IfcFlowTerminal = 445,
|
|
2207
|
+
IfcFlowTerminalType = 446,
|
|
2208
|
+
IfcFlowTreatmentDevice = 447,
|
|
2209
|
+
IfcFlowTreatmentDeviceType = 448,
|
|
2210
|
+
IfcFontStyle = 449,
|
|
2211
|
+
IfcFontVariant = 450,
|
|
2212
|
+
IfcFontWeight = 451,
|
|
2213
|
+
IfcFooting = 452,
|
|
2214
|
+
IfcFootingType = 453,
|
|
2215
|
+
IfcFootingTypeEnum = 454,
|
|
2216
|
+
IfcForceMeasure = 455,
|
|
2217
|
+
IfcFrequencyMeasure = 456,
|
|
2218
|
+
IfcFurnishingElement = 457,
|
|
2219
|
+
IfcFurnishingElementType = 458,
|
|
2220
|
+
IfcFurniture = 459,
|
|
2221
|
+
IfcFurnitureType = 460,
|
|
2222
|
+
IfcFurnitureTypeEnum = 461,
|
|
2223
|
+
IfcGeographicElement = 462,
|
|
2224
|
+
IfcGeographicElementType = 463,
|
|
2225
|
+
IfcGeographicElementTypeEnum = 464,
|
|
2226
|
+
IfcGeometricCurveSet = 465,
|
|
2227
|
+
IfcGeometricProjectionEnum = 466,
|
|
2228
|
+
IfcGeometricRepresentationContext = 467,
|
|
2229
|
+
IfcGeometricRepresentationItem = 468,
|
|
2230
|
+
IfcGeometricRepresentationSubContext = 469,
|
|
2231
|
+
IfcGeometricSet = 470,
|
|
2232
|
+
IfcGeometricSetSelect = 471,
|
|
2233
|
+
IfcGloballyUniqueId = 472,
|
|
2234
|
+
IfcGlobalOrLocalEnum = 473,
|
|
2235
|
+
IfcGrid = 474,
|
|
2236
|
+
IfcGridAxis = 475,
|
|
2237
|
+
IfcGridPlacement = 476,
|
|
2238
|
+
IfcGridPlacementDirectionSelect = 477,
|
|
2239
|
+
IfcGridTypeEnum = 478,
|
|
2240
|
+
IfcGroup = 479,
|
|
2241
|
+
IfcHalfSpaceSolid = 480,
|
|
2242
|
+
IfcHatchLineDistanceSelect = 481,
|
|
2243
|
+
IfcHeatExchanger = 482,
|
|
2244
|
+
IfcHeatExchangerType = 483,
|
|
2245
|
+
IfcHeatExchangerTypeEnum = 484,
|
|
2246
|
+
IfcHeatFluxDensityMeasure = 485,
|
|
2247
|
+
IfcHeatingValueMeasure = 486,
|
|
2248
|
+
IfcHumidifier = 487,
|
|
2249
|
+
IfcHumidifierType = 488,
|
|
2250
|
+
IfcHumidifierTypeEnum = 489,
|
|
2251
|
+
IfcIdentifier = 490,
|
|
2252
|
+
IfcIlluminanceMeasure = 491,
|
|
2253
|
+
IfcImageTexture = 492,
|
|
2254
|
+
IfcIndexedColourMap = 493,
|
|
2255
|
+
IfcIndexedPolyCurve = 494,
|
|
2256
|
+
IfcIndexedPolygonalFace = 495,
|
|
2257
|
+
IfcIndexedPolygonalFaceWithVoids = 496,
|
|
2258
|
+
IfcIndexedTextureMap = 497,
|
|
2259
|
+
IfcIndexedTriangleTextureMap = 498,
|
|
2260
|
+
IfcInductanceMeasure = 499,
|
|
2261
|
+
IfcInteger = 500,
|
|
2262
|
+
IfcIntegerCountRateMeasure = 501,
|
|
2263
|
+
IfcInterceptor = 502,
|
|
2264
|
+
IfcInterceptorType = 503,
|
|
2265
|
+
IfcInterceptorTypeEnum = 504,
|
|
2266
|
+
IfcInternalOrExternalEnum = 505,
|
|
2267
|
+
IfcIntersectionCurve = 506,
|
|
2268
|
+
IfcInventory = 507,
|
|
2269
|
+
IfcInventoryTypeEnum = 508,
|
|
2270
|
+
IfcIonConcentrationMeasure = 509,
|
|
2271
|
+
IfcIrregularTimeSeries = 510,
|
|
2272
|
+
IfcIrregularTimeSeriesValue = 511,
|
|
2273
|
+
IfcIShapeProfileDef = 512,
|
|
2274
|
+
IfcIsothermalMoistureCapacityMeasure = 513,
|
|
2275
|
+
IfcJunctionBox = 514,
|
|
2276
|
+
IfcJunctionBoxType = 515,
|
|
2277
|
+
IfcJunctionBoxTypeEnum = 516,
|
|
2278
|
+
IfcKinematicViscosityMeasure = 517,
|
|
2279
|
+
IfcKnotType = 518,
|
|
2280
|
+
IfcLabel = 519,
|
|
2281
|
+
IfcLaborResource = 520,
|
|
2282
|
+
IfcLaborResourceType = 521,
|
|
2283
|
+
IfcLaborResourceTypeEnum = 522,
|
|
2284
|
+
IfcLagTime = 523,
|
|
2285
|
+
IfcLamp = 524,
|
|
2286
|
+
IfcLampType = 525,
|
|
2287
|
+
IfcLampTypeEnum = 526,
|
|
2288
|
+
IfcLanguageId = 527,
|
|
2289
|
+
IfcLayeredItem = 528,
|
|
2290
|
+
IfcLayerSetDirectionEnum = 529,
|
|
2291
|
+
IfcLengthMeasure = 530,
|
|
2292
|
+
IfcLibraryInformation = 531,
|
|
2293
|
+
IfcLibraryReference = 532,
|
|
2294
|
+
IfcLibrarySelect = 533,
|
|
2295
|
+
IfcLightDistributionCurveEnum = 534,
|
|
2296
|
+
IfcLightDistributionData = 535,
|
|
2297
|
+
IfcLightDistributionDataSourceSelect = 536,
|
|
2298
|
+
IfcLightEmissionSourceEnum = 537,
|
|
2299
|
+
IfcLightFixture = 538,
|
|
2300
|
+
IfcLightFixtureType = 539,
|
|
2301
|
+
IfcLightFixtureTypeEnum = 540,
|
|
2302
|
+
IfcLightIntensityDistribution = 541,
|
|
2303
|
+
IfcLightSource = 542,
|
|
2304
|
+
IfcLightSourceAmbient = 543,
|
|
2305
|
+
IfcLightSourceDirectional = 544,
|
|
2306
|
+
IfcLightSourceGoniometric = 545,
|
|
2307
|
+
IfcLightSourcePositional = 546,
|
|
2308
|
+
IfcLightSourceSpot = 547,
|
|
2309
|
+
IfcLine = 548,
|
|
2310
|
+
IfcLinearForceMeasure = 549,
|
|
2311
|
+
IfcLinearMomentMeasure = 550,
|
|
2312
|
+
IfcLinearPlacement = 551,
|
|
2313
|
+
IfcLinearPositioningElement = 552,
|
|
2314
|
+
IfcLinearStiffnessMeasure = 553,
|
|
2315
|
+
IfcLinearVelocityMeasure = 554,
|
|
2316
|
+
IfcLineIndex = 555,
|
|
2317
|
+
IfcLineSegment2D = 556,
|
|
2318
|
+
IfcLoadGroupTypeEnum = 557,
|
|
2319
|
+
IfcLocalPlacement = 558,
|
|
2320
|
+
IfcLogical = 559,
|
|
2321
|
+
IfcLogicalOperatorEnum = 560,
|
|
2322
|
+
IfcLoop = 561,
|
|
2323
|
+
IfcLShapeProfileDef = 562,
|
|
2324
|
+
IfcLuminousFluxMeasure = 563,
|
|
2325
|
+
IfcLuminousIntensityDistributionMeasure = 564,
|
|
2326
|
+
IfcLuminousIntensityMeasure = 565,
|
|
2327
|
+
IfcMagneticFluxDensityMeasure = 566,
|
|
2328
|
+
IfcMagneticFluxMeasure = 567,
|
|
2329
|
+
IfcManifoldSolidBrep = 568,
|
|
2330
|
+
IfcMapConversion = 569,
|
|
2331
|
+
IfcMappedItem = 570,
|
|
2332
|
+
IfcMassDensityMeasure = 571,
|
|
2333
|
+
IfcMassFlowRateMeasure = 572,
|
|
2334
|
+
IfcMassMeasure = 573,
|
|
2335
|
+
IfcMassPerLengthMeasure = 574,
|
|
2336
|
+
IfcMaterial = 575,
|
|
2337
|
+
IfcMaterialClassificationRelationship = 576,
|
|
2338
|
+
IfcMaterialConstituent = 577,
|
|
2339
|
+
IfcMaterialConstituentSet = 578,
|
|
2340
|
+
IfcMaterialDefinition = 579,
|
|
2341
|
+
IfcMaterialDefinitionRepresentation = 580,
|
|
2342
|
+
IfcMaterialLayer = 581,
|
|
2343
|
+
IfcMaterialLayerSet = 582,
|
|
2344
|
+
IfcMaterialLayerSetUsage = 583,
|
|
2345
|
+
IfcMaterialLayerWithOffsets = 584,
|
|
2346
|
+
IfcMaterialList = 585,
|
|
2347
|
+
IfcMaterialProfile = 586,
|
|
2348
|
+
IfcMaterialProfileSet = 587,
|
|
2349
|
+
IfcMaterialProfileSetUsage = 588,
|
|
2350
|
+
IfcMaterialProfileSetUsageTapering = 589,
|
|
2351
|
+
IfcMaterialProfileWithOffsets = 590,
|
|
2352
|
+
IfcMaterialProperties = 591,
|
|
2353
|
+
IfcMaterialRelationship = 592,
|
|
2354
|
+
IfcMaterialSelect = 593,
|
|
2355
|
+
IfcMaterialUsageDefinition = 594,
|
|
2356
|
+
IfcMeasureValue = 595,
|
|
2357
|
+
IfcMeasureWithUnit = 596,
|
|
2358
|
+
IfcMechanicalFastener = 597,
|
|
2359
|
+
IfcMechanicalFastenerType = 598,
|
|
2360
|
+
IfcMechanicalFastenerTypeEnum = 599,
|
|
2361
|
+
IfcMedicalDevice = 600,
|
|
2362
|
+
IfcMedicalDeviceType = 601,
|
|
2363
|
+
IfcMedicalDeviceTypeEnum = 602,
|
|
2364
|
+
IfcMember = 603,
|
|
2365
|
+
IfcMemberStandardCase = 604,
|
|
2366
|
+
IfcMemberType = 605,
|
|
2367
|
+
IfcMemberTypeEnum = 606,
|
|
2368
|
+
IfcMetric = 607,
|
|
2369
|
+
IfcMetricValueSelect = 608,
|
|
2370
|
+
IfcMirroredProfileDef = 609,
|
|
2371
|
+
IfcModulusOfElasticityMeasure = 610,
|
|
2372
|
+
IfcModulusOfLinearSubgradeReactionMeasure = 611,
|
|
2373
|
+
IfcModulusOfRotationalSubgradeReactionMeasure = 612,
|
|
2374
|
+
IfcModulusOfRotationalSubgradeReactionSelect = 613,
|
|
2375
|
+
IfcModulusOfSubgradeReactionMeasure = 614,
|
|
2376
|
+
IfcModulusOfSubgradeReactionSelect = 615,
|
|
2377
|
+
IfcModulusOfTranslationalSubgradeReactionSelect = 616,
|
|
2378
|
+
IfcMoistureDiffusivityMeasure = 617,
|
|
2379
|
+
IfcMolecularWeightMeasure = 618,
|
|
2380
|
+
IfcMomentOfInertiaMeasure = 619,
|
|
2381
|
+
IfcMonetaryMeasure = 620,
|
|
2382
|
+
IfcMonetaryUnit = 621,
|
|
2383
|
+
IfcMonthInYearNumber = 622,
|
|
2384
|
+
IfcMotorConnection = 623,
|
|
2385
|
+
IfcMotorConnectionType = 624,
|
|
2386
|
+
IfcMotorConnectionTypeEnum = 625,
|
|
2387
|
+
IfcNamedUnit = 626,
|
|
2388
|
+
IfcNonNegativeLengthMeasure = 627,
|
|
2389
|
+
IfcNormalisedRatioMeasure = 628,
|
|
2390
|
+
IfcNullStyle = 629,
|
|
2391
|
+
IfcNumericMeasure = 630,
|
|
2392
|
+
IfcObject = 631,
|
|
2393
|
+
IfcObjectDefinition = 632,
|
|
2394
|
+
IfcObjective = 633,
|
|
2395
|
+
IfcObjectiveEnum = 634,
|
|
2396
|
+
IfcObjectPlacement = 635,
|
|
2397
|
+
IfcObjectReferenceSelect = 636,
|
|
2398
|
+
IfcObjectTypeEnum = 637,
|
|
2399
|
+
IfcOccupant = 638,
|
|
2400
|
+
IfcOccupantTypeEnum = 639,
|
|
2401
|
+
IfcOffsetCurve = 640,
|
|
2402
|
+
IfcOffsetCurve2D = 641,
|
|
2403
|
+
IfcOffsetCurve3D = 642,
|
|
2404
|
+
IfcOffsetCurveByDistances = 643,
|
|
2405
|
+
IfcOpeningElement = 644,
|
|
2406
|
+
IfcOpeningElementTypeEnum = 645,
|
|
2407
|
+
IfcOpeningStandardCase = 646,
|
|
2408
|
+
IfcOpenShell = 647,
|
|
2409
|
+
IfcOrganization = 648,
|
|
2410
|
+
IfcOrganizationRelationship = 649,
|
|
2411
|
+
IfcOrientationExpression = 650,
|
|
2412
|
+
IfcOrientedEdge = 651,
|
|
2413
|
+
IfcOuterBoundaryCurve = 652,
|
|
2414
|
+
IfcOutlet = 653,
|
|
2415
|
+
IfcOutletType = 654,
|
|
2416
|
+
IfcOutletTypeEnum = 655,
|
|
2417
|
+
IfcOwnerHistory = 656,
|
|
2418
|
+
IfcParameterizedProfileDef = 657,
|
|
2419
|
+
IfcParameterValue = 658,
|
|
2420
|
+
IfcPath = 659,
|
|
2421
|
+
IfcPcurve = 660,
|
|
2422
|
+
IfcPerformanceHistory = 661,
|
|
2423
|
+
IfcPerformanceHistoryTypeEnum = 662,
|
|
2424
|
+
IfcPermeableCoveringOperationEnum = 663,
|
|
2425
|
+
IfcPermeableCoveringProperties = 664,
|
|
2426
|
+
IfcPermit = 665,
|
|
2427
|
+
IfcPermitTypeEnum = 666,
|
|
2428
|
+
IfcPerson = 667,
|
|
2429
|
+
IfcPersonAndOrganization = 668,
|
|
2430
|
+
IfcPHMeasure = 669,
|
|
2431
|
+
IfcPhysicalComplexQuantity = 670,
|
|
2432
|
+
IfcPhysicalOrVirtualEnum = 671,
|
|
2433
|
+
IfcPhysicalQuantity = 672,
|
|
2434
|
+
IfcPhysicalSimpleQuantity = 673,
|
|
2435
|
+
IfcPile = 674,
|
|
2436
|
+
IfcPileConstructionEnum = 675,
|
|
2437
|
+
IfcPileType = 676,
|
|
2438
|
+
IfcPileTypeEnum = 677,
|
|
2439
|
+
IfcPipeFitting = 678,
|
|
2440
|
+
IfcPipeFittingType = 679,
|
|
2441
|
+
IfcPipeFittingTypeEnum = 680,
|
|
2442
|
+
IfcPipeSegment = 681,
|
|
2443
|
+
IfcPipeSegmentType = 682,
|
|
2444
|
+
IfcPipeSegmentTypeEnum = 683,
|
|
2445
|
+
IfcPixelTexture = 684,
|
|
2446
|
+
IfcPlacement = 685,
|
|
2447
|
+
IfcPlanarBox = 686,
|
|
2448
|
+
IfcPlanarExtent = 687,
|
|
2449
|
+
IfcPlanarForceMeasure = 688,
|
|
2450
|
+
IfcPlane = 689,
|
|
2451
|
+
IfcPlaneAngleMeasure = 690,
|
|
2452
|
+
IfcPlate = 691,
|
|
2453
|
+
IfcPlateStandardCase = 692,
|
|
2454
|
+
IfcPlateType = 693,
|
|
2455
|
+
IfcPlateTypeEnum = 694,
|
|
2456
|
+
IfcPoint = 695,
|
|
2457
|
+
IfcPointOnCurve = 696,
|
|
2458
|
+
IfcPointOnSurface = 697,
|
|
2459
|
+
IfcPointOrVertexPoint = 698,
|
|
2460
|
+
IfcPolygonalBoundedHalfSpace = 699,
|
|
2461
|
+
IfcPolygonalFaceSet = 700,
|
|
2462
|
+
IfcPolyline = 701,
|
|
2463
|
+
IfcPolyLoop = 702,
|
|
2464
|
+
IfcPort = 703,
|
|
2465
|
+
IfcPositioningElement = 704,
|
|
2466
|
+
IfcPositiveInteger = 705,
|
|
2467
|
+
IfcPositiveLengthMeasure = 706,
|
|
2468
|
+
IfcPositivePlaneAngleMeasure = 707,
|
|
2469
|
+
IfcPositiveRatioMeasure = 708,
|
|
2470
|
+
IfcPostalAddress = 709,
|
|
2471
|
+
IfcPowerMeasure = 710,
|
|
2472
|
+
IfcPreDefinedColour = 711,
|
|
2473
|
+
IfcPreDefinedCurveFont = 712,
|
|
2474
|
+
IfcPreDefinedItem = 713,
|
|
2475
|
+
IfcPreDefinedProperties = 714,
|
|
2476
|
+
IfcPreDefinedPropertySet = 715,
|
|
2477
|
+
IfcPreDefinedTextFont = 716,
|
|
2478
|
+
IfcPreferredSurfaceCurveRepresentation = 717,
|
|
2479
|
+
IfcPresentableText = 718,
|
|
2480
|
+
IfcPresentationItem = 719,
|
|
2481
|
+
IfcPresentationLayerAssignment = 720,
|
|
2482
|
+
IfcPresentationLayerWithStyle = 721,
|
|
2483
|
+
IfcPresentationStyle = 722,
|
|
2484
|
+
IfcPresentationStyleAssignment = 723,
|
|
2485
|
+
IfcPresentationStyleSelect = 724,
|
|
2486
|
+
IfcPressureMeasure = 725,
|
|
2487
|
+
IfcProcedure = 726,
|
|
2488
|
+
IfcProcedureType = 727,
|
|
2489
|
+
IfcProcedureTypeEnum = 728,
|
|
2490
|
+
IfcProcess = 729,
|
|
2491
|
+
IfcProcessSelect = 730,
|
|
2492
|
+
IfcProduct = 731,
|
|
2493
|
+
IfcProductDefinitionShape = 732,
|
|
2494
|
+
IfcProductRepresentation = 733,
|
|
2495
|
+
IfcProductRepresentationSelect = 734,
|
|
2496
|
+
IfcProductSelect = 735,
|
|
2497
|
+
IfcProfileDef = 736,
|
|
2498
|
+
IfcProfileProperties = 737,
|
|
2499
|
+
IfcProfileTypeEnum = 738,
|
|
2500
|
+
IfcProject = 739,
|
|
2501
|
+
IfcProjectedCRS = 740,
|
|
2502
|
+
IfcProjectedOrTrueLengthEnum = 741,
|
|
2503
|
+
IfcProjectionElement = 742,
|
|
2504
|
+
IfcProjectionElementTypeEnum = 743,
|
|
2505
|
+
IfcProjectLibrary = 744,
|
|
2506
|
+
IfcProjectOrder = 745,
|
|
2507
|
+
IfcProjectOrderTypeEnum = 746,
|
|
2508
|
+
IfcProperty = 747,
|
|
2509
|
+
IfcPropertyAbstraction = 748,
|
|
2510
|
+
IfcPropertyBoundedValue = 749,
|
|
2511
|
+
IfcPropertyDefinition = 750,
|
|
2512
|
+
IfcPropertyDependencyRelationship = 751,
|
|
2513
|
+
IfcPropertyEnumeratedValue = 752,
|
|
2514
|
+
IfcPropertyEnumeration = 753,
|
|
2515
|
+
IfcPropertyListValue = 754,
|
|
2516
|
+
IfcPropertyReferenceValue = 755,
|
|
2517
|
+
IfcPropertySet = 756,
|
|
2518
|
+
IfcPropertySetDefinition = 757,
|
|
2519
|
+
IfcPropertySetDefinitionSelect = 758,
|
|
2520
|
+
IfcPropertySetDefinitionSet = 759,
|
|
2521
|
+
IfcPropertySetTemplate = 760,
|
|
2522
|
+
IfcPropertySetTemplateTypeEnum = 761,
|
|
2523
|
+
IfcPropertySingleValue = 762,
|
|
2524
|
+
IfcPropertyTableValue = 763,
|
|
2525
|
+
IfcPropertyTemplate = 764,
|
|
2526
|
+
IfcPropertyTemplateDefinition = 765,
|
|
2527
|
+
IfcProtectiveDevice = 766,
|
|
2528
|
+
IfcProtectiveDeviceTrippingUnit = 767,
|
|
2529
|
+
IfcProtectiveDeviceTrippingUnitType = 768,
|
|
2530
|
+
IfcProtectiveDeviceTrippingUnitTypeEnum = 769,
|
|
2531
|
+
IfcProtectiveDeviceType = 770,
|
|
2532
|
+
IfcProtectiveDeviceTypeEnum = 771,
|
|
2533
|
+
IfcProxy = 772,
|
|
2534
|
+
IfcPump = 773,
|
|
2535
|
+
IfcPumpType = 774,
|
|
2536
|
+
IfcPumpTypeEnum = 775,
|
|
2537
|
+
IfcQuantityArea = 776,
|
|
2538
|
+
IfcQuantityCount = 777,
|
|
2539
|
+
IfcQuantityLength = 778,
|
|
2540
|
+
IfcQuantitySet = 779,
|
|
2541
|
+
IfcQuantityTime = 780,
|
|
2542
|
+
IfcQuantityVolume = 781,
|
|
2543
|
+
IfcQuantityWeight = 782,
|
|
2544
|
+
IfcRadioActivityMeasure = 783,
|
|
2545
|
+
IfcRailing = 784,
|
|
2546
|
+
IfcRailingType = 785,
|
|
2547
|
+
IfcRailingTypeEnum = 786,
|
|
2548
|
+
IfcRamp = 787,
|
|
2549
|
+
IfcRampFlight = 788,
|
|
2550
|
+
IfcRampFlightType = 789,
|
|
2551
|
+
IfcRampFlightTypeEnum = 790,
|
|
2552
|
+
IfcRampType = 791,
|
|
2553
|
+
IfcRampTypeEnum = 792,
|
|
2554
|
+
IfcRatioMeasure = 793,
|
|
2555
|
+
IfcRationalBSplineCurveWithKnots = 794,
|
|
2556
|
+
IfcRationalBSplineSurfaceWithKnots = 795,
|
|
2557
|
+
IfcReal = 796,
|
|
2558
|
+
IfcRectangleHollowProfileDef = 797,
|
|
2559
|
+
IfcRectangleProfileDef = 798,
|
|
2560
|
+
IfcRectangularPyramid = 799,
|
|
2561
|
+
IfcRectangularTrimmedSurface = 800,
|
|
2562
|
+
IfcRecurrencePattern = 801,
|
|
2563
|
+
IfcRecurrenceTypeEnum = 802,
|
|
2564
|
+
IfcReference = 803,
|
|
2565
|
+
IfcReferent = 804,
|
|
2566
|
+
IfcReferentTypeEnum = 805,
|
|
2567
|
+
IfcReflectanceMethodEnum = 806,
|
|
2568
|
+
IfcRegularTimeSeries = 807,
|
|
2569
|
+
IfcReinforcementBarProperties = 808,
|
|
2570
|
+
IfcReinforcementDefinitionProperties = 809,
|
|
2571
|
+
IfcReinforcingBar = 810,
|
|
2572
|
+
IfcReinforcingBarRoleEnum = 811,
|
|
2573
|
+
IfcReinforcingBarSurfaceEnum = 812,
|
|
2574
|
+
IfcReinforcingBarType = 813,
|
|
2575
|
+
IfcReinforcingBarTypeEnum = 814,
|
|
2576
|
+
IfcReinforcingElement = 815,
|
|
2577
|
+
IfcReinforcingElementType = 816,
|
|
2578
|
+
IfcReinforcingMesh = 817,
|
|
2579
|
+
IfcReinforcingMeshType = 818,
|
|
2580
|
+
IfcReinforcingMeshTypeEnum = 819,
|
|
2581
|
+
IfcRelAggregates = 820,
|
|
2582
|
+
IfcRelAssigns = 821,
|
|
2583
|
+
IfcRelAssignsToActor = 822,
|
|
2584
|
+
IfcRelAssignsToControl = 823,
|
|
2585
|
+
IfcRelAssignsToGroup = 824,
|
|
2586
|
+
IfcRelAssignsToGroupByFactor = 825,
|
|
2587
|
+
IfcRelAssignsToProcess = 826,
|
|
2588
|
+
IfcRelAssignsToProduct = 827,
|
|
2589
|
+
IfcRelAssignsToResource = 828,
|
|
2590
|
+
IfcRelAssociates = 829,
|
|
2591
|
+
IfcRelAssociatesApproval = 830,
|
|
2592
|
+
IfcRelAssociatesClassification = 831,
|
|
2593
|
+
IfcRelAssociatesConstraint = 832,
|
|
2594
|
+
IfcRelAssociatesDocument = 833,
|
|
2595
|
+
IfcRelAssociatesLibrary = 834,
|
|
2596
|
+
IfcRelAssociatesMaterial = 835,
|
|
2597
|
+
IfcRelationship = 836,
|
|
2598
|
+
IfcRelConnects = 837,
|
|
2599
|
+
IfcRelConnectsElements = 838,
|
|
2600
|
+
IfcRelConnectsPathElements = 839,
|
|
2601
|
+
IfcRelConnectsPorts = 840,
|
|
2602
|
+
IfcRelConnectsPortToElement = 841,
|
|
2603
|
+
IfcRelConnectsStructuralActivity = 842,
|
|
2604
|
+
IfcRelConnectsStructuralMember = 843,
|
|
2605
|
+
IfcRelConnectsWithEccentricity = 844,
|
|
2606
|
+
IfcRelConnectsWithRealizingElements = 845,
|
|
2607
|
+
IfcRelContainedInSpatialStructure = 846,
|
|
2608
|
+
IfcRelCoversBldgElements = 847,
|
|
2609
|
+
IfcRelCoversSpaces = 848,
|
|
2610
|
+
IfcRelDeclares = 849,
|
|
2611
|
+
IfcRelDecomposes = 850,
|
|
2612
|
+
IfcRelDefines = 851,
|
|
2613
|
+
IfcRelDefinesByObject = 852,
|
|
2614
|
+
IfcRelDefinesByProperties = 853,
|
|
2615
|
+
IfcRelDefinesByTemplate = 854,
|
|
2616
|
+
IfcRelDefinesByType = 855,
|
|
2617
|
+
IfcRelFillsElement = 856,
|
|
2618
|
+
IfcRelFlowControlElements = 857,
|
|
2619
|
+
IfcRelInterferesElements = 858,
|
|
2620
|
+
IfcRelNests = 859,
|
|
2621
|
+
IfcRelProjectsElement = 860,
|
|
2622
|
+
IfcRelReferencedInSpatialStructure = 861,
|
|
2623
|
+
IfcRelSequence = 862,
|
|
2624
|
+
IfcRelServicesBuildings = 863,
|
|
2625
|
+
IfcRelSpaceBoundary = 864,
|
|
2626
|
+
IfcRelSpaceBoundary1stLevel = 865,
|
|
2627
|
+
IfcRelSpaceBoundary2ndLevel = 866,
|
|
2628
|
+
IfcRelVoidsElement = 867,
|
|
2629
|
+
IfcReparametrisedCompositeCurveSegment = 868,
|
|
2630
|
+
IfcRepresentation = 869,
|
|
2631
|
+
IfcRepresentationContext = 870,
|
|
2632
|
+
IfcRepresentationItem = 871,
|
|
2633
|
+
IfcRepresentationMap = 872,
|
|
2634
|
+
IfcResource = 873,
|
|
2635
|
+
IfcResourceApprovalRelationship = 874,
|
|
2636
|
+
IfcResourceConstraintRelationship = 875,
|
|
2637
|
+
IfcResourceLevelRelationship = 876,
|
|
2638
|
+
IfcResourceObjectSelect = 877,
|
|
2639
|
+
IfcResourceSelect = 878,
|
|
2640
|
+
IfcResourceTime = 879,
|
|
2641
|
+
IfcRevolvedAreaSolid = 880,
|
|
2642
|
+
IfcRevolvedAreaSolidTapered = 881,
|
|
2643
|
+
IfcRightCircularCone = 882,
|
|
2644
|
+
IfcRightCircularCylinder = 883,
|
|
2645
|
+
IfcRoleEnum = 884,
|
|
2646
|
+
IfcRoof = 885,
|
|
2647
|
+
IfcRoofType = 886,
|
|
2648
|
+
IfcRoofTypeEnum = 887,
|
|
2649
|
+
IfcRoot = 888,
|
|
2650
|
+
IfcRotationalFrequencyMeasure = 889,
|
|
2651
|
+
IfcRotationalMassMeasure = 890,
|
|
2652
|
+
IfcRotationalStiffnessMeasure = 891,
|
|
2653
|
+
IfcRotationalStiffnessSelect = 892,
|
|
2654
|
+
IfcRoundedRectangleProfileDef = 893,
|
|
2655
|
+
IfcSanitaryTerminal = 894,
|
|
2656
|
+
IfcSanitaryTerminalType = 895,
|
|
2657
|
+
IfcSanitaryTerminalTypeEnum = 896,
|
|
2658
|
+
IfcSchedulingTime = 897,
|
|
2659
|
+
IfcSeamCurve = 898,
|
|
2660
|
+
IfcSectionalAreaIntegralMeasure = 899,
|
|
2661
|
+
IfcSectionedSolid = 900,
|
|
2662
|
+
IfcSectionedSolidHorizontal = 901,
|
|
2663
|
+
IfcSectionedSpine = 902,
|
|
2664
|
+
IfcSectionModulusMeasure = 903,
|
|
2665
|
+
IfcSectionProperties = 904,
|
|
2666
|
+
IfcSectionReinforcementProperties = 905,
|
|
2667
|
+
IfcSectionTypeEnum = 906,
|
|
2668
|
+
IfcSegmentIndexSelect = 907,
|
|
2669
|
+
IfcSensor = 908,
|
|
2670
|
+
IfcSensorType = 909,
|
|
2671
|
+
IfcSensorTypeEnum = 910,
|
|
2672
|
+
IfcSequenceEnum = 911,
|
|
2673
|
+
IfcShadingDevice = 912,
|
|
2674
|
+
IfcShadingDeviceType = 913,
|
|
2675
|
+
IfcShadingDeviceTypeEnum = 914,
|
|
2676
|
+
IfcShapeAspect = 915,
|
|
2677
|
+
IfcShapeModel = 916,
|
|
2678
|
+
IfcShapeRepresentation = 917,
|
|
2679
|
+
IfcShearModulusMeasure = 918,
|
|
2680
|
+
IfcShell = 919,
|
|
2681
|
+
IfcShellBasedSurfaceModel = 920,
|
|
2682
|
+
IfcSimpleProperty = 921,
|
|
2683
|
+
IfcSimplePropertyTemplate = 922,
|
|
2684
|
+
IfcSimplePropertyTemplateTypeEnum = 923,
|
|
2685
|
+
IfcSimpleValue = 924,
|
|
2686
|
+
IfcSIPrefix = 925,
|
|
2687
|
+
IfcSite = 926,
|
|
2688
|
+
IfcSIUnit = 927,
|
|
2689
|
+
IfcSIUnitName = 928,
|
|
2690
|
+
IfcSizeSelect = 929,
|
|
2691
|
+
IfcSlab = 930,
|
|
2692
|
+
IfcSlabElementedCase = 931,
|
|
2693
|
+
IfcSlabStandardCase = 932,
|
|
2694
|
+
IfcSlabType = 933,
|
|
2695
|
+
IfcSlabTypeEnum = 934,
|
|
2696
|
+
IfcSlippageConnectionCondition = 935,
|
|
2697
|
+
IfcSolarDevice = 936,
|
|
2698
|
+
IfcSolarDeviceType = 937,
|
|
2699
|
+
IfcSolarDeviceTypeEnum = 938,
|
|
2700
|
+
IfcSolidAngleMeasure = 939,
|
|
2701
|
+
IfcSolidModel = 940,
|
|
2702
|
+
IfcSolidOrShell = 941,
|
|
2703
|
+
IfcSoundPowerLevelMeasure = 942,
|
|
2704
|
+
IfcSoundPowerMeasure = 943,
|
|
2705
|
+
IfcSoundPressureLevelMeasure = 944,
|
|
2706
|
+
IfcSoundPressureMeasure = 945,
|
|
2707
|
+
IfcSpace = 946,
|
|
2708
|
+
IfcSpaceBoundarySelect = 947,
|
|
2709
|
+
IfcSpaceHeater = 948,
|
|
2710
|
+
IfcSpaceHeaterType = 949,
|
|
2711
|
+
IfcSpaceHeaterTypeEnum = 950,
|
|
2712
|
+
IfcSpaceType = 951,
|
|
2713
|
+
IfcSpaceTypeEnum = 952,
|
|
2714
|
+
IfcSpatialElement = 953,
|
|
2715
|
+
IfcSpatialElementType = 954,
|
|
2716
|
+
IfcSpatialStructureElement = 955,
|
|
2717
|
+
IfcSpatialStructureElementType = 956,
|
|
2718
|
+
IfcSpatialZone = 957,
|
|
2719
|
+
IfcSpatialZoneType = 958,
|
|
2720
|
+
IfcSpatialZoneTypeEnum = 959,
|
|
2721
|
+
IfcSpecificHeatCapacityMeasure = 960,
|
|
2722
|
+
IfcSpecularExponent = 961,
|
|
2723
|
+
IfcSpecularHighlightSelect = 962,
|
|
2724
|
+
IfcSpecularRoughness = 963,
|
|
2725
|
+
IfcSphere = 964,
|
|
2726
|
+
IfcSphericalSurface = 965,
|
|
2727
|
+
IfcStackTerminal = 966,
|
|
2728
|
+
IfcStackTerminalType = 967,
|
|
2729
|
+
IfcStackTerminalTypeEnum = 968,
|
|
2730
|
+
IfcStair = 969,
|
|
2731
|
+
IfcStairFlight = 970,
|
|
2732
|
+
IfcStairFlightType = 971,
|
|
2733
|
+
IfcStairFlightTypeEnum = 972,
|
|
2734
|
+
IfcStairType = 973,
|
|
2735
|
+
IfcStairTypeEnum = 974,
|
|
2736
|
+
IfcStateEnum = 975,
|
|
2737
|
+
IfcStrippedOptional = 976,
|
|
2738
|
+
IfcStructuralAction = 977,
|
|
2739
|
+
IfcStructuralActivity = 978,
|
|
2740
|
+
IfcStructuralActivityAssignmentSelect = 979,
|
|
2741
|
+
IfcStructuralAnalysisModel = 980,
|
|
2742
|
+
IfcStructuralConnection = 981,
|
|
2743
|
+
IfcStructuralConnectionCondition = 982,
|
|
2744
|
+
IfcStructuralCurveAction = 983,
|
|
2745
|
+
IfcStructuralCurveActivityTypeEnum = 984,
|
|
2746
|
+
IfcStructuralCurveConnection = 985,
|
|
2747
|
+
IfcStructuralCurveMember = 986,
|
|
2748
|
+
IfcStructuralCurveMemberTypeEnum = 987,
|
|
2749
|
+
IfcStructuralCurveMemberVarying = 988,
|
|
2750
|
+
IfcStructuralCurveReaction = 989,
|
|
2751
|
+
IfcStructuralItem = 990,
|
|
2752
|
+
IfcStructuralLinearAction = 991,
|
|
2753
|
+
IfcStructuralLoad = 992,
|
|
2754
|
+
IfcStructuralLoadCase = 993,
|
|
2755
|
+
IfcStructuralLoadConfiguration = 994,
|
|
2756
|
+
IfcStructuralLoadGroup = 995,
|
|
2757
|
+
IfcStructuralLoadLinearForce = 996,
|
|
2758
|
+
IfcStructuralLoadOrResult = 997,
|
|
2759
|
+
IfcStructuralLoadPlanarForce = 998,
|
|
2760
|
+
IfcStructuralLoadSingleDisplacement = 999,
|
|
2761
|
+
IfcStructuralLoadSingleDisplacementDistortion = 1000,
|
|
2762
|
+
IfcStructuralLoadSingleForce = 1001,
|
|
2763
|
+
IfcStructuralLoadSingleForceWarping = 1002,
|
|
2764
|
+
IfcStructuralLoadStatic = 1003,
|
|
2765
|
+
IfcStructuralLoadTemperature = 1004,
|
|
2766
|
+
IfcStructuralMember = 1005,
|
|
2767
|
+
IfcStructuralPlanarAction = 1006,
|
|
2768
|
+
IfcStructuralPointAction = 1007,
|
|
2769
|
+
IfcStructuralPointConnection = 1008,
|
|
2770
|
+
IfcStructuralPointReaction = 1009,
|
|
2771
|
+
IfcStructuralReaction = 1010,
|
|
2772
|
+
IfcStructuralResultGroup = 1011,
|
|
2773
|
+
IfcStructuralSurfaceAction = 1012,
|
|
2774
|
+
IfcStructuralSurfaceActivityTypeEnum = 1013,
|
|
2775
|
+
IfcStructuralSurfaceConnection = 1014,
|
|
2776
|
+
IfcStructuralSurfaceMember = 1015,
|
|
2777
|
+
IfcStructuralSurfaceMemberTypeEnum = 1016,
|
|
2778
|
+
IfcStructuralSurfaceMemberVarying = 1017,
|
|
2779
|
+
IfcStructuralSurfaceReaction = 1018,
|
|
2780
|
+
IfcStyleAssignmentSelect = 1019,
|
|
2781
|
+
IfcStyledItem = 1020,
|
|
2782
|
+
IfcStyledRepresentation = 1021,
|
|
2783
|
+
IfcStyleModel = 1022,
|
|
2784
|
+
IfcSubContractResource = 1023,
|
|
2785
|
+
IfcSubContractResourceType = 1024,
|
|
2786
|
+
IfcSubContractResourceTypeEnum = 1025,
|
|
2787
|
+
IfcSubedge = 1026,
|
|
2788
|
+
IfcSurface = 1027,
|
|
2789
|
+
IfcSurfaceCurve = 1028,
|
|
2790
|
+
IfcSurfaceCurveSweptAreaSolid = 1029,
|
|
2791
|
+
IfcSurfaceFeature = 1030,
|
|
2792
|
+
IfcSurfaceFeatureTypeEnum = 1031,
|
|
2793
|
+
IfcSurfaceOfLinearExtrusion = 1032,
|
|
2794
|
+
IfcSurfaceOfRevolution = 1033,
|
|
2795
|
+
IfcSurfaceOrFaceSurface = 1034,
|
|
2796
|
+
IfcSurfaceReinforcementArea = 1035,
|
|
2797
|
+
IfcSurfaceSide = 1036,
|
|
2798
|
+
IfcSurfaceStyle = 1037,
|
|
2799
|
+
IfcSurfaceStyleElementSelect = 1038,
|
|
2800
|
+
IfcSurfaceStyleLighting = 1039,
|
|
2801
|
+
IfcSurfaceStyleRefraction = 1040,
|
|
2802
|
+
IfcSurfaceStyleRendering = 1041,
|
|
2803
|
+
IfcSurfaceStyleShading = 1042,
|
|
2804
|
+
IfcSurfaceStyleWithTextures = 1043,
|
|
2805
|
+
IfcSurfaceTexture = 1044,
|
|
2806
|
+
IfcSweptAreaSolid = 1045,
|
|
2807
|
+
IfcSweptDiskSolid = 1046,
|
|
2808
|
+
IfcSweptDiskSolidPolygonal = 1047,
|
|
2809
|
+
IfcSweptSurface = 1048,
|
|
2810
|
+
IfcSwitchingDevice = 1049,
|
|
2811
|
+
IfcSwitchingDeviceType = 1050,
|
|
2812
|
+
IfcSwitchingDeviceTypeEnum = 1051,
|
|
2813
|
+
IfcSystem = 1052,
|
|
2814
|
+
IfcSystemFurnitureElement = 1053,
|
|
2815
|
+
IfcSystemFurnitureElementType = 1054,
|
|
2816
|
+
IfcSystemFurnitureElementTypeEnum = 1055,
|
|
2817
|
+
IfcTable = 1056,
|
|
2818
|
+
IfcTableColumn = 1057,
|
|
2819
|
+
IfcTableRow = 1058,
|
|
2820
|
+
IfcTank = 1059,
|
|
2821
|
+
IfcTankType = 1060,
|
|
2822
|
+
IfcTankTypeEnum = 1061,
|
|
2823
|
+
IfcTask = 1062,
|
|
2824
|
+
IfcTaskDurationEnum = 1063,
|
|
2825
|
+
IfcTaskTime = 1064,
|
|
2826
|
+
IfcTaskTimeRecurring = 1065,
|
|
2827
|
+
IfcTaskType = 1066,
|
|
2828
|
+
IfcTaskTypeEnum = 1067,
|
|
2829
|
+
IfcTelecomAddress = 1068,
|
|
2830
|
+
IfcTemperatureGradientMeasure = 1069,
|
|
2831
|
+
IfcTemperatureRateOfChangeMeasure = 1070,
|
|
2832
|
+
IfcTendon = 1071,
|
|
2833
|
+
IfcTendonAnchor = 1072,
|
|
2834
|
+
IfcTendonAnchorType = 1073,
|
|
2835
|
+
IfcTendonAnchorTypeEnum = 1074,
|
|
2836
|
+
IfcTendonType = 1075,
|
|
2837
|
+
IfcTendonTypeEnum = 1076,
|
|
2838
|
+
IfcTessellatedFaceSet = 1077,
|
|
2839
|
+
IfcTessellatedItem = 1078,
|
|
2840
|
+
IfcText = 1079,
|
|
2841
|
+
IfcTextAlignment = 1080,
|
|
2842
|
+
IfcTextDecoration = 1081,
|
|
2843
|
+
IfcTextFontName = 1082,
|
|
2844
|
+
IfcTextFontSelect = 1083,
|
|
2845
|
+
IfcTextLiteral = 1084,
|
|
2846
|
+
IfcTextLiteralWithExtent = 1085,
|
|
2847
|
+
IfcTextPath = 1086,
|
|
2848
|
+
IfcTextStyle = 1087,
|
|
2849
|
+
IfcTextStyleFontModel = 1088,
|
|
2850
|
+
IfcTextStyleForDefinedFont = 1089,
|
|
2851
|
+
IfcTextStyleTextModel = 1090,
|
|
2852
|
+
IfcTextTransformation = 1091,
|
|
2853
|
+
IfcTextureCoordinate = 1092,
|
|
2854
|
+
IfcTextureCoordinateGenerator = 1093,
|
|
2855
|
+
IfcTextureMap = 1094,
|
|
2856
|
+
IfcTextureVertex = 1095,
|
|
2857
|
+
IfcTextureVertexList = 1096,
|
|
2858
|
+
IfcThermalAdmittanceMeasure = 1097,
|
|
2859
|
+
IfcThermalConductivityMeasure = 1098,
|
|
2860
|
+
IfcThermalExpansionCoefficientMeasure = 1099,
|
|
2861
|
+
IfcThermalResistanceMeasure = 1100,
|
|
2862
|
+
IfcThermalTransmittanceMeasure = 1101,
|
|
2863
|
+
IfcThermodynamicTemperatureMeasure = 1102,
|
|
2864
|
+
IfcTime = 1103,
|
|
2865
|
+
IfcTimeMeasure = 1104,
|
|
2866
|
+
IfcTimeOrRatioSelect = 1105,
|
|
2867
|
+
IfcTimePeriod = 1106,
|
|
2868
|
+
IfcTimeSeries = 1107,
|
|
2869
|
+
IfcTimeSeriesDataTypeEnum = 1108,
|
|
2870
|
+
IfcTimeSeriesValue = 1109,
|
|
2871
|
+
IfcTimeStamp = 1110,
|
|
2872
|
+
IfcTopologicalRepresentationItem = 1111,
|
|
2873
|
+
IfcTopologyRepresentation = 1112,
|
|
2874
|
+
IfcToroidalSurface = 1113,
|
|
2875
|
+
IfcTorqueMeasure = 1114,
|
|
2876
|
+
IfcTransformer = 1115,
|
|
2877
|
+
IfcTransformerType = 1116,
|
|
2878
|
+
IfcTransformerTypeEnum = 1117,
|
|
2879
|
+
IfcTransitionCode = 1118,
|
|
2880
|
+
IfcTransitionCurveSegment2D = 1119,
|
|
2881
|
+
IfcTransitionCurveType = 1120,
|
|
2882
|
+
IfcTranslationalStiffnessSelect = 1121,
|
|
2883
|
+
IfcTransportElement = 1122,
|
|
2884
|
+
IfcTransportElementType = 1123,
|
|
2885
|
+
IfcTransportElementTypeEnum = 1124,
|
|
2886
|
+
IfcTrapeziumProfileDef = 1125,
|
|
2887
|
+
IfcTriangulatedFaceSet = 1126,
|
|
2888
|
+
IfcTriangulatedIrregularNetwork = 1127,
|
|
2889
|
+
IfcTrimmedCurve = 1128,
|
|
2890
|
+
IfcTrimmingPreference = 1129,
|
|
2891
|
+
IfcTrimmingSelect = 1130,
|
|
2892
|
+
IfcTShapeProfileDef = 1131,
|
|
2893
|
+
IfcTubeBundle = 1132,
|
|
2894
|
+
IfcTubeBundleType = 1133,
|
|
2895
|
+
IfcTubeBundleTypeEnum = 1134,
|
|
2896
|
+
IfcTypeObject = 1135,
|
|
2897
|
+
IfcTypeProcess = 1136,
|
|
2898
|
+
IfcTypeProduct = 1137,
|
|
2899
|
+
IfcTypeResource = 1138,
|
|
2900
|
+
IfcUnit = 1139,
|
|
2901
|
+
IfcUnitaryControlElement = 1140,
|
|
2902
|
+
IfcUnitaryControlElementType = 1141,
|
|
2903
|
+
IfcUnitaryControlElementTypeEnum = 1142,
|
|
2904
|
+
IfcUnitaryEquipment = 1143,
|
|
2905
|
+
IfcUnitaryEquipmentType = 1144,
|
|
2906
|
+
IfcUnitaryEquipmentTypeEnum = 1145,
|
|
2907
|
+
IfcUnitAssignment = 1146,
|
|
2908
|
+
IfcUnitEnum = 1147,
|
|
2909
|
+
IfcURIReference = 1148,
|
|
2910
|
+
IfcUShapeProfileDef = 1149,
|
|
2911
|
+
IfcValue = 1150,
|
|
2912
|
+
IfcValve = 1151,
|
|
2913
|
+
IfcValveType = 1152,
|
|
2914
|
+
IfcValveTypeEnum = 1153,
|
|
2915
|
+
IfcVaporPermeabilityMeasure = 1154,
|
|
2916
|
+
IfcVector = 1155,
|
|
2917
|
+
IfcVectorOrDirection = 1156,
|
|
2918
|
+
IfcVertex = 1157,
|
|
2919
|
+
IfcVertexLoop = 1158,
|
|
2920
|
+
IfcVertexPoint = 1159,
|
|
2921
|
+
IfcVibrationIsolator = 1160,
|
|
2922
|
+
IfcVibrationIsolatorType = 1161,
|
|
2923
|
+
IfcVibrationIsolatorTypeEnum = 1162,
|
|
2924
|
+
IfcVirtualElement = 1163,
|
|
2925
|
+
IfcVirtualGridIntersection = 1164,
|
|
2926
|
+
IfcVoidingFeature = 1165,
|
|
2927
|
+
IfcVoidingFeatureTypeEnum = 1166,
|
|
2928
|
+
IfcVolumeMeasure = 1167,
|
|
2929
|
+
IfcVolumetricFlowRateMeasure = 1168,
|
|
2930
|
+
IfcWall = 1169,
|
|
2931
|
+
IfcWallElementedCase = 1170,
|
|
2932
|
+
IfcWallStandardCase = 1171,
|
|
2933
|
+
IfcWallType = 1172,
|
|
2934
|
+
IfcWallTypeEnum = 1173,
|
|
2935
|
+
IfcWarpingConstantMeasure = 1174,
|
|
2936
|
+
IfcWarpingMomentMeasure = 1175,
|
|
2937
|
+
IfcWarpingStiffnessSelect = 1176,
|
|
2938
|
+
IfcWasteTerminal = 1177,
|
|
2939
|
+
IfcWasteTerminalType = 1178,
|
|
2940
|
+
IfcWasteTerminalTypeEnum = 1179,
|
|
2941
|
+
IfcWindow = 1180,
|
|
2942
|
+
IfcWindowLiningProperties = 1181,
|
|
2943
|
+
IfcWindowPanelOperationEnum = 1182,
|
|
2944
|
+
IfcWindowPanelPositionEnum = 1183,
|
|
2945
|
+
IfcWindowPanelProperties = 1184,
|
|
2946
|
+
IfcWindowStandardCase = 1185,
|
|
2947
|
+
IfcWindowStyle = 1186,
|
|
2948
|
+
IfcWindowStyleConstructionEnum = 1187,
|
|
2949
|
+
IfcWindowStyleOperationEnum = 1188,
|
|
2950
|
+
IfcWindowType = 1189,
|
|
2951
|
+
IfcWindowTypeEnum = 1190,
|
|
2952
|
+
IfcWindowTypePartitioningEnum = 1191,
|
|
2953
|
+
IfcWorkCalendar = 1192,
|
|
2954
|
+
IfcWorkCalendarTypeEnum = 1193,
|
|
2955
|
+
IfcWorkControl = 1194,
|
|
2956
|
+
IfcWorkPlan = 1195,
|
|
2957
|
+
IfcWorkPlanTypeEnum = 1196,
|
|
2958
|
+
IfcWorkSchedule = 1197,
|
|
2959
|
+
IfcWorkScheduleTypeEnum = 1198,
|
|
2960
|
+
IfcWorkTime = 1199,
|
|
2961
|
+
IfcZone = 1200,
|
|
2962
|
+
IfcZShapeProfileDef = 1201,
|
|
2963
|
+
UNDEFINED = 1202,
|
|
2964
|
+
Other3DModel = 1203
|
|
2965
|
+
}
|
|
2966
|
+
export class ModelElementPropertySet {
|
|
2967
|
+
name: string;
|
|
2968
|
+
properties: ModelElementProperty[];
|
|
2969
|
+
type: IfcType;
|
|
2882
2970
|
}
|
|
2883
|
-
export class
|
|
2884
|
-
|
|
2885
|
-
|
|
2886
|
-
|
|
2887
|
-
raycast(raycaster: THREE.Raycaster, intersects: THREE.Intersection<THREE.Object3D<THREE.Event>>[]): void;
|
|
2888
|
-
dispose(): void;
|
|
2971
|
+
export class ModelElementProperty {
|
|
2972
|
+
name: string;
|
|
2973
|
+
unit: number;
|
|
2974
|
+
value: ModelElementPropertyValue;
|
|
2889
2975
|
}
|
|
2890
|
-
export
|
|
2891
|
-
|
|
2892
|
-
|
|
2893
|
-
|
|
2894
|
-
|
|
2895
|
-
|
|
2896
|
-
|
|
2897
|
-
|
|
2898
|
-
|
|
2899
|
-
|
|
2900
|
-
|
|
2976
|
+
export class ModelElementPropertyValue {
|
|
2977
|
+
str_value?: string;
|
|
2978
|
+
int_value?: number;
|
|
2979
|
+
double_value?: number;
|
|
2980
|
+
date_value?: bigint;
|
|
2981
|
+
array_value: Array<string>;
|
|
2982
|
+
decimal_value?: number;
|
|
2983
|
+
guid_value?: string;
|
|
2984
|
+
array_int_value: Array<number>;
|
|
2985
|
+
bool_value?: boolean;
|
|
2986
|
+
get value(): unknown;
|
|
2901
2987
|
}
|
|
2902
|
-
|
|
2903
|
-
|
|
2904
|
-
|
|
2905
|
-
|
|
2906
|
-
|
|
2907
|
-
|
|
2908
|
-
|
|
2909
|
-
|
|
2910
|
-
|
|
2911
|
-
|
|
2912
|
-
|
|
2913
|
-
|
|
2914
|
-
|
|
2915
|
-
|
|
2916
|
-
|
|
2917
|
-
|
|
2918
|
-
|
|
2919
|
-
|
|
2920
|
-
|
|
2921
|
-
|
|
2922
|
-
|
|
2923
|
-
|
|
2924
|
-
* @default 2
|
|
2925
|
-
*/
|
|
2926
|
-
get borderThickness(): number;
|
|
2927
|
-
set borderThickness(value: number);
|
|
2928
|
-
/**
|
|
2929
|
-
* @default new Color(0, 0, 0, 1.0)
|
|
2930
|
-
*/
|
|
2931
|
-
get borderColor(): Color;
|
|
2932
|
-
set borderColor(value: Color);
|
|
2933
|
-
/**
|
|
2934
|
-
* @default 1
|
|
2935
|
-
*/
|
|
2936
|
-
get borderRadius(): number;
|
|
2937
|
-
set borderRadius(value: number);
|
|
2938
|
-
/**
|
|
2939
|
-
* @default new Color(1.0, 1.0, 1.0, 1.0)
|
|
2940
|
-
*/
|
|
2941
|
-
get backgroundColor(): Color;
|
|
2942
|
-
set backgroundColor(value: Color);
|
|
2943
|
-
/**
|
|
2944
|
-
* @default new Color(0, 0, 0, 1.0)
|
|
2945
|
-
*/
|
|
2946
|
-
get textColor(): Color;
|
|
2947
|
-
set textColor(value: Color);
|
|
2948
|
-
/**
|
|
2949
|
-
* Label text padding: left, top, right, bottom
|
|
2950
|
-
* @default [0, 0, 0, 0]
|
|
2951
|
-
*/
|
|
2952
|
-
get textPadding(): THREE.Vector4Tuple;
|
|
2953
|
-
set textPadding(value: THREE.Vector4Tuple);
|
|
2954
|
-
dispose(): void;
|
|
2988
|
+
|
|
2989
|
+
export class SettingsNames {
|
|
2990
|
+
static TELEMETRY: string;
|
|
2991
|
+
static AXES: string;
|
|
2992
|
+
static CAMERA_ANIMATION: string;
|
|
2993
|
+
static HIDE_SMALL_ELEMENTS_WHEN_NAVIGATING: string;
|
|
2994
|
+
static GLOBAL_LIGHT: string;
|
|
2995
|
+
static LIGHT_SOURCE: string;
|
|
2996
|
+
static ANTI_ALIASING: string;
|
|
2997
|
+
static HIDE_SMALL_ELEMENTS_MOVING: string;
|
|
2998
|
+
static SMALL_ELEMENT_SIZE: string;
|
|
2999
|
+
static LABEL_LINE_LENGTH: string;
|
|
3000
|
+
static HIDE_EDGES_WHEN_NAVIGATING: string;
|
|
3001
|
+
static DISPLAY_MODE: string;
|
|
3002
|
+
static CAMERA_MODE: string;
|
|
3003
|
+
static NAVIGATION_CUBE: string;
|
|
3004
|
+
static DESIRED_FRAMERATE: string;
|
|
3005
|
+
static MANAGE_TIME: string;
|
|
3006
|
+
static HOVER_MESHES: string;
|
|
3007
|
+
static HOVER_EDGES: string;
|
|
3008
|
+
static SELECT_MESHES: string;
|
|
3009
|
+
static SELECT_EDGES: string;
|
|
2955
3010
|
}
|
|
2956
|
-
export
|
|
2957
|
-
|
|
2958
|
-
|
|
3011
|
+
export enum ValueType {
|
|
3012
|
+
STRING = 0,
|
|
3013
|
+
NUMBER = 1,
|
|
3014
|
+
ENUM = 2,
|
|
3015
|
+
BOOL = 3
|
|
2959
3016
|
}
|
|
2960
|
-
export class
|
|
3017
|
+
export class Viewer3DConfiguration extends ViewerConfiguration {
|
|
3018
|
+
render: ViewerSettings;
|
|
2961
3019
|
|
|
2962
|
-
constructor(
|
|
2963
|
-
/**
|
|
2964
|
-
* @default true
|
|
2965
|
-
*/
|
|
2966
|
-
get discreteClipping(): boolean;
|
|
2967
|
-
set discreteClipping(value: boolean);
|
|
2968
|
-
get resolution(): THREE.Vector2;
|
|
2969
|
-
/**
|
|
2970
|
-
* @default true
|
|
2971
|
-
*/
|
|
2972
|
-
sizeAttenuation: boolean;
|
|
2973
|
-
copy(source: MeshPointMaterial): this;
|
|
2974
|
-
protected refreshUniforms(uniforms: {
|
|
2975
|
-
[uniform: string]: THREE.IUniform;
|
|
2976
|
-
}, material: CustomMaterial, renderer: THREE.WebGLRenderer): void;
|
|
2977
|
-
}
|
|
2978
|
-
export interface MeshPointParamter {
|
|
2979
|
-
point?: THREE.Vector3;
|
|
2980
|
-
color?: Color;
|
|
2981
|
-
size?: number;
|
|
3020
|
+
constructor(appearance?: ViewerSettings, render?: ViewerSettings);
|
|
2982
3021
|
}
|
|
2983
|
-
export
|
|
2984
|
-
|
|
2985
|
-
|
|
2986
|
-
|
|
2987
|
-
|
|
2988
|
-
|
|
2989
|
-
|
|
2990
|
-
|
|
2991
|
-
color: Color;
|
|
2992
|
-
/**
|
|
2993
|
-
* @default 1
|
|
2994
|
-
*/
|
|
2995
|
-
pointSize: number;
|
|
2996
|
-
/**
|
|
2997
|
-
* @default new THREE.Vector3(0, 0, 0)
|
|
2998
|
-
*/
|
|
2999
|
-
point: THREE.Vector3;
|
|
3000
|
-
addPoint(pointParameter?: MeshPointParamter): number;
|
|
3001
|
-
updatePoint(index: number, pointParameter: MeshPointParamter): void;
|
|
3002
|
-
removePoint(index: number): this;
|
|
3003
|
-
updateAttributes(): void;
|
|
3004
|
-
dispose(): void;
|
|
3005
|
-
raycast(raycaster: THREE.Raycaster, intersects: THREE.Intersection<THREE.Object3D<THREE.Event>>[]): void;
|
|
3022
|
+
export const defaultViewer3DSettings: ViewerSettings;
|
|
3023
|
+
export class ModelLoadingOptions {
|
|
3024
|
+
guid: string;
|
|
3025
|
+
isConsolidatedModel?: boolean;
|
|
3026
|
+
placement?: THREE.Matrix4Tuple | number[];
|
|
3027
|
+
scaling?: number;
|
|
3028
|
+
origin?: Point3;
|
|
3029
|
+
hideLoadingSpinner?: boolean;
|
|
3006
3030
|
}
|
|
3007
3031
|
export interface DeleteEventListener extends EventListener {
|
|
3008
3032
|
(evt: DeleteEvent): void;
|
|
@@ -3022,7 +3046,6 @@ export class DeletionManager {
|
|
|
3022
3046
|
*/
|
|
3023
3047
|
export class Model {
|
|
3024
3048
|
readonly eventDispatcher: IEventsDispatcher;
|
|
3025
|
-
readonly cancellationToken?: CancellationToken;
|
|
3026
3049
|
/**
|
|
3027
3050
|
* Returns all model parts loaded in the viewer.
|
|
3028
3051
|
* @returns {ModelPart[]} - An array of visible and hidden model parts
|
|
@@ -3241,13 +3264,6 @@ export interface INavigation {
|
|
|
3241
3264
|
*/
|
|
3242
3265
|
resetPivotPoint(): void;
|
|
3243
3266
|
}
|
|
3244
|
-
export class ModelLoadingOptions {
|
|
3245
|
-
guid: string;
|
|
3246
|
-
isConsolidatedModel?: boolean;
|
|
3247
|
-
placement?: THREE.Matrix4Tuple | number[];
|
|
3248
|
-
scaling?: number;
|
|
3249
|
-
hideLoadingSpinner?: boolean;
|
|
3250
|
-
}
|
|
3251
3267
|
export let ViewerInstance: Viewer3D;
|
|
3252
3268
|
export class Viewer3D extends ViewerBase {
|
|
3253
3269
|
protected _configuration: Viewer3DConfiguration;
|
|
@@ -3273,7 +3289,7 @@ export class Viewer3D extends ViewerBase {
|
|
|
3273
3289
|
* @param onErrorCallback - Deprecated
|
|
3274
3290
|
* @returns
|
|
3275
3291
|
*/
|
|
3276
|
-
loadModelPart(data: ArrayBuffer | string, options: ModelLoadingOptions, onSuccessCallback?: SuccessCallback, onErrorCallback?: ErrorCallback): Promise<void>;
|
|
3292
|
+
loadModelPart(data: ArrayBuffer | string | Blob, options: ModelLoadingOptions, onSuccessCallback?: SuccessCallback, onErrorCallback?: ErrorCallback): Promise<void>;
|
|
3277
3293
|
/**
|
|
3278
3294
|
* Updates the model part data file
|
|
3279
3295
|
* @param data
|
|
@@ -3282,7 +3298,7 @@ export class Viewer3D extends ViewerBase {
|
|
|
3282
3298
|
* @param onErrorCallback - Deprecated
|
|
3283
3299
|
* @returns
|
|
3284
3300
|
*/
|
|
3285
|
-
updateModelPart(data: ArrayBuffer | string, options: ModelLoadingOptions, onSuccessCallback?: SuccessCallback, onErrorCallback?: ErrorCallback): Promise<void>;
|
|
3301
|
+
updateModelPart(data: ArrayBuffer | string | Blob, options: ModelLoadingOptions, onSuccessCallback?: SuccessCallback, onErrorCallback?: ErrorCallback): Promise<void>;
|
|
3286
3302
|
/**
|
|
3287
3303
|
* Loads cloud points as new model part to the viewer
|
|
3288
3304
|
* @param data
|
|
@@ -3291,7 +3307,14 @@ export class Viewer3D extends ViewerBase {
|
|
|
3291
3307
|
* @param onErrorCallback - Deprecated
|
|
3292
3308
|
* @returns
|
|
3293
3309
|
*/
|
|
3294
|
-
loadCloudPart(data: ArrayBuffer | string, options: ModelLoadingOptions, onSuccessCallback?: SuccessCallback, onErrorCallback?: ErrorCallback): Promise<void>;
|
|
3310
|
+
loadCloudPart(data: ArrayBuffer | string | Blob, options: ModelLoadingOptions, onSuccessCallback?: SuccessCallback, onErrorCallback?: ErrorCallback): Promise<void>;
|
|
3311
|
+
/**
|
|
3312
|
+
* Update point cloud
|
|
3313
|
+
* @param data
|
|
3314
|
+
* @param options
|
|
3315
|
+
* @returns
|
|
3316
|
+
*/
|
|
3317
|
+
updateCloudPart(data: ArrayBuffer | string | Blob, options: ModelLoadingOptions): Promise<void>;
|
|
3295
3318
|
/**
|
|
3296
3319
|
* Unloads model part from the viewer
|
|
3297
3320
|
* @param modelPart - model part id or model part instance
|
|
@@ -3317,7 +3340,7 @@ export class Viewer3D extends ViewerBase {
|
|
|
3317
3340
|
setThemeFromSettings(): void;
|
|
3318
3341
|
}
|
|
3319
3342
|
export class GuiViewer3D extends Viewer3D {
|
|
3320
|
-
loadModelPart(buffer: ArrayBuffer, options: ModelLoadingOptions, onSuccessCallback?: SuccessCallback, onErrorCallback?: ErrorCallback): Promise<void>;
|
|
3343
|
+
loadModelPart(buffer: ArrayBuffer | string | Blob, options: ModelLoadingOptions, onSuccessCallback?: SuccessCallback, onErrorCallback?: ErrorCallback): Promise<void>;
|
|
3321
3344
|
getToolbar(): ViewerToolbar;
|
|
3322
3345
|
onPostExtensionLoad(extension: ExtensionBase): void;
|
|
3323
3346
|
protected getToolbarHeight(): number;
|