gs-bim-air 1.6.1-cae.3 → 1.6.1-cae.5
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/lib/BimAir.common-report.html +2 -2
- package/lib/BimAir.common.js +43431 -69577
- package/lib/BimAir.css +43 -43
- package/lib/BimAir.umd-report.html +2 -2
- package/lib/BimAir.umd.js +43432 -69578
- package/lib/BimAir.umd.min-report.html +2 -2
- package/lib/BimAir.umd.min.js +43432 -69578
- package/lib/packages/bimAir/types/longan/src/longan/longan.d.ts +1174 -0
- package/package.json +2 -2
- package/tsconfig.json +37 -21
- package/types/bimAir/src/api/file/fileService.d.ts +9 -0
- package/types/bimAir/src/api/gsl/gslService.d.ts +9 -0
- package/types/bimAir/src/api/longanModelApi.d.ts +10 -0
- package/types/bimAir/src/api/modelVersion/convertorService.d.ts +16 -0
- package/types/bimAir/src/api/modelVersion/model.d.ts +31 -0
- package/types/bimAir/src/api/modelVersion/modelService.d.ts +35 -0
- package/types/bimAir/src/api/modelVersion/version.d.ts +15 -0
- package/types/bimAir/src/api/modelVersion/versionCode.d.ts +4 -0
- package/types/bimAir/src/api/project/projectServices.d.ts +8 -0
- package/types/bimAir/src/api/renderObjectService.d.ts +14 -0
- package/types/bimAir/src/assets/svgs/rotatePoint.d.ts +5 -0
- package/types/bimAir/src/axiosRequestExport.d.ts +2 -0
- package/types/bimAir/src/components/gs/gsButtonGroup/gs-button-group.vue.d.ts +11 -0
- package/types/bimAir/src/components/gs/gsButtonGroup/index.d.ts +4 -0
- package/types/bimAir/src/components/gs/gsButtonIcon/gs-button-icon.vue.d.ts +17 -0
- package/types/bimAir/src/components/gs/gsButtonIcon/index.d.ts +4 -0
- package/types/bimAir/src/components/gs/gsDialog/gs-dialog.vue.d.ts +18 -0
- package/types/bimAir/src/components/gs/gsDialog/index.d.ts +4 -0
- package/types/bimAir/src/components/gs/gsDivider/gs-divider.vue.d.ts +6 -0
- package/types/bimAir/src/components/gs/gsDivider/index.d.ts +4 -0
- package/types/bimAir/src/components/gs/gsTree/gs-tree.vue.d.ts +7 -0
- package/types/bimAir/src/components/gs/gsTree/index.d.ts +4 -0
- package/types/bimAir/src/components/gs/gsTreeNode/gs-tree-node.vue.d.ts +9 -0
- package/types/bimAir/src/components/gs/gsTreeNode/index.d.ts +4 -0
- package/types/bimAir/src/gsDevFx/animation/pathRoam.d.ts +60 -0
- package/types/bimAir/src/gsDevFx/api/config.d.ts +7 -0
- package/types/bimAir/src/gsDevFx/api/http.d.ts +4 -0
- package/types/bimAir/src/gsDevFx/api/index.d.ts +3 -0
- package/types/bimAir/src/gsDevFx/api/property.d.ts +0 -0
- package/types/bimAir/src/gsDevFx/api/segment.d.ts +17 -0
- package/types/bimAir/src/gsDevFx/camera.d.ts +17 -0
- package/types/bimAir/src/gsDevFx/command.d.ts +14 -0
- package/types/bimAir/src/gsDevFx/earth/earthCameraMouse2D.d.ts +19 -0
- package/types/bimAir/src/gsDevFx/earth/earthCameraMouse3D.d.ts +37 -0
- package/types/bimAir/src/gsDevFx/earth/gisBIMObject.d.ts +61 -0
- package/types/bimAir/src/gsDevFx/earth/gisRefLightModel.d.ts +54 -0
- package/types/bimAir/src/gsDevFx/earth/gsEarth2D.d.ts +112 -0
- package/types/bimAir/src/gsDevFx/earth/gsEarth3D.d.ts +146 -0
- package/types/bimAir/src/gsDevFx/loader.d.ts +8 -0
- package/types/bimAir/src/gsDevFx/managers/animationManager.d.ts +91 -0
- package/types/bimAir/src/gsDevFx/managers/collisionManager.d.ts +4 -0
- package/types/bimAir/src/gsDevFx/managers/componentManager.d.ts +20 -0
- package/types/bimAir/src/gsDevFx/managers/dataManagerBase.d.ts +24 -0
- package/types/bimAir/src/gsDevFx/managers/highlightManager.d.ts +38 -0
- package/types/bimAir/src/gsDevFx/managers/index.d.ts +21 -0
- package/types/bimAir/src/gsDevFx/managers/invisibleManager.d.ts +43 -0
- package/types/bimAir/src/gsDevFx/managers/isolationManager.d.ts +43 -0
- package/types/bimAir/src/gsDevFx/managers/materialManager.d.ts +36 -0
- package/types/bimAir/src/gsDevFx/managers/panelManager.d.ts +30 -0
- package/types/bimAir/src/gsDevFx/managers/parameterManager.d.ts +21 -0
- package/types/bimAir/src/gsDevFx/managers/parametricGeometryManager.d.ts +41 -0
- package/types/bimAir/src/gsDevFx/managers/propertyManager.d.ts +69 -0
- package/types/bimAir/src/gsDevFx/managers/selectionManager.d.ts +37 -0
- package/types/bimAir/src/gsDevFx/managers/structureTreeManager.d.ts +56 -0
- package/types/bimAir/src/gsDevFx/managers/styleManagerBase.d.ts +12 -0
- package/types/bimAir/src/gsDevFx/managers/temporaryObjectManager.d.ts +33 -0
- package/types/bimAir/src/gsDevFx/objects/collisionObject.d.ts +20 -0
- package/types/bimAir/src/gsDevFx/objects/collisionObjects.d.ts +13 -0
- package/types/bimAir/src/gsDevFx/objects/cuttingObjects/cuttingBoxObject.d.ts +25 -0
- package/types/bimAir/src/gsDevFx/objects/cuttingObjects/cuttingObject.d.ts +5 -0
- package/types/bimAir/src/gsDevFx/objects/cuttingObjects/cuttingPlaneObject.d.ts +16 -0
- package/types/bimAir/src/gsDevFx/objects/cuttingObjects.d.ts +11 -0
- package/types/bimAir/src/gsDevFx/objects/cuttingOptions.d.ts +81 -0
- package/types/bimAir/src/gsDevFx/objects/geometryObject.d.ts +8 -0
- package/types/bimAir/src/gsDevFx/objects/instancesObjects/instanceAditObjects.d.ts +7 -0
- package/types/bimAir/src/gsDevFx/objects/instancesObjects/instanceBoreholeObjects.d.ts +7 -0
- package/types/bimAir/src/gsDevFx/objects/instancesObjects/instanceLightModel.d.ts +15 -0
- package/types/bimAir/src/gsDevFx/objects/instancesObjects/instancePlaneObject.d.ts +7 -0
- package/types/bimAir/src/gsDevFx/objects/instancesObjects/instanceReferenceLightModel.d.ts +9 -0
- package/types/bimAir/src/gsDevFx/objects/instancesObjects/instanceReferenceLightProject.d.ts +9 -0
- package/types/bimAir/src/gsDevFx/objects/instancesObjects/instanceRenderObject.d.ts +18 -0
- package/types/bimAir/src/gsDevFx/objects/instancesObjects/instanceSegmentViewObject.d.ts +7 -0
- package/types/bimAir/src/gsDevFx/objects/labelObjects/labelObject.d.ts +23 -0
- package/types/bimAir/src/gsDevFx/objects/labelObjects/leadTextObject.d.ts +14 -0
- package/types/bimAir/src/gsDevFx/objects/labelObjects/locationObject.d.ts +10 -0
- package/types/bimAir/src/gsDevFx/objects/labelObjects.d.ts +14 -0
- package/types/bimAir/src/gsDevFx/objects/lightModel.d.ts +89 -0
- package/types/bimAir/src/gsDevFx/objects/lightProject.d.ts +16 -0
- package/types/bimAir/src/gsDevFx/objects/markupObjects/markupObject.d.ts +19 -0
- package/types/bimAir/src/gsDevFx/objects/markupObjects.d.ts +16 -0
- package/types/bimAir/src/gsDevFx/objects/material.d.ts +98 -0
- package/types/bimAir/src/gsDevFx/objects/measureObjects/angleObject.d.ts +28 -0
- package/types/bimAir/src/gsDevFx/objects/measureObjects/areaObject.d.ts +19 -0
- package/types/bimAir/src/gsDevFx/objects/measureObjects/distanceObject.d.ts +17 -0
- package/types/bimAir/src/gsDevFx/objects/measureObjects/elevationObject.d.ts +15 -0
- package/types/bimAir/src/gsDevFx/objects/measureObjects/measureObject.d.ts +25 -0
- package/types/bimAir/src/gsDevFx/objects/measureObjects/minDistanceObject.d.ts +19 -0
- package/types/bimAir/src/gsDevFx/objects/measureObjects/pointObject.d.ts +13 -0
- package/types/bimAir/src/gsDevFx/objects/measureObjects/slopeObject.d.ts +18 -0
- package/types/bimAir/src/gsDevFx/objects/measureObjects/volumeObject.d.ts +19 -0
- package/types/bimAir/src/gsDevFx/objects/measureObjects.d.ts +14 -0
- package/types/bimAir/src/gsDevFx/objects/movingObjects/movingBoxObject.d.ts +25 -0
- package/types/bimAir/src/gsDevFx/objects/movingObjects/movingObject.d.ts +5 -0
- package/types/bimAir/src/gsDevFx/objects/movingObjects/movingPlaneObject.d.ts +16 -0
- package/types/bimAir/src/gsDevFx/objects/movingObjects.d.ts +11 -0
- package/types/bimAir/src/gsDevFx/objects/paramModelObject/aditObjects.d.ts +44 -0
- package/types/bimAir/src/gsDevFx/objects/paramModelObject/boreholeObjects.d.ts +36 -0
- package/types/bimAir/src/gsDevFx/objects/paramModelObject/planeObject.d.ts +25 -0
- package/types/bimAir/src/gsDevFx/objects/paramModelObject.d.ts +13 -0
- package/types/bimAir/src/gsDevFx/objects/referenceLightModel.d.ts +11 -0
- package/types/bimAir/src/gsDevFx/objects/referenceLightProject.d.ts +8 -0
- package/types/bimAir/src/gsDevFx/objects/renderObject.d.ts +4 -0
- package/types/bimAir/src/gsDevFx/objects/roamObject.d.ts +21 -0
- package/types/bimAir/src/gsDevFx/objects/roamObjects.d.ts +9 -0
- package/types/bimAir/src/gsDevFx/objects/segmentObject.d.ts +111 -0
- package/types/bimAir/src/gsDevFx/objects/segmentViewObject.d.ts +4 -0
- package/types/bimAir/src/gsDevFx/objects/treeNodeObject.d.ts +54 -0
- package/types/bimAir/src/gsDevFx/objects/viewPointObject.d.ts +25 -0
- package/types/bimAir/src/gsDevFx/objects/viewPointObjects.d.ts +8 -0
- package/types/bimAir/src/gsDevFx/objects/viewPointStateObject.d.ts +12 -0
- package/types/bimAir/src/gsDevFx/objects/wallObject.d.ts +11 -0
- package/types/bimAir/src/gsDevFx/operators/cameraMouseComparison.d.ts +7 -0
- package/types/bimAir/src/gsDevFx/operators/compassPreSelector.d.ts +21 -0
- package/types/bimAir/src/gsDevFx/operators/compassSelector.d.ts +15 -0
- package/types/bimAir/src/gsDevFx/operators/componentPreSelector.d.ts +21 -0
- package/types/bimAir/src/gsDevFx/operators/componentSelector.d.ts +21 -0
- package/types/bimAir/src/gsDevFx/operators/createWallSelector.d.ts +14 -0
- package/types/bimAir/src/gsDevFx/operators/cuttingBoxOperator.d.ts +44 -0
- package/types/bimAir/src/gsDevFx/operators/cuttingBoxSelector.d.ts +21 -0
- package/types/bimAir/src/gsDevFx/operators/cuttingPlaneOperator.d.ts +57 -0
- package/types/bimAir/src/gsDevFx/operators/designOperator.d.ts +17 -0
- package/types/bimAir/src/gsDevFx/operators/freeRoamOperator.d.ts +43 -0
- package/types/bimAir/src/gsDevFx/operators/labelObjectSelector.d.ts +12 -0
- package/types/bimAir/src/gsDevFx/operators/localCoordinateOperator.d.ts +64 -0
- package/types/bimAir/src/gsDevFx/operators/measureAngleSelector.d.ts +16 -0
- package/types/bimAir/src/gsDevFx/operators/measureDistanceSelector.d.ts +16 -0
- package/types/bimAir/src/gsDevFx/operators/measureElevationSelector.d.ts +14 -0
- package/types/bimAir/src/gsDevFx/operators/measurePointSelector.d.ts +15 -0
- package/types/bimAir/src/gsDevFx/operators/measureSlopeSelector.d.ts +14 -0
- package/types/bimAir/src/gsDevFx/operators/objectPreSelector.d.ts +38 -0
- package/types/bimAir/src/gsDevFx/operators/pathRoamOperator.d.ts +29 -0
- package/types/bimAir/src/gsDevFx/options/index.d.ts +139 -0
- package/types/bimAir/src/gsDevFx/options/loaderOptions.d.ts +33 -0
- package/types/bimAir/src/gsDevFx/options/toolbarVisible.d.ts +26 -0
- package/types/bimAir/src/gsDevFx/process.d.ts +15 -0
- package/types/bimAir/src/gsDevFx/registerType.d.ts +2 -0
- package/types/bimAir/src/gsDevFx/shaders/cuttingShaders.d.ts +12 -0
- package/types/bimAir/src/gsDevFx/utils/utility.d.ts +1 -0
- package/types/bimAir/src/gsDevFx/viewer.d.ts +242 -0
- package/types/bimAir/src/gsDevFx/viewerInterface.d.ts +3 -0
- package/types/bimAir/src/index.d.ts +132 -0
- package/types/bimAir/src/install.d.ts +9 -0
- package/types/bimAir/src/plugins/canvasDraw/canvasOperator.d.ts +12 -0
- package/types/bimAir/src/plugins/canvasDraw/canvasViewer.d.ts +28 -0
- package/types/bimAir/src/plugins/canvasDraw/index.d.ts +48 -0
- package/types/bimAir/src/plugins/canvasDraw/keyEvent.d.ts +19 -0
- package/types/bimAir/src/plugins/canvasDraw/lib/arrow.d.ts +5 -0
- package/types/bimAir/src/plugins/canvasDraw/lib/color.d.ts +3 -0
- package/types/bimAir/src/plugins/canvasDraw/lib/diameter.d.ts +3 -0
- package/types/bimAir/src/plugins/canvasDraw/lib/editor.d.ts +51 -0
- package/types/bimAir/src/plugins/canvasDraw/lib/ellipsis.d.ts +4 -0
- package/types/bimAir/src/plugins/canvasDraw/lib/mosaic.d.ts +8 -0
- package/types/bimAir/src/plugins/canvasDraw/lib/pen.d.ts +9 -0
- package/types/bimAir/src/plugins/canvasDraw/lib/rectangle.d.ts +4 -0
- package/types/bimAir/src/plugins/canvasDraw/lib/shape.d.ts +12 -0
- package/types/bimAir/src/plugins/canvasDraw/lib/text.d.ts +8 -0
- package/types/bimAir/src/plugins/canvasDraw/lib/tool.d.ts +32 -0
- package/types/bimAir/src/plugins/element.d.ts +1 -0
- package/types/bimAir/src/plugins/gsElement.d.ts +1 -0
- package/types/bimAir/src/plugins/svgDraw/index.d.ts +16 -0
- package/types/bimAir/src/plugins/svgDraw/svgViewer.d.ts +20 -0
- package/types/bimAir/src/plugins/vuesax.d.ts +0 -0
- package/types/bimAir/src/sdk/animation/anchorEffect/anchorEffect.d.ts +34 -0
- package/types/bimAir/src/sdk/animation/anchorEffect/anchorEffectConfig.d.ts +17 -0
- package/types/bimAir/src/sdk/animation/circleScanEffect/circleScanEffect.d.ts +10 -0
- package/types/bimAir/src/sdk/animation/circleScanEffect/circleScanEffectConfig.d.ts +20 -0
- package/types/bimAir/src/sdk/animation/cutFillAnalysis/cutFillAnalysisConfig.d.ts +16 -0
- package/types/bimAir/src/sdk/animation/cutFillAnalysis/cutFillAnalysisEffect.d.ts +13 -0
- package/types/bimAir/src/sdk/animation/fanScanEffect/fanScanEffect.d.ts +10 -0
- package/types/bimAir/src/sdk/animation/fanScanEffect/fanScanEffectConfig.d.ts +23 -0
- package/types/bimAir/src/sdk/animation/heatMap2DEffect/heatMap2DEffect.d.ts +10 -0
- package/types/bimAir/src/sdk/animation/heatMap2DEffect/heatMap2DEffectConfig.d.ts +22 -0
- package/types/bimAir/src/sdk/animation/heightLimitEffect/heightLimitEffect.d.ts +10 -0
- package/types/bimAir/src/sdk/animation/heightLimitEffect/heightLimitEffectConfig.d.ts +15 -0
- package/types/bimAir/src/sdk/animation/index.d.ts +31 -0
- package/types/bimAir/src/sdk/animation/pathEffect/pathEffect.d.ts +22 -0
- package/types/bimAir/src/sdk/animation/pathEffect/pathEffectConfig.d.ts +17 -0
- package/types/bimAir/src/sdk/animation/pathEffect/pathImage.d.ts +1 -0
- package/types/bimAir/src/sdk/animation/sightlineAnalysis/sightlineAnalysisConfig.d.ts +13 -0
- package/types/bimAir/src/sdk/animation/sightlineAnalysis/sightlineAnalysisEffect.d.ts +13 -0
- package/types/bimAir/src/sdk/animation/skyboxEffect/skyboxEffect.d.ts +22 -0
- package/types/bimAir/src/sdk/animation/skyboxEffect/skyboxEffectConfig.d.ts +9 -0
- package/types/bimAir/src/sdk/animation/skyboxEffect/skyboxImages.d.ts +4 -0
- package/types/bimAir/src/sdk/animation/snowEffect/snowEffect.d.ts +10 -0
- package/types/bimAir/src/sdk/animation/snowEffect/snowEffectConfig.d.ts +13 -0
- package/types/bimAir/src/sdk/animation/spotLightEffect/spotLightEffect.d.ts +10 -0
- package/types/bimAir/src/sdk/animation/spotLightEffect/spotLightEffectConfig.d.ts +22 -0
- package/types/bimAir/src/sdk/animation/uvEffect/uvEffect.d.ts +17 -0
- package/types/bimAir/src/sdk/animation/uvEffect/uvEffectConfig.d.ts +25 -0
- package/types/bimAir/src/sdk/animation/wallEffect/wallEffect.d.ts +53 -0
- package/types/bimAir/src/sdk/animation/wallEffect/wallEffectConfig.d.ts +17 -0
- package/types/bimAir/src/sdk/animation/wallEffect/wallImage.d.ts +1 -0
- package/types/bimAir/src/sdk/animation/wallScanEffect/wallScanEffect.d.ts +10 -0
- package/types/bimAir/src/sdk/animation/wallScanEffect/wallScanEffectConfig.d.ts +21 -0
- package/types/bimAir/src/sdk/animation/waterEffect/waterEffect.d.ts +13 -0
- package/types/bimAir/src/sdk/animation/waterEffect/waterEffectConfig.d.ts +12 -0
- package/types/bimAir/src/sdk/animation/waterEffect/waterImages.d.ts +3 -0
- package/types/bimAir/src/sdk/command/createWallCommand.d.ts +7 -0
- package/types/bimAir/src/sdk/command/index.d.ts +7 -0
- package/types/bimAir/src/sdk/geometry/index.d.ts +2 -0
- package/types/bimAir/src/sdk/geometry/plane.d.ts +26 -0
- package/types/bimAir/src/sdk/index.d.ts +2 -0
- package/types/bimAir/src/sdk/model.d.ts +50 -0
- package/types/bimAir/src/sdk/shader/circleScanShader.d.ts +14 -0
- package/types/bimAir/src/sdk/shader/customCubeShader.d.ts +25 -0
- package/types/bimAir/src/sdk/shader/cutFillShader.d.ts +12 -0
- package/types/bimAir/src/sdk/shader/fanScanShader.d.ts +14 -0
- package/types/bimAir/src/sdk/shader/heatMap2dShader.d.ts +23 -0
- package/types/bimAir/src/sdk/shader/heightLimitShader.d.ts +11 -0
- package/types/bimAir/src/sdk/shader/skinShader.d.ts +12 -0
- package/types/bimAir/src/sdk/shader/skyboxShader.d.ts +17 -0
- package/types/bimAir/src/sdk/shader/snowShader.d.ts +16 -0
- package/types/bimAir/src/sdk/shader/spotLightShader.d.ts +14 -0
- package/types/bimAir/src/sdk/shader/uvShader.d.ts +12 -0
- package/types/bimAir/src/sdk/shader/wallShader.d.ts +14 -0
- package/types/bimAir/src/sdk/shader/waterShader.d.ts +23 -0
- package/types/bimAir/src/store/command.d.ts +34 -0
- package/types/bimAir/src/store/index.d.ts +20 -0
- package/types/bimAir/src/store/operator.d.ts +0 -0
- package/types/bimAir/src/store/options.d.ts +18 -0
- package/types/bimAir/src/store/panel.d.ts +32 -0
- package/types/bimAir/src/store/structureTree.d.ts +11 -0
- package/types/bimAir/src/store/toolbar.d.ts +21 -0
- package/types/bimAir/src/typedocExport.d.ts +36 -0
- package/types/bimAir/src/utils/canvas.d.ts +1 -0
- package/types/bimAir/src/utils/color.d.ts +5 -0
- package/types/bimAir/src/utils/cookie.d.ts +37 -0
- package/types/bimAir/src/utils/copyText.d.ts +4 -0
- package/types/bimAir/src/utils/dataFormat.d.ts +1 -0
- package/types/bimAir/src/utils/dataUtility.d.ts +11 -0
- package/types/bimAir/src/utils/date.d.ts +1 -0
- package/types/bimAir/src/utils/dateUtility.d.ts +1 -0
- package/types/bimAir/src/utils/documentUtility.d.ts +2 -0
- package/types/bimAir/src/utils/fileFormatTransform.d.ts +4 -0
- package/types/bimAir/src/utils/fileType.d.ts +32 -0
- package/types/bimAir/src/utils/fileUtility.d.ts +17 -0
- package/types/bimAir/src/utils/forbiddenF12.d.ts +1 -0
- package/types/bimAir/src/utils/global.d.ts +5 -0
- package/types/bimAir/src/utils/httpUtility.d.ts +1 -0
- package/types/bimAir/src/utils/md5.d.ts +7 -0
- package/types/bimAir/src/utils/request.d.ts +0 -0
- package/types/bimAir/src/utils/utility.d.ts +10 -0
- package/types/bimAir/src/utils/uuid.d.ts +1 -0
- package/types/bimAir/src/utils/window.d.ts +1 -0
- package/types/bimAir/src/viewerWrapper/commands/commandBindComponent.vue.d.ts +44 -0
- package/types/bimAir/src/viewerWrapper/commands/commandComponent.d.ts +44 -0
- package/types/bimAir/src/viewerWrapper/commands/commandSelect.d.ts +19 -0
- package/types/bimAir/src/viewerWrapper/commands/createWall/commandCreateWall.d.ts +16 -0
- package/types/bimAir/src/viewerWrapper/commands/showCollision/commandShowCollision.d.ts +51 -0
- package/types/bimAir/src/viewerWrapper/commands/showCollision/showCollision.vue.d.ts +26 -0
- package/types/bimAir/src/viewerWrapper/commands/showCut/commandShowAxisCut.d.ts +6 -0
- package/types/bimAir/src/viewerWrapper/commands/showCut/commandShowBoxCut.d.ts +31 -0
- package/types/bimAir/src/viewerWrapper/commands/showCut/showAxisCut/commandShowAxisCut.d.ts +12 -0
- package/types/bimAir/src/viewerWrapper/commands/showCut/showAxisCut/showAxisCut.vue.d.ts +16 -0
- package/types/bimAir/src/viewerWrapper/commands/showCut/showBoxCut/commandShowBoxCut.d.ts +15 -0
- package/types/bimAir/src/viewerWrapper/commands/showCut/showBoxCut/showBoxCut.vue.d.ts +22 -0
- package/types/bimAir/src/viewerWrapper/commands/showCut/showElavationCut/commandShowElevationCut.d.ts +12 -0
- package/types/bimAir/src/viewerWrapper/commands/showCut/showElavationCut/showElevationCut.vue.d.ts +15 -0
- package/types/bimAir/src/viewerWrapper/commands/showCut/showElementCut/commandShowElementCut.d.ts +17 -0
- package/types/bimAir/src/viewerWrapper/commands/showCut/showElementCut/showElementCut.vue.d.ts +13 -0
- package/types/bimAir/src/viewerWrapper/commands/showDrawingItem/commandShowDrawingItem.d.ts +20 -0
- package/types/bimAir/src/viewerWrapper/commands/showDrawingItem/showDrawingItem.vue.d.ts +10 -0
- package/types/bimAir/src/viewerWrapper/commands/showEditLabel/commandShowEditLabel.d.ts +37 -0
- package/types/bimAir/src/viewerWrapper/commands/showEditLabel/lib/label.d.ts +11 -0
- package/types/bimAir/src/viewerWrapper/commands/showEditLabel/lib/leadtext.d.ts +12 -0
- package/types/bimAir/src/viewerWrapper/commands/showEditLabel/lib/location.d.ts +8 -0
- package/types/bimAir/src/viewerWrapper/commands/showEditLabel/showEditLabel.vue.d.ts +21 -0
- package/types/bimAir/src/viewerWrapper/commands/showEditStyle/commandShowEditStyle.d.ts +32 -0
- package/types/bimAir/src/viewerWrapper/commands/showEditStyle/showEditStyle.vue.d.ts +18 -0
- package/types/bimAir/src/viewerWrapper/commands/showMarkup/commandShowMarkup.d.ts +25 -0
- package/types/bimAir/src/viewerWrapper/commands/showMarkup/showMarkup.vue.d.ts +27 -0
- package/types/bimAir/src/viewerWrapper/commands/showMeasure/commandShowMeasure.d.ts +57 -0
- package/types/bimAir/src/viewerWrapper/commands/showMeasure/lib/angle.d.ts +20 -0
- package/types/bimAir/src/viewerWrapper/commands/showMeasure/lib/area.d.ts +10 -0
- package/types/bimAir/src/viewerWrapper/commands/showMeasure/lib/distance.d.ts +24 -0
- package/types/bimAir/src/viewerWrapper/commands/showMeasure/lib/elevation.d.ts +21 -0
- package/types/bimAir/src/viewerWrapper/commands/showMeasure/lib/measure.d.ts +14 -0
- package/types/bimAir/src/viewerWrapper/commands/showMeasure/lib/minDistance.d.ts +19 -0
- package/types/bimAir/src/viewerWrapper/commands/showMeasure/lib/point.d.ts +12 -0
- package/types/bimAir/src/viewerWrapper/commands/showMeasure/lib/slope.d.ts +20 -0
- package/types/bimAir/src/viewerWrapper/commands/showMeasure/lib/volume.d.ts +10 -0
- package/types/bimAir/src/viewerWrapper/commands/showMeasure/showMeasure.vue.d.ts +25 -0
- package/types/bimAir/src/viewerWrapper/commands/showModelExplosion/commandShowModelExplosion.d.ts +29 -0
- package/types/bimAir/src/viewerWrapper/commands/showModelExplosion/commandShowProModelExplosion.d.ts +39 -0
- package/types/bimAir/src/viewerWrapper/commands/showModelExplosion/showModelExplosion.vue.d.ts +13 -0
- package/types/bimAir/src/viewerWrapper/commands/showModelExplosion/showProModelExplosion.vue.d.ts +32 -0
- package/types/bimAir/src/viewerWrapper/commands/showMove/commandShowMove.d.ts +16 -0
- package/types/bimAir/src/viewerWrapper/commands/showPathRoam/commandShowPathRoam.d.ts +60 -0
- package/types/bimAir/src/viewerWrapper/commands/showPathRoam/showPathRoam.vue.d.ts +34 -0
- package/types/bimAir/src/viewerWrapper/commands/showThirdPersonRoam/commandShowThirdPersonRoam.d.ts +9 -0
- package/types/bimAir/src/viewerWrapper/commands/showThirdPersonRoam/showThirdPersonRoam.vue.d.ts +8 -0
- package/types/bimAir/src/viewerWrapper/commands/showViewPlanItem/commandShowViewPlanItem.d.ts +31 -0
- package/types/bimAir/src/viewerWrapper/commands/showViewPlanItem/showViewPlanItem.vue.d.ts +15 -0
- package/types/bimAir/src/viewerWrapper/components/bottomToolbar/indexToolbar.d.ts +70 -0
- package/types/bimAir/src/viewerWrapper/components/bottomToolbar/roamToolbar.d.ts +29 -0
- package/types/bimAir/src/viewerWrapper/components/bottomToolbar/toolbar.d.ts +8 -0
- package/types/bimAir/src/viewerWrapper/components/leftToolbar/toolbar.d.ts +12 -0
- package/types/bimAir/src/viewerWrapper/components/rightToolbar/toolbar.d.ts +37 -0
- package/types/bimAir/src/viewerWrapper/module/addModel.d.ts +2 -0
- package/types/bimAir/src/viewerWrapper/module/addRotatePointSVG.d.ts +2 -0
- package/types/bimAir/src/viewerWrapper/module/createMenu.d.ts +18 -0
- package/types/bimAir/src/viewerWrapper/module/findModelId.d.ts +3 -0
- package/types/bimAir/src/viewerWrapper/module/getRelatedIds.d.ts +4 -0
- package/types/bimAir/src/viewerWrapper/module/removeModel.d.ts +2 -0
- package/types/bimAir/src/viewerWrapper/module/saveModel.d.ts +0 -0
- package/types/bimAir/src/viewerWrapper/module/setModelColor.d.ts +2 -0
- package/types/bimAir/src/viewerWrapper/module/translateModel.d.ts +2 -0
- package/types/bimAir/src/viewerWrapper/panels/collision/collisionPanel.d.ts +32 -0
- package/types/bimAir/src/viewerWrapper/panels/collision/interfaceCollisionPanel.vue.d.ts +47 -0
- package/types/bimAir/src/viewerWrapper/panels/drawing/drawingPanel.d.ts +15 -0
- package/types/bimAir/src/viewerWrapper/panels/drawing/interfaceDrawingPanel.vue.d.ts +13 -0
- package/types/bimAir/src/viewerWrapper/panels/panel.d.ts +23 -0
- package/types/bimAir/src/viewerWrapper/panels/panelBindComponent.d.ts +42 -0
- package/types/bimAir/src/viewerWrapper/panels/property/interfacePropertyPanel.vue.d.ts +66 -0
- package/types/bimAir/src/viewerWrapper/panels/property/panes/propertyPanel.vue.d.ts +72 -0
- package/types/bimAir/src/viewerWrapper/panels/property/propertyPanel.d.ts +12 -0
- package/types/bimAir/src/viewerWrapper/panels/setting/interfaceSettingPanel.vue.d.ts +61 -0
- package/types/bimAir/src/viewerWrapper/panels/setting/settingPanel.d.ts +8 -0
- package/types/bimAir/src/viewerWrapper/panels/snapshoot/interfaceSnapshootPanel.vue.d.ts +16 -0
- package/types/bimAir/src/viewerWrapper/panels/snapshoot/snapshootPanel.d.ts +9 -0
- package/types/bimAir/src/viewerWrapper/panels/structureTree/interfaceStructureTree.d.ts +28 -0
- package/types/bimAir/src/viewerWrapper/panels/structureTree/panes/structureTree.d.ts +136 -0
- package/types/bimAir/src/viewerWrapper/panels/structureTree/structureTree.d.ts +9 -0
- package/types/bimAir/src/viewerWrapper/panels/structureTree/structureTreeBus.d.ts +3 -0
- package/types/bimAir/src/viewerWrapper/panels/viewPlan/interfaceViewPlanPanel.vue.d.ts +12 -0
- package/types/bimAir/src/viewerWrapper/panels/viewPlan/viewPlanPanel.d.ts +15 -0
- package/types/bimAir/src/viewerWrapper/panels/viewPoint/interfaceViewPointPanel.vue.d.ts +38 -0
- package/types/bimAir/src/viewerWrapper/panels/viewPoint/viewPointPanel.d.ts +79 -0
- package/types/bimAir/src/viewerWrapper/viewerWrapper.d.ts +76 -0
- package/types/longan/src/events.d.ts +21 -0
- package/types/longan/src/history/commandExecuteState.d.ts +8 -0
- package/types/longan/src/history/commandState.d.ts +9 -0
- package/types/longan/src/history/commandStepState.d.ts +9 -0
- package/types/longan/src/history/commandTerminateState.d.ts +8 -0
- package/types/longan/src/history/deltaState.d.ts +32 -0
- package/types/longan/src/history/objectState.d.ts +11 -0
- package/types/longan/src/history/renderObjectState.d.ts +14 -0
- package/types/longan/src/history/stateItem.d.ts +33 -0
- package/types/longan/src/history/statePack.d.ts +28 -0
- package/types/longan/src/history/taskExecuteState.d.ts +8 -0
- package/types/longan/src/history/taskFinishState.d.ts +8 -0
- package/types/longan/src/history/taskState.d.ts +12 -0
- package/types/longan/src/index.d.ts +569 -0
- package/types/longan/src/longan/geometry.d.ts +229 -0
- package/types/longan/src/longan/gs.collections.d.ts +76 -0
- package/types/longan/src/longan/gs.math.d.ts +309 -0
- package/types/longan/src/longan/gs.viewer.d.ts +822 -0
- package/types/longan/src/longan/idb.d.ts +17 -0
- package/types/longan/src/longan/include.d.ts +10 -0
- package/types/longan/src/longan/segment.d.ts +744 -0
- package/types/longan/src/longan/style.d.ts +11 -0
- package/types/longan/src/longan/utility.d.ts +10 -0
- package/types/longan/src/longanLoad.d.ts +10 -0
- package/types/longan/src/managers/animationManager.d.ts +61 -0
- package/types/longan/src/managers/asynTaskManager.d.ts +20 -0
- package/types/longan/src/managers/cloneManager.d.ts +9 -0
- package/types/longan/src/managers/collisionManager.d.ts +25 -0
- package/types/longan/src/managers/commandManager.d.ts +35 -0
- package/types/longan/src/managers/dataManagerBase.d.ts +22 -0
- package/types/longan/src/managers/highlightManager.d.ts +23 -0
- package/types/longan/src/managers/historyManager.d.ts +38 -0
- package/types/longan/src/managers/invisibleManager.d.ts +25 -0
- package/types/longan/src/managers/isolationManager.d.ts +25 -0
- package/types/longan/src/managers/operatorManager.d.ts +14 -0
- package/types/longan/src/managers/persistenceManager.d.ts +38 -0
- package/types/longan/src/managers/processManagerBase.d.ts +6 -0
- package/types/longan/src/managers/selectionManager.d.ts +63 -0
- package/types/longan/src/managers/styleManagerBase.d.ts +8 -0
- package/types/longan/src/managers/synchronManager.d.ts +24 -0
- package/types/longan/src/managers/taskManager.d.ts +36 -0
- package/types/longan/src/managers/viewerManagerBase.d.ts +6 -0
- package/types/longan/src/objects/cube.d.ts +14 -0
- package/types/longan/src/objects/earthLabelObjectList.d.ts +15 -0
- package/types/longan/src/objects/earthObject.d.ts +132 -0
- package/types/longan/src/objects/gisBIMObject.d.ts +32 -0
- package/types/longan/src/objects/labelObject.d.ts +15 -0
- package/types/longan/src/objects/labelObjectList.d.ts +16 -0
- package/types/longan/src/objects/lightModel.d.ts +44 -0
- package/types/longan/src/objects/panoramaObject.d.ts +36 -0
- package/types/longan/src/objects/referenceObject.d.ts +14 -0
- package/types/longan/src/objects/renderInstanceObject.d.ts +27 -0
- package/types/longan/src/objects/renderObject.d.ts +73 -0
- package/types/longan/src/objects/roamPathObjectList.d.ts +15 -0
- package/types/longan/src/objects/segmentViewObject.d.ts +14 -0
- package/types/longan/src/objects/viewPointObjectList.d.ts +17 -0
- package/types/longan/src/operators/cameraMouse.d.ts +108 -0
- package/types/longan/src/operators/cameraPlanMouse.d.ts +7 -0
- package/types/longan/src/operators/cameraTouch.d.ts +41 -0
- package/types/longan/src/operators/cuttingBox.d.ts +42 -0
- package/types/longan/src/operators/cuttingPlane.d.ts +55 -0
- package/types/longan/src/operators/earthCameraMouse.d.ts +38 -0
- package/types/longan/src/operators/intersectionGraph.d.ts +94 -0
- package/types/longan/src/operators/objectPreSelector.d.ts +69 -0
- package/types/longan/src/operators/objectSelector.d.ts +54 -0
- package/types/longan/src/operators/panoramaCameraMouse.d.ts +24 -0
- package/types/longan/src/operators/perspectiveCameraMouse.d.ts +13 -0
- package/types/longan/src/operators/viewerOperator.d.ts +68 -0
- package/types/longan/src/process.d.ts +76 -0
- package/types/longan/src/propertyComponents/baseShader.d.ts +26 -0
- package/types/longan/src/propertyComponents/propertyComponent.d.ts +17 -0
- package/types/longan/src/propertyComponents/shader.d.ts +50 -0
- package/types/longan/src/utility.d.ts +11 -0
- package/types/longan/src/utils/cookie.d.ts +2 -0
- package/types/longan/src/utils/utility.d.ts +3 -0
- package/types/longan/src/utils/uuid.d.ts +1 -0
- package/types/longan/src/viewModel.d.ts +26 -0
- package/types/longan/src/viewer.d.ts +199 -0
- package/types/longan/src/workFlow/command.d.ts +49 -0
- package/types/longan/src/workFlow/commandImportEarth.d.ts +13 -0
- package/types/longan/src/workFlow/commandPanoramaModelSelect.d.ts +8 -0
- package/types/longan/src/workFlow/commandSelect.d.ts +11 -0
- package/types/longan/src/workFlow/commandStep.d.ts +27 -0
- package/types/longan/src/workFlow/stepFlow.d.ts +25 -0
- package/types/longan/src/workFlow/task.d.ts +57 -0
- package/types.rar +0 -0
- package/types/index.d.ts +0 -10780
- package/types/index.d.ts.map +0 -1
|
@@ -0,0 +1,569 @@
|
|
|
1
|
+
import { CuttingPlanes, Geometry, Image, Line, Marker, Mesh, ParametricGeometry, PolyCylinder, Polyline, Shell, Surface, TilingType, TriangularShell } from "./longan/geometry";
|
|
2
|
+
import { List, NumberKeyList, Stack, StringKeyList } from "./longan/gs.collections";
|
|
3
|
+
import { BoundingBox, DBoundingBox, DGeometryOperators, DMatrix4, DPoint, DTolerance, DVector, DWcs, GeometryOperators, Matrix4, Point, Tolerance, Vector, Wcs } from "./longan/gs.math";
|
|
4
|
+
import * as LonganCore from "./longan/gs.viewer";
|
|
5
|
+
import { JS_Init_Apis, JS_Init_Database, JS_Fina_Database, JS_Init_Multithreading_Services, JS_Fina_Multithreading_Services, JS_Open_Segment, JS_Open_Segment_By_Key, JS_Close_Segment, JS_Delete_Segment, JS_Delete_Segment_By_Key, JS_Delete_By_Key, JS_Clear_Geometry, JS_Clear_Geometry_By_Key, JS_Clear_Attributes, JS_Clear_Attributes_By_Key, JS_Clear_Includes, JS_Clear_Includes_By_Key, JS_Clear_Styles, JS_Clear_Styles_By_Key, JS_Clear_Subsegments, JS_Clear_Subsegments_By_Key, JS_Clear_All, JS_Clear_All_By_Key, JS_Include_Segment_By_Key, JS_Conditional_Include_By_Key, JS_Style_Segment_By_Key, JS_Conditional_Style_By_Key, JS_Make_Context_Current, JS_Update_Display, JS_Update_View_Display_By_Key, JS_Update_View_Display_With_Framerate_By_Key, JS_Update_View_Display_With_Time_By_Key, JS_Asyn_Update_Geometry_Data_By_Key, JS_Asyn_Update_Geometry_Data_By_Key_Tt, JS_Asyn_Need_Update_View_By_Key, JS_Asyn_Update_Camera_By_Key, JS_Asyn_Update_View_By_Key, JS_Asyn_Update_View_By_Key_Tt, JS_Asyn_Render_View_By_Key, JS_Asyn_Render_View_With_Time_By_Key, JS_Show_Asyn_Geometry_Data_Keys, JS_Show_Asyn_Remove_Geometry_Data_Keys, JS_Show_Asyn_Buffer_Geometry_Keys, JS_Asyn_Buffer_Geometry_By_Key, JS_Asyn_Buffer_Geometry_By_Key_Tt, JS_Show_Key_Type, JS_Show_Key_Tag, JS_Show_Owner_By_Key, JS_Compute_Path, JS_Compute_Coordinates_By_Key, JS_Compute_Coordinates_By_Path, JS_Show_BoundingBox_By_Key, JS_Compute_Boundingbox_By_Key, JS_Compute_Boundingbox_With_Visibility_By_Key, JS_Compute_View_Boundingbox_By_Key, JS_Compute_View_Boundingbox_By_Keys, JS_Compute_View_Boundingboxes_By_Keys, JS_Compute_Segment_Boundingbox_By_Key, JS_Clear_Segment_Boundingbox_By_Key, JS_Compute_Visible_By_Key, JS_Show_Attribute_Count, JS_Show_Attribute_List, JS_Show_Geometry_Count, JS_Show_Geometry_List, JS_Show_Subsegment_Count, JS_Show_Subsegment_List, JS_Show_All_Subsegment_Count, JS_Show_All_Subsegment_List, JS_Show_Include_Count, JS_Show_Include_List, JS_Show_Include, JS_Show_Include_Segment, JS_Show_Style_Count, JS_Show_Style_List, JS_Show_Style, JS_Show_Style_Segment, JS_Show_Segment_Name, JS_Show_Segment_Path, JS_Segment_Exists, JS_Move_Key, JS_Move_Key_By_Key, JS_Rename_Segment, JS_Add_Property_Boolean, JS_Add_Property_Integer, JS_Add_Property_Double, JS_Add_Property_String, JS_Add_Property_Json, JS_Show_Property_Type, JS_Show_Property_Boolean, JS_Show_Property_Integer, JS_Show_Property_Double, JS_Show_Property_String, JS_Property_Exists, JS_Remove_Property, JS_Clear_Properties, JS_Show_Properties, JS_Show_Key_By_Id, JS_Set_Key_Index, JS_Show_Key_Index, JS_Compute_Selection_By_Key, JS_Compute_Selection_By_Area, JS_Show_Selection_Count, JS_Show_Selection_Element, JS_Show_Selection_Path, JS_Show_Selection_Path_By_Keys, JS_Show_Selection_Position, JS_Show_Selection_Param, JS_Show_Selection_Indexes, JS_Show_Selection_Test_Info, JS_Compute_Collision_By_Keys, JS_Compute_Collision_By_Key, JS_Compute_Collision_By_Keys_Tt, JS_Compute_Collision_By_Key_Tt, JS_Show_Collision_Status, JS_Show_Collision_Count, JS_Show_Collision_Elements, JS_Show_Collision_Paths, JS_Show_Collision_Path_By_Keys, JS_Show_Collision_Position, JS_Show_Collision_Type, JS_Add_Font_Library, JS_Font_Library_Exists, JS_Remove_Font_Library, JS_Clear_Font_Library, JS_Set_Driver_Configs, JS_Set_Driver_Options, JS_Show_Driver_Options, JS_Show_One_Driver_Option, JS_Set_Shader, JS_UnSet_Shader, JS_Show_Shader, JS_Show_One_Shader, JS_Set_Viewport, JS_Set_Camera, JS_Set_Camera_Position, JS_Set_Camera_Target, JS_Set_Camera_Up, JS_Set_Camera_Field, JS_Set_Camera_Extent, JS_Set_Camera_Projection, JS_Keep_Camera_Ratio, JS_Show_Camera, JS_Show_Camera_Position, JS_Show_Camera_Target, JS_Show_Camera_Up, JS_Show_Camera_Field, JS_Show_Camera_Extent, JS_Show_Camera_Projection, JS_Show_Camera_Projection_Matrix, JS_Show_Camera_View_Matrix, JS_Show_Path_Camera_Position, JS_Show_Path_Camera_Target, JS_Dolly_Camera, JS_Roll_Camera, JS_Zoom_Camera, JS_UnSet_Camera, JS_Set_Color, JS_UnSet_Color, JS_UnSet_One_Color, JS_Show_Color, JS_Show_One_Color, JS_Show_Color_By_Value, JS_Set_Geometry_Color, JS_Set_Geometry_Color_By_Value, JS_Show_Geometry_Color_By_Value, JS_UnSet_Geometry_Color, JS_Set_Visibility, JS_UnSet_Visibility, JS_UnSet_One_Visibility, JS_Show_Visibility, JS_Show_One_Visibility, JS_Set_Selectability, JS_UnSet_Selectability, JS_UnSet_One_Selectability, JS_Show_Selectability, JS_Show_One_Selectability, JS_Set_ModellingMatrix, JS_Append_ModellingMatrix, JS_Show_ModellingMatrix, JS_Show_Path_ModellingMatrix, JS_UnSet_ModellingMatrix, JS_Set_Rendering_Options, JS_UnSet_Rendering_Options, JS_UnSet_One_Rendering_Option, JS_Show_Rendering_Options, JS_Show_One_Rendering_Option, JS_Show_One_Default_Rendering_Option, JS_Show_One_Path_Rendering_Option, JS_Set_Heuristic_Options, JS_Set_One_Heuristic_Option, JS_UnSet_Heuristic_Options, JS_UnSet_One_Heuristic_Option, JS_Show_Heuristic_Options, JS_Show_One_Heuristic_Option, JS_Set_Condition, JS_Show_Condition, JS_UnSet_Condition, JS_Set_Text_Font, JS_UnSet_Text_Font, JS_UnSet_One_Text_Font, JS_Show_Text_Font, JS_Show_One_Text_Font, JS_Attribute_Exists, JS_Image_Exists, JS_Resize_By_Key, JS_Insert_Marker, JS_Edit_Marker, JS_Show_Marker, JS_Insert_Point_Cloud, JS_Edit_Point_Cloud, JS_Show_Point_Cloud, JS_Insert_Line, JS_Edit_Line, JS_Show_Line, JS_Insert_Polyline, JS_Edit_Polyline, JS_Show_Polyline_Count, JS_Show_Polyline, JS_Insert_Circle, JS_Edit_Circle, JS_Show_Circle, JS_Insert_Cylinder, JS_Show_Cylinder, JS_Insert_PolyCylinder, JS_Edit_PolyCylinder, JS_Insert_Shell, JS_Edit_Shell, JS_Show_Shell_Size, JS_Show_Shell, JS_Insert_Triangular_Shell, JS_Insert_Mesh, JS_Edit_Mesh_Points, JS_Show_Mesh_Size, JS_Show_Mesh, JS_Insert_Vector_Text, JS_Insert_Parametric_Geometry, JS_Edit_Parametric_Geometry, JS_Show_Parametric_Geometry, JS_Insert_Parametric_Geometries, JS_Insert_Light, JS_Edit_Light, JS_Show_Light, JS_Insert_Image, JS_Set_Image_Options, JS_UnSet_One_Image_Option, JS_Show_Image_Position, JS_Show_Image_Size, JS_Show_Image_Data, JS_Show_Image_Options, JS_Show_One_Image_Option, JS_Show_Image, JS_Insert_Cutting_Planes, JS_Edit_Cutting_Planes, JS_Show_Cutting_Planes, JS_Show_Geometry_Vertices_Position_By_Indexes, JS_Show_Geometry_Element_Type, JS_Set_Geometry_Texture_Coords, JS_Show_Geometry_Texture_Dimension, JS_Show_Geometry_Texture_Coords, JS_UnSet_Geometry_Texture_Coords, JS_Compute_Geometry_Texture_Coords, JS_Set_Geometry_Normals, JS_Show_Geometry_Normals, JS_UnSet_Geometry_Normals, JS_Compute_Geometry_Tessellate_Data, JS_Compute_Geometry_Data, JS_Merge_Shell, JS_Extrude_By_Shell, JS_Sweep_By_Shell, JS_DSweep_By_Shell, JS_DExtrude_By_Shell, JS_Rotate_By_Shell, JS_DRotate_By_Shell, JS_Compute_Ray_Test, JS_Compute_Geometry_Ray_Test, JS_Compute_Box_Test, JS_Compute_Polygon_Area, JS_Compute_Area, JS_Compute_Volume, JS_Is_Solid_Geometry, JS_Compute_Geometry_Distance, JS_Segment_To_Stream, JS_Segment_To_Stream_By_Key, JS_Segment_To_Stream_With_Compression, JS_Segment_To_Stream_With_Compression_By_Key, JS_Stream_To_Segment, JS_Stream_To_Segment_By_Key, JS_Stream_To_Segment_By_Key_Tt, JS_Stream_With_Compression_To_Segment_By_Key, JS_Segment_Data_To_Stream, JS_Stream_To_Segment_Data, JS_Geometry_Data_To_Stream, JS_Stream_To_Geometry_Data, JS_Stream_To_Geometry_Data_By_Key, JS_Stream_To_Geometry_Data_By_Keys, JS_Stream_To_Geometry_Data_By_Keys_Tt, JS_Stream_To_Geometry_Data_With_Compression, JS_Copy_Segment_By_Key, JS_Show_Database_Info, JS_Show_Allocated_Memory_Size, JS_Execute_Task_Post_Processing, JS_Create_Texture, JS_Boolean_Intersection_Graph, JS_Boolean_Intersect_Polyline_Polygon_Xy, JS_Boolean_Intersect_Polygon_Polygon_Xy, JS_Boolean_Intersect_Graph_Polygon_Xy, JS_Boolean_Subtract_Polygon_Polygon_Xy, JS_Boolean_Cut_Polygon_Polygon_Xy, JS_Boolean_Subtract, JS_Feature_Extrude, JS_Planar_Polyline_Offset, AreaSelectionType, CameraChangeType, CollisionType, CoordinateSystem, ElementType, UpdateType, ViewerEvent, ViewMode, TextAlignment, EdgeType, GsWebGLUtility, ObjectType, FontUnitsType } from "./longan/gs.viewer";
|
|
6
|
+
import { Include } from "./longan/include";
|
|
7
|
+
import { Segment, CylinderCap, ImagePixelFormat, ProjectionType, UvType, DynamicMemoryType, AlphaTextureBlendingType, ViewportType, Viewport, Color, Visibility, SelectabilityType, Selectability, Property, ModellingMatrix, Diagnosis, RenderingOptions, HeuristicOptions, DriverOptions, Text, Condition, Camera } from "./longan/segment";
|
|
8
|
+
import { Style } from "./longan/style";
|
|
9
|
+
import { AnimationManager } from "./managers/animationManager";
|
|
10
|
+
import { CloneManager } from "./managers/cloneManager";
|
|
11
|
+
import { CommandManager } from "./managers/commandManager";
|
|
12
|
+
import { DataManagerBase } from "./managers/dataManagerBase";
|
|
13
|
+
import { HighlightManager } from "./managers/highlightManager";
|
|
14
|
+
import { HistoryManager } from "./managers/historyManager";
|
|
15
|
+
import { InvisibleManager } from "./managers/invisibleManager";
|
|
16
|
+
import { IsolationManager } from "./managers/isolationManager";
|
|
17
|
+
import { OperatorManager } from "./managers/operatorManager";
|
|
18
|
+
import { PersistenceManager } from "./managers/persistenceManager";
|
|
19
|
+
import { SelectionKey, SelectionManager } from "./managers/selectionManager";
|
|
20
|
+
import { StyleManagerBase } from "./managers/styleManagerBase";
|
|
21
|
+
import { TaskManager } from "./managers/taskManager";
|
|
22
|
+
import { ViewerManagerBase } from "./managers/viewerManagerBase";
|
|
23
|
+
import { Cube } from "./objects/cube";
|
|
24
|
+
import { EarthLabelObjectList } from "./objects/earthLabelObjectList";
|
|
25
|
+
import { EarthObject, EarthVector3D } from "./objects/earthObject";
|
|
26
|
+
import { GISBIMObject } from "./objects/gisBIMObject";
|
|
27
|
+
import { LabelObject } from "./objects/labelObject";
|
|
28
|
+
import { LabelObjectList } from "./objects/labelObjectList";
|
|
29
|
+
import { LightModel } from "./objects/lightModel";
|
|
30
|
+
import { PanoramaObject } from "./objects/panoramaObject";
|
|
31
|
+
import { ReferenceObject } from "./objects/referenceObject";
|
|
32
|
+
import { RenderInstanceObject } from "./objects/renderInstanceObject";
|
|
33
|
+
import { RenderObject } from "./objects/renderObject";
|
|
34
|
+
import { RoamPathObjectList } from "./objects/roamPathObjectList";
|
|
35
|
+
import { SegmentViewObject } from "./objects/segmentViewObject";
|
|
36
|
+
import { ViewPointObjectList } from "./objects/viewPointObjectList";
|
|
37
|
+
import { Process } from "./process";
|
|
38
|
+
import { Viewer } from "./viewer";
|
|
39
|
+
import { ViewModel } from "./viewModel";
|
|
40
|
+
import { CameraMouse, LButtonState } from "./operators/cameraMouse";
|
|
41
|
+
import { CameraPlanMouse } from "./operators/cameraPlanMouse";
|
|
42
|
+
import { CameraTouch, TouchOpertionType } from "./operators/cameraTouch";
|
|
43
|
+
import { EarthCameraMouse } from "./operators/earthCameraMouse";
|
|
44
|
+
import { IntersectionGraph } from "./operators/intersectionGraph";
|
|
45
|
+
import { ObjectPreSelector } from "./operators/objectPreSelector";
|
|
46
|
+
import { ObjectSelector } from "./operators/objectSelector";
|
|
47
|
+
import { PanoramaCameraMouse } from "./operators/panoramaCameraMouse";
|
|
48
|
+
import { PerspectiveCameraMouse } from "./operators/perspectiveCameraMouse";
|
|
49
|
+
import { CameraOperateState, MoveButtonType, ViewerOperator } from "./operators/viewerOperator";
|
|
50
|
+
import { BaseShader } from "./propertyComponents/baseShader";
|
|
51
|
+
import { PropertyComponent } from "./propertyComponents/propertyComponent";
|
|
52
|
+
import { Shader, vertexArrayObjectInfo } from "./propertyComponents/shader";
|
|
53
|
+
import { Command } from "./workFlow/command";
|
|
54
|
+
import { CommandImportEarth } from "./workFlow/commandImportEarth";
|
|
55
|
+
import { CommandPanoramaModelSelect } from "./workFlow/commandPanoramaModelSelect";
|
|
56
|
+
import { CommandSelect } from "./workFlow/commandSelect";
|
|
57
|
+
import { CommandStepState } from "./history/commandStepState";
|
|
58
|
+
import { DeltaState, RollType } from "./history/deltaState";
|
|
59
|
+
import { ObjectState } from "./history/objectState";
|
|
60
|
+
import { RenderObjectState } from "./history/renderObjectState";
|
|
61
|
+
import { StateItem } from "./history/stateItem";
|
|
62
|
+
import { StatePack } from "./history/statePack";
|
|
63
|
+
import { TaskExecuteState } from "./history/taskExecuteState";
|
|
64
|
+
import { TaskFinishState } from "./history/taskFinishState";
|
|
65
|
+
import { TaskState } from "./history/taskState";
|
|
66
|
+
import LonganLoad from "./longanLoad";
|
|
67
|
+
import { CollisionManager } from "./managers/collisionManager";
|
|
68
|
+
import { CuttingBox } from "./operators/cuttingBox";
|
|
69
|
+
import { CuttingPlane } from "./operators/cuttingPlane";
|
|
70
|
+
import { TypeHelper } from "./utility";
|
|
71
|
+
import { CommandStep, StepType } from "./workFlow/commandStep";
|
|
72
|
+
import { StepFlow } from "./workFlow/stepFlow";
|
|
73
|
+
import { deepClone } from "./longan/utility";
|
|
74
|
+
import uuid from "./utils/uuid";
|
|
75
|
+
import { Task } from "./workFlow/task";
|
|
76
|
+
import IDB from "./longan/idb";
|
|
77
|
+
import { AysnTaskManager } from "./managers/asynTaskManager";
|
|
78
|
+
import { ProcessManagerBase } from "./managers/processManagerBase";
|
|
79
|
+
import { SynchronManager } from "./managers/synchronManager";
|
|
80
|
+
declare const Longan: {
|
|
81
|
+
JS_Init_Apis: () => void;
|
|
82
|
+
JS_Init_Database: any;
|
|
83
|
+
JS_Fina_Database: any;
|
|
84
|
+
JS_Init_Multithreading_Services: any;
|
|
85
|
+
JS_Fina_Multithreading_Services: any;
|
|
86
|
+
JS_Open_Segment: any;
|
|
87
|
+
JS_Open_Segment_By_Key: any;
|
|
88
|
+
JS_Close_Segment: any;
|
|
89
|
+
JS_Delete_Segment: any;
|
|
90
|
+
JS_Delete_Segment_By_Key: any;
|
|
91
|
+
JS_Delete_By_Key: any;
|
|
92
|
+
JS_Clear_Geometry: any;
|
|
93
|
+
JS_Clear_Geometry_By_Key: any;
|
|
94
|
+
JS_Clear_Attributes: any;
|
|
95
|
+
JS_Clear_Attributes_By_Key: any;
|
|
96
|
+
JS_Clear_Includes: any;
|
|
97
|
+
JS_Clear_Includes_By_Key: any;
|
|
98
|
+
JS_Clear_Styles: any;
|
|
99
|
+
JS_Clear_Styles_By_Key: any;
|
|
100
|
+
JS_Clear_Subsegments: any;
|
|
101
|
+
JS_Clear_Subsegments_By_Key: any;
|
|
102
|
+
JS_Clear_All: any;
|
|
103
|
+
JS_Clear_All_By_Key: any;
|
|
104
|
+
JS_Include_Segment_By_Key: any;
|
|
105
|
+
JS_Conditional_Include_By_Key: any;
|
|
106
|
+
JS_Style_Segment_By_Key: any;
|
|
107
|
+
JS_Conditional_Style_By_Key: any;
|
|
108
|
+
JS_Make_Context_Current: any;
|
|
109
|
+
JS_Update_Display: any;
|
|
110
|
+
JS_Update_View_Display_By_Key: any;
|
|
111
|
+
JS_Update_View_Display_With_Framerate_By_Key: any;
|
|
112
|
+
JS_Update_View_Display_With_Time_By_Key: any;
|
|
113
|
+
JS_Asyn_Update_Geometry_Data_By_Key: any;
|
|
114
|
+
JS_Asyn_Update_Geometry_Data_By_Key_Tt: any;
|
|
115
|
+
JS_Asyn_Need_Update_View_By_Key: any;
|
|
116
|
+
JS_Asyn_Update_Camera_By_Key: any;
|
|
117
|
+
JS_Asyn_Update_View_By_Key: any;
|
|
118
|
+
JS_Asyn_Update_View_By_Key_Tt: any;
|
|
119
|
+
JS_Asyn_Render_View_By_Key: any;
|
|
120
|
+
JS_Asyn_Render_View_With_Time_By_Key: any;
|
|
121
|
+
JS_Show_Asyn_Geometry_Data_Keys: any;
|
|
122
|
+
JS_Show_Asyn_Remove_Geometry_Data_Keys: any;
|
|
123
|
+
JS_Show_Asyn_Buffer_Geometry_Keys: any;
|
|
124
|
+
JS_Asyn_Buffer_Geometry_By_Key: any;
|
|
125
|
+
JS_Asyn_Buffer_Geometry_By_Key_Tt: any;
|
|
126
|
+
JS_Show_Key_Type: any;
|
|
127
|
+
JS_Show_Key_Tag: any;
|
|
128
|
+
JS_Show_Owner_By_Key: any;
|
|
129
|
+
JS_Compute_Path: any;
|
|
130
|
+
JS_Compute_Coordinates_By_Key: (key: number, in_coordinate: string, in_position: ArrayLike<number>, out_coordinate: string) => Float32Array;
|
|
131
|
+
JS_Compute_Coordinates_By_Path: any;
|
|
132
|
+
JS_Show_BoundingBox_By_Key: any;
|
|
133
|
+
JS_Compute_Boundingbox_By_Key: any;
|
|
134
|
+
JS_Compute_Boundingbox_With_Visibility_By_Key: (key: number, element_types: LonganCore.ElementType) => Float32Array;
|
|
135
|
+
JS_Compute_View_Boundingbox_By_Key: (seg_key: number, key: number) => Float32Array;
|
|
136
|
+
JS_Compute_View_Boundingbox_By_Keys: any;
|
|
137
|
+
JS_Compute_View_Boundingboxes_By_Keys: any;
|
|
138
|
+
JS_Compute_Segment_Boundingbox_By_Key: any;
|
|
139
|
+
JS_Clear_Segment_Boundingbox_By_Key: any;
|
|
140
|
+
JS_Compute_Visible_By_Key: any;
|
|
141
|
+
JS_Show_Attribute_Count: any;
|
|
142
|
+
JS_Show_Attribute_List: any;
|
|
143
|
+
JS_Show_Geometry_Count: any;
|
|
144
|
+
JS_Show_Geometry_List: any;
|
|
145
|
+
JS_Show_Subsegment_Count: any;
|
|
146
|
+
JS_Show_Subsegment_List: any;
|
|
147
|
+
JS_Show_All_Subsegment_Count: any;
|
|
148
|
+
JS_Show_All_Subsegment_List: any;
|
|
149
|
+
JS_Show_Include_Count: any;
|
|
150
|
+
JS_Show_Include_List: any;
|
|
151
|
+
JS_Show_Include: any;
|
|
152
|
+
JS_Show_Include_Segment: any;
|
|
153
|
+
JS_Show_Style_Count: any;
|
|
154
|
+
JS_Show_Style_List: any;
|
|
155
|
+
JS_Show_Style: any;
|
|
156
|
+
JS_Show_Style_Segment: any;
|
|
157
|
+
JS_Show_Segment_Name: any;
|
|
158
|
+
JS_Show_Segment_Path: any;
|
|
159
|
+
JS_Segment_Exists: any;
|
|
160
|
+
JS_Move_Key: any;
|
|
161
|
+
JS_Move_Key_By_Key: any;
|
|
162
|
+
JS_Rename_Segment: any;
|
|
163
|
+
JS_Add_Property_Boolean: any;
|
|
164
|
+
JS_Add_Property_Integer: any;
|
|
165
|
+
JS_Add_Property_Double: any;
|
|
166
|
+
JS_Add_Property_String: any;
|
|
167
|
+
JS_Add_Property_Json: any;
|
|
168
|
+
JS_Show_Property_Type: any;
|
|
169
|
+
JS_Show_Property_Boolean: any;
|
|
170
|
+
JS_Show_Property_Integer: any;
|
|
171
|
+
JS_Show_Property_Double: any;
|
|
172
|
+
JS_Show_Property_String: any;
|
|
173
|
+
JS_Property_Exists: any;
|
|
174
|
+
JS_Remove_Property: any;
|
|
175
|
+
JS_Clear_Properties: any;
|
|
176
|
+
JS_Show_Properties: any;
|
|
177
|
+
JS_Show_Key_By_Id: any;
|
|
178
|
+
JS_Set_Key_Index: any;
|
|
179
|
+
JS_Show_Key_Index: any;
|
|
180
|
+
JS_Compute_Selection_By_Key: any;
|
|
181
|
+
JS_Compute_Selection_By_Area: any;
|
|
182
|
+
JS_Show_Selection_Count: any;
|
|
183
|
+
JS_Show_Selection_Element: any;
|
|
184
|
+
JS_Show_Selection_Path: any;
|
|
185
|
+
JS_Show_Selection_Path_By_Keys: any;
|
|
186
|
+
JS_Show_Selection_Position: any;
|
|
187
|
+
JS_Show_Selection_Param: any;
|
|
188
|
+
JS_Show_Selection_Indexes: any;
|
|
189
|
+
JS_Show_Selection_Test_Info: any;
|
|
190
|
+
JS_Compute_Collision_By_Keys: (viewKey: number, oneKeys: Int32Array, twoKeys: Int32Array, type: LonganCore.CollisionType) => number;
|
|
191
|
+
JS_Compute_Collision_By_Key: (viewKey: number, oneKey: number, twoKey: number, type: LonganCore.CollisionType, options: string) => number;
|
|
192
|
+
JS_Compute_Collision_By_Keys_Tt: (view_key: number, oneKeys: Int32Array, twoKeys: Int32Array, type: LonganCore.CollisionType) => number;
|
|
193
|
+
JS_Compute_Collision_By_Key_Tt: (viewkey: number, oneKey: number, twoKey: number, type: LonganCore.CollisionType, no: number, options: string) => void;
|
|
194
|
+
JS_Show_Collision_Status: any;
|
|
195
|
+
JS_Show_Collision_Count: () => number;
|
|
196
|
+
JS_Show_Collision_Elements: (index: number) => Int32Array;
|
|
197
|
+
JS_Show_Collision_Paths: any;
|
|
198
|
+
JS_Show_Collision_Path_By_Keys: (index: number) => Int32Array[];
|
|
199
|
+
JS_Show_Collision_Position: (index: number) => Float32Array;
|
|
200
|
+
JS_Show_Collision_Type: (index: number) => number;
|
|
201
|
+
JS_Add_Font_Library: any;
|
|
202
|
+
JS_Font_Library_Exists: any;
|
|
203
|
+
JS_Remove_Font_Library: any;
|
|
204
|
+
JS_Clear_Font_Library: any;
|
|
205
|
+
JS_Set_Driver_Configs: any;
|
|
206
|
+
JS_Set_Driver_Options: any;
|
|
207
|
+
JS_Show_Driver_Options: any;
|
|
208
|
+
JS_Show_One_Driver_Option: any;
|
|
209
|
+
JS_Set_Shader: any;
|
|
210
|
+
JS_UnSet_Shader: any;
|
|
211
|
+
JS_Show_Shader: any;
|
|
212
|
+
JS_Show_One_Shader: any;
|
|
213
|
+
JS_Set_Viewport: any;
|
|
214
|
+
JS_Set_Camera: any;
|
|
215
|
+
JS_Set_Camera_Position: any;
|
|
216
|
+
JS_Set_Camera_Target: any;
|
|
217
|
+
JS_Set_Camera_Up: any;
|
|
218
|
+
JS_Set_Camera_Field: any;
|
|
219
|
+
JS_Set_Camera_Extent: any;
|
|
220
|
+
JS_Set_Camera_Projection: any;
|
|
221
|
+
JS_Keep_Camera_Ratio: any;
|
|
222
|
+
JS_Show_Camera: any;
|
|
223
|
+
JS_Show_Camera_Position: any;
|
|
224
|
+
JS_Show_Camera_Target: any;
|
|
225
|
+
JS_Show_Camera_Up: any;
|
|
226
|
+
JS_Show_Camera_Field: any;
|
|
227
|
+
JS_Show_Camera_Extent: any;
|
|
228
|
+
JS_Show_Camera_Projection: any;
|
|
229
|
+
JS_Show_Camera_Projection_Matrix: any;
|
|
230
|
+
JS_Show_Camera_View_Matrix: any;
|
|
231
|
+
JS_Show_Path_Camera_Position: any;
|
|
232
|
+
JS_Show_Path_Camera_Target: any;
|
|
233
|
+
JS_Dolly_Camera: any;
|
|
234
|
+
JS_Roll_Camera: any;
|
|
235
|
+
JS_Zoom_Camera: any;
|
|
236
|
+
JS_UnSet_Camera: any;
|
|
237
|
+
JS_Set_Color: any;
|
|
238
|
+
JS_UnSet_Color: any;
|
|
239
|
+
JS_UnSet_One_Color: any;
|
|
240
|
+
JS_Show_Color: any;
|
|
241
|
+
JS_Show_One_Color: any;
|
|
242
|
+
JS_Show_Color_By_Value: any;
|
|
243
|
+
JS_Set_Geometry_Color: any;
|
|
244
|
+
JS_Set_Geometry_Color_By_Value: any;
|
|
245
|
+
JS_Show_Geometry_Color_By_Value: any;
|
|
246
|
+
JS_UnSet_Geometry_Color: any;
|
|
247
|
+
JS_Set_Visibility: any;
|
|
248
|
+
JS_UnSet_Visibility: any;
|
|
249
|
+
JS_UnSet_One_Visibility: any;
|
|
250
|
+
JS_Show_Visibility: any;
|
|
251
|
+
JS_Show_One_Visibility: any;
|
|
252
|
+
JS_Set_Selectability: any;
|
|
253
|
+
JS_UnSet_Selectability: any;
|
|
254
|
+
JS_UnSet_One_Selectability: any;
|
|
255
|
+
JS_Show_Selectability: any;
|
|
256
|
+
JS_Show_One_Selectability: any;
|
|
257
|
+
JS_Set_ModellingMatrix: any;
|
|
258
|
+
JS_Append_ModellingMatrix: any;
|
|
259
|
+
JS_Show_ModellingMatrix: any;
|
|
260
|
+
JS_Show_Path_ModellingMatrix: any;
|
|
261
|
+
JS_UnSet_ModellingMatrix: any;
|
|
262
|
+
JS_Set_Rendering_Options: any;
|
|
263
|
+
JS_UnSet_Rendering_Options: any;
|
|
264
|
+
JS_UnSet_One_Rendering_Option: any;
|
|
265
|
+
JS_Show_Rendering_Options: any;
|
|
266
|
+
JS_Show_One_Rendering_Option: any;
|
|
267
|
+
JS_Show_One_Default_Rendering_Option: any;
|
|
268
|
+
JS_Show_One_Path_Rendering_Option: any;
|
|
269
|
+
JS_Set_Heuristic_Options: any;
|
|
270
|
+
JS_Set_One_Heuristic_Option: any;
|
|
271
|
+
JS_UnSet_Heuristic_Options: any;
|
|
272
|
+
JS_UnSet_One_Heuristic_Option: any;
|
|
273
|
+
JS_Show_Heuristic_Options: any;
|
|
274
|
+
JS_Show_One_Heuristic_Option: any;
|
|
275
|
+
JS_Set_Condition: any;
|
|
276
|
+
JS_Show_Condition: any;
|
|
277
|
+
JS_UnSet_Condition: any;
|
|
278
|
+
JS_Set_Text_Font: any;
|
|
279
|
+
JS_UnSet_Text_Font: any;
|
|
280
|
+
JS_UnSet_One_Text_Font: any;
|
|
281
|
+
JS_Show_Text_Font: any;
|
|
282
|
+
JS_Show_One_Text_Font: any;
|
|
283
|
+
JS_Attribute_Exists: any;
|
|
284
|
+
JS_Image_Exists: any;
|
|
285
|
+
JS_Resize_By_Key: any;
|
|
286
|
+
JS_Insert_Marker: any;
|
|
287
|
+
JS_Edit_Marker: any;
|
|
288
|
+
JS_Show_Marker: any;
|
|
289
|
+
JS_Insert_Point_Cloud: any;
|
|
290
|
+
JS_Edit_Point_Cloud: any;
|
|
291
|
+
JS_Show_Point_Cloud: any;
|
|
292
|
+
JS_Insert_Line: any;
|
|
293
|
+
JS_Edit_Line: any;
|
|
294
|
+
JS_Show_Line: any;
|
|
295
|
+
JS_Insert_Polyline: any;
|
|
296
|
+
JS_Edit_Polyline: any;
|
|
297
|
+
JS_Show_Polyline_Count: any;
|
|
298
|
+
JS_Show_Polyline: any;
|
|
299
|
+
JS_Insert_Circle: any;
|
|
300
|
+
JS_Edit_Circle: any;
|
|
301
|
+
JS_Show_Circle: any;
|
|
302
|
+
JS_Insert_Cylinder: any;
|
|
303
|
+
JS_Show_Cylinder: any;
|
|
304
|
+
JS_Insert_PolyCylinder: any;
|
|
305
|
+
JS_Edit_PolyCylinder: any;
|
|
306
|
+
JS_Insert_Shell: any;
|
|
307
|
+
JS_Edit_Shell: any;
|
|
308
|
+
JS_Show_Shell_Size: any;
|
|
309
|
+
JS_Show_Shell: any;
|
|
310
|
+
JS_Insert_Triangular_Shell: any;
|
|
311
|
+
JS_Insert_Mesh: any;
|
|
312
|
+
JS_Edit_Mesh_Points: any;
|
|
313
|
+
JS_Show_Mesh_Size: any;
|
|
314
|
+
JS_Show_Mesh: any;
|
|
315
|
+
JS_Insert_Vector_Text: any;
|
|
316
|
+
JS_Insert_Parametric_Geometry: (type: string, params: Float64Array) => number;
|
|
317
|
+
JS_Edit_Parametric_Geometry: (key: number, type: string, params: Float64Array) => number;
|
|
318
|
+
JS_Show_Parametric_Geometry: (key: number) => {
|
|
319
|
+
type: string;
|
|
320
|
+
params: Float64Array;
|
|
321
|
+
};
|
|
322
|
+
JS_Insert_Parametric_Geometries: (type: string, params: Float64Array, geoCount: number) => number;
|
|
323
|
+
JS_Insert_Light: any;
|
|
324
|
+
JS_Edit_Light: any;
|
|
325
|
+
JS_Show_Light: any;
|
|
326
|
+
JS_Insert_Image: any;
|
|
327
|
+
JS_Set_Image_Options: any;
|
|
328
|
+
JS_UnSet_One_Image_Option: any;
|
|
329
|
+
JS_Show_Image_Position: any;
|
|
330
|
+
JS_Show_Image_Size: any;
|
|
331
|
+
JS_Show_Image_Data: any;
|
|
332
|
+
JS_Show_Image_Options: any;
|
|
333
|
+
JS_Show_One_Image_Option: any;
|
|
334
|
+
JS_Show_Image: any;
|
|
335
|
+
JS_Insert_Cutting_Planes: any;
|
|
336
|
+
JS_Edit_Cutting_Planes: any;
|
|
337
|
+
JS_Show_Cutting_Planes: any;
|
|
338
|
+
JS_Show_Geometry_Vertices_Position_By_Indexes: any;
|
|
339
|
+
JS_Show_Geometry_Element_Type: any;
|
|
340
|
+
JS_Set_Geometry_Texture_Coords: any;
|
|
341
|
+
JS_Show_Geometry_Texture_Dimension: any;
|
|
342
|
+
JS_Show_Geometry_Texture_Coords: any;
|
|
343
|
+
JS_UnSet_Geometry_Texture_Coords: any;
|
|
344
|
+
JS_Compute_Geometry_Texture_Coords: any;
|
|
345
|
+
JS_Set_Geometry_Normals: any;
|
|
346
|
+
JS_Show_Geometry_Normals: (key: number, offset: number, count: number) => Float32Array;
|
|
347
|
+
JS_UnSet_Geometry_Normals: any;
|
|
348
|
+
JS_Compute_Geometry_Tessellate_Data: (key: number, image_key: number, options: string) => {
|
|
349
|
+
positions: Float32Array;
|
|
350
|
+
indexes: Int32Array;
|
|
351
|
+
normals: Float32Array;
|
|
352
|
+
texcoords: Float32Array;
|
|
353
|
+
};
|
|
354
|
+
JS_Compute_Geometry_Data: any;
|
|
355
|
+
JS_Merge_Shell: any;
|
|
356
|
+
JS_Extrude_By_Shell: any;
|
|
357
|
+
JS_Sweep_By_Shell: any;
|
|
358
|
+
JS_DSweep_By_Shell: any;
|
|
359
|
+
JS_DExtrude_By_Shell: any;
|
|
360
|
+
JS_Rotate_By_Shell: any;
|
|
361
|
+
JS_DRotate_By_Shell: any;
|
|
362
|
+
JS_Compute_Ray_Test: (view_key: number, origin: ArrayLike<number>, direct: ArrayLike<number>) => Float32Array;
|
|
363
|
+
JS_Compute_Geometry_Ray_Test: (view_key: number, geom_key: number, origin: ArrayLike<number>, direct: ArrayLike<number>) => Float32Array;
|
|
364
|
+
JS_Compute_Box_Test: any;
|
|
365
|
+
JS_Compute_Polygon_Area: any;
|
|
366
|
+
JS_Compute_Area: (key: number) => any;
|
|
367
|
+
JS_Compute_Volume: (key: number) => any;
|
|
368
|
+
JS_Is_Solid_Geometry: (key: number) => boolean;
|
|
369
|
+
JS_Compute_Geometry_Distance: (geomKey1: number, geomKey2: number, path1: Int32Array, path2: Int32Array) => Float32Array;
|
|
370
|
+
JS_Segment_To_Stream: any;
|
|
371
|
+
JS_Segment_To_Stream_By_Key: any;
|
|
372
|
+
JS_Segment_To_Stream_With_Compression: any;
|
|
373
|
+
JS_Segment_To_Stream_With_Compression_By_Key: any;
|
|
374
|
+
JS_Stream_To_Segment: any;
|
|
375
|
+
JS_Stream_To_Segment_By_Key: any;
|
|
376
|
+
JS_Stream_To_Segment_By_Key_Tt: any;
|
|
377
|
+
JS_Stream_With_Compression_To_Segment_By_Key: any;
|
|
378
|
+
JS_Segment_Data_To_Stream: any;
|
|
379
|
+
JS_Stream_To_Segment_Data: any;
|
|
380
|
+
JS_Geometry_Data_To_Stream: any;
|
|
381
|
+
JS_Stream_To_Geometry_Data: any;
|
|
382
|
+
JS_Stream_To_Geometry_Data_By_Key: any;
|
|
383
|
+
JS_Stream_To_Geometry_Data_By_Keys: any;
|
|
384
|
+
JS_Stream_To_Geometry_Data_By_Keys_Tt: any;
|
|
385
|
+
JS_Stream_To_Geometry_Data_With_Compression: any;
|
|
386
|
+
JS_Copy_Segment_By_Key: any;
|
|
387
|
+
JS_Show_Database_Info: any;
|
|
388
|
+
JS_Show_Allocated_Memory_Size: any;
|
|
389
|
+
JS_Execute_Task_Post_Processing: any;
|
|
390
|
+
JS_Create_Texture: (buffer: number) => WebGLTexture;
|
|
391
|
+
JS_Boolean_Intersection_Graph: any;
|
|
392
|
+
JS_Boolean_Intersect_Polyline_Polygon_Xy: any;
|
|
393
|
+
JS_Boolean_Intersect_Polygon_Polygon_Xy: (polygon_points: Float64Array, polygon_indexes: Int32Array, tool_points: Float64Array, tool_indexes: Int32Array) => {
|
|
394
|
+
positions: Float64Array;
|
|
395
|
+
indexes: Int32Array;
|
|
396
|
+
};
|
|
397
|
+
JS_Boolean_Intersect_Graph_Polygon_Xy: (graph_points: Float64Array, graph_indexes: Int32Array, tool_points: Float64Array, tool_indexes: Int32Array) => {
|
|
398
|
+
positions: Float64Array;
|
|
399
|
+
indexes: Int32Array;
|
|
400
|
+
};
|
|
401
|
+
JS_Boolean_Subtract_Polygon_Polygon_Xy: (polygon_points: Float64Array, polygon_indexes: Int32Array, tool_points: Float64Array, tool_indexes: Int32Array) => {
|
|
402
|
+
positions: Float64Array;
|
|
403
|
+
indexes: Int32Array;
|
|
404
|
+
};
|
|
405
|
+
JS_Boolean_Cut_Polygon_Polygon_Xy: (polygon_points: Float64Array, polygon_indexes: Int32Array, tool_points: Float64Array, tool_indexes: Int32Array) => {
|
|
406
|
+
positions: Float64Array;
|
|
407
|
+
indexes: Int32Array;
|
|
408
|
+
};
|
|
409
|
+
JS_Boolean_Subtract: (blank_points: Float64Array, blank_indexes: Int32Array, tool_points: Float64Array, tool_indexes: Int32Array) => {
|
|
410
|
+
positions: Float64Array;
|
|
411
|
+
indexes: Int32Array;
|
|
412
|
+
};
|
|
413
|
+
JS_Feature_Extrude: (points: Float64Array, indexes: Int32Array, normal: Float64Array, options: string) => {
|
|
414
|
+
positions: Float64Array;
|
|
415
|
+
indexes: Int32Array;
|
|
416
|
+
};
|
|
417
|
+
JS_Planar_Polyline_Offset: (points: Float64Array, offset_value: number) => List<Float64Array>;
|
|
418
|
+
LonganCore: typeof LonganCore;
|
|
419
|
+
StringKeyList: typeof StringKeyList;
|
|
420
|
+
NumberKeyList: typeof NumberKeyList;
|
|
421
|
+
List: typeof List;
|
|
422
|
+
Stack: typeof Stack;
|
|
423
|
+
Point: typeof Point;
|
|
424
|
+
DPoint: typeof DPoint;
|
|
425
|
+
Vector: typeof Vector;
|
|
426
|
+
DVector: typeof DVector;
|
|
427
|
+
Matrix4: typeof Matrix4;
|
|
428
|
+
DMatrix4: typeof DMatrix4;
|
|
429
|
+
Wcs: typeof Wcs;
|
|
430
|
+
DWcs: typeof DWcs;
|
|
431
|
+
BoundingBox: typeof BoundingBox;
|
|
432
|
+
DBoundingBox: typeof DBoundingBox;
|
|
433
|
+
GeometryOperators: typeof GeometryOperators;
|
|
434
|
+
DGeometryOperators: typeof DGeometryOperators;
|
|
435
|
+
Tolerance: typeof Tolerance;
|
|
436
|
+
DTolerance: typeof DTolerance;
|
|
437
|
+
Viewer: typeof Viewer;
|
|
438
|
+
Process: typeof Process;
|
|
439
|
+
ViewModel: typeof ViewModel;
|
|
440
|
+
ViewMode: typeof LonganCore.ViewMode;
|
|
441
|
+
Include: typeof Include;
|
|
442
|
+
Style: typeof Style;
|
|
443
|
+
Geometry: typeof Geometry;
|
|
444
|
+
Marker: typeof Marker;
|
|
445
|
+
Line: typeof Line;
|
|
446
|
+
Polyline: typeof Polyline;
|
|
447
|
+
Shell: typeof Shell;
|
|
448
|
+
TriangularShell: typeof TriangularShell;
|
|
449
|
+
Mesh: typeof Mesh;
|
|
450
|
+
AnimationManager: typeof AnimationManager;
|
|
451
|
+
CommandManager: typeof CommandManager;
|
|
452
|
+
HistoryManager: typeof HistoryManager;
|
|
453
|
+
OperatorManager: typeof OperatorManager;
|
|
454
|
+
PersistenceManager: typeof PersistenceManager;
|
|
455
|
+
CloneManager: typeof CloneManager;
|
|
456
|
+
TaskManager: typeof TaskManager;
|
|
457
|
+
ViewerManagerBase: typeof ViewerManagerBase;
|
|
458
|
+
SelectionManager: typeof SelectionManager;
|
|
459
|
+
HighlightManager: typeof HighlightManager;
|
|
460
|
+
StyleManagerBase: typeof StyleManagerBase;
|
|
461
|
+
DataManagerBase: typeof DataManagerBase;
|
|
462
|
+
CollisionManager: typeof CollisionManager;
|
|
463
|
+
IsolationManager: typeof IsolationManager;
|
|
464
|
+
InvisibleManager: typeof InvisibleManager;
|
|
465
|
+
SelectionKey: typeof SelectionKey;
|
|
466
|
+
RenderObject: typeof RenderObject;
|
|
467
|
+
RenderInstanceObject: typeof RenderInstanceObject;
|
|
468
|
+
LightModel: typeof LightModel;
|
|
469
|
+
LabelObject: typeof LabelObject;
|
|
470
|
+
LabelObjectList: typeof LabelObjectList;
|
|
471
|
+
Cube: typeof Cube;
|
|
472
|
+
EarthObject: typeof EarthObject;
|
|
473
|
+
EarthLabelObjectList: typeof EarthLabelObjectList;
|
|
474
|
+
GISBIMObject: typeof GISBIMObject;
|
|
475
|
+
PanoramaObject: typeof PanoramaObject;
|
|
476
|
+
ViewPointObjectList: typeof ViewPointObjectList;
|
|
477
|
+
RoamPathObjectList: typeof RoamPathObjectList;
|
|
478
|
+
ReferenceObject: typeof ReferenceObject;
|
|
479
|
+
ViewerOperator: typeof ViewerOperator;
|
|
480
|
+
CameraMouse: typeof CameraMouse;
|
|
481
|
+
EarthCameraMouse: typeof EarthCameraMouse;
|
|
482
|
+
ObjectSelector: typeof ObjectSelector;
|
|
483
|
+
PanoramaCameraMouse: typeof PanoramaCameraMouse;
|
|
484
|
+
ObjectPreSelector: typeof ObjectPreSelector;
|
|
485
|
+
CameraTouch: typeof CameraTouch;
|
|
486
|
+
PerspectiveCameraMouse: typeof PerspectiveCameraMouse;
|
|
487
|
+
CuttingBox: typeof CuttingBox;
|
|
488
|
+
CuttingPlane: typeof CuttingPlane;
|
|
489
|
+
PropertyComponent: typeof PropertyComponent;
|
|
490
|
+
Shader: typeof Shader;
|
|
491
|
+
BaseShader: typeof BaseShader;
|
|
492
|
+
Command: typeof Command;
|
|
493
|
+
CommandSelect: typeof CommandSelect;
|
|
494
|
+
CommandPanoramaModelSelect: typeof CommandPanoramaModelSelect;
|
|
495
|
+
CommandImportEarth: typeof CommandImportEarth;
|
|
496
|
+
TypeHelper: typeof TypeHelper;
|
|
497
|
+
LonganLoad: typeof LonganLoad;
|
|
498
|
+
SegmentViewObject: typeof SegmentViewObject;
|
|
499
|
+
CameraPlanMouse: typeof CameraPlanMouse;
|
|
500
|
+
Image: typeof Image;
|
|
501
|
+
UpdateType: typeof LonganCore.UpdateType;
|
|
502
|
+
IntersectionGraph: typeof IntersectionGraph;
|
|
503
|
+
StateItem: typeof StateItem;
|
|
504
|
+
StatePack: typeof StatePack;
|
|
505
|
+
TaskExecuteState: typeof TaskExecuteState;
|
|
506
|
+
TaskState: typeof TaskState;
|
|
507
|
+
TaskFinishState: typeof TaskFinishState;
|
|
508
|
+
DeltaState: typeof DeltaState;
|
|
509
|
+
ObjectState: typeof ObjectState;
|
|
510
|
+
RenderObjectState: typeof RenderObjectState;
|
|
511
|
+
CommandStepState: typeof CommandStepState;
|
|
512
|
+
RollType: typeof RollType;
|
|
513
|
+
ParametricGeometry: typeof ParametricGeometry;
|
|
514
|
+
CollisionType: typeof LonganCore.CollisionType;
|
|
515
|
+
Segment: typeof Segment;
|
|
516
|
+
CylinderCap: typeof CylinderCap;
|
|
517
|
+
ImagePixelFormat: typeof ImagePixelFormat;
|
|
518
|
+
ProjectionType: typeof ProjectionType;
|
|
519
|
+
UvType: typeof UvType;
|
|
520
|
+
DynamicMemoryType: typeof DynamicMemoryType;
|
|
521
|
+
AlphaTextureBlendingType: typeof AlphaTextureBlendingType;
|
|
522
|
+
ViewportType: typeof ViewportType;
|
|
523
|
+
Viewport: typeof Viewport;
|
|
524
|
+
Color: typeof Color;
|
|
525
|
+
Visibility: typeof Visibility;
|
|
526
|
+
SelectabilityType: typeof SelectabilityType;
|
|
527
|
+
Selectability: typeof Selectability;
|
|
528
|
+
Property: typeof Property;
|
|
529
|
+
ModellingMatrix: typeof ModellingMatrix;
|
|
530
|
+
Diagnosis: typeof Diagnosis;
|
|
531
|
+
RenderingOptions: typeof RenderingOptions;
|
|
532
|
+
HeuristicOptions: typeof HeuristicOptions;
|
|
533
|
+
DriverOptions: typeof DriverOptions;
|
|
534
|
+
Text: typeof Text;
|
|
535
|
+
Condition: typeof Condition;
|
|
536
|
+
ElementType: typeof LonganCore.ElementType;
|
|
537
|
+
LButtonState: typeof LButtonState;
|
|
538
|
+
StepFlow: typeof StepFlow;
|
|
539
|
+
StepType: typeof StepType;
|
|
540
|
+
CommandStep: typeof CommandStep;
|
|
541
|
+
deepClone: typeof deepClone;
|
|
542
|
+
uuid: typeof uuid;
|
|
543
|
+
EarthVector3D: typeof EarthVector3D;
|
|
544
|
+
CameraChangeType: typeof LonganCore.CameraChangeType;
|
|
545
|
+
TextAlignment: typeof LonganCore.TextAlignment;
|
|
546
|
+
CameraOperateState: typeof CameraOperateState;
|
|
547
|
+
MoveButtonType: typeof MoveButtonType;
|
|
548
|
+
ViewerEvent: typeof LonganCore.ViewerEvent;
|
|
549
|
+
AreaSelectionType: typeof LonganCore.AreaSelectionType;
|
|
550
|
+
CoordinateSystem: typeof LonganCore.CoordinateSystem;
|
|
551
|
+
Task: typeof Task;
|
|
552
|
+
Camera: typeof Camera;
|
|
553
|
+
TouchOpertionType: typeof TouchOpertionType;
|
|
554
|
+
EdgeType: typeof LonganCore.EdgeType;
|
|
555
|
+
CuttingPlanes: typeof CuttingPlanes;
|
|
556
|
+
IDB: typeof IDB;
|
|
557
|
+
GsWebGLUtility: typeof LonganCore.GsWebGLUtility;
|
|
558
|
+
ObjectType: typeof LonganCore.ObjectType;
|
|
559
|
+
AysnTaskManager: typeof AysnTaskManager;
|
|
560
|
+
ProcessManagerBase: typeof ProcessManagerBase;
|
|
561
|
+
FontUnitsType: typeof LonganCore.FontUnitsType;
|
|
562
|
+
SynchronManager: typeof SynchronManager;
|
|
563
|
+
Surface: typeof Surface;
|
|
564
|
+
PolyCylinder: typeof PolyCylinder;
|
|
565
|
+
TilingType: typeof TilingType;
|
|
566
|
+
vertexArrayObjectInfo: typeof vertexArrayObjectInfo;
|
|
567
|
+
};
|
|
568
|
+
export default Longan;
|
|
569
|
+
export { JS_Init_Apis, JS_Init_Database, JS_Fina_Database, JS_Init_Multithreading_Services, JS_Fina_Multithreading_Services, JS_Open_Segment, JS_Open_Segment_By_Key, JS_Close_Segment, JS_Delete_Segment, JS_Delete_Segment_By_Key, JS_Delete_By_Key, JS_Clear_Geometry, JS_Clear_Geometry_By_Key, JS_Clear_Attributes, JS_Clear_Attributes_By_Key, JS_Clear_Includes, JS_Clear_Includes_By_Key, JS_Clear_Styles, JS_Clear_Styles_By_Key, JS_Clear_Subsegments, JS_Clear_Subsegments_By_Key, JS_Clear_All, JS_Clear_All_By_Key, JS_Include_Segment_By_Key, JS_Conditional_Include_By_Key, JS_Style_Segment_By_Key, JS_Conditional_Style_By_Key, JS_Make_Context_Current, JS_Update_Display, JS_Update_View_Display_By_Key, JS_Update_View_Display_With_Framerate_By_Key, JS_Update_View_Display_With_Time_By_Key, JS_Asyn_Update_Geometry_Data_By_Key, JS_Asyn_Update_Geometry_Data_By_Key_Tt, JS_Asyn_Need_Update_View_By_Key, JS_Asyn_Update_Camera_By_Key, JS_Asyn_Update_View_By_Key, JS_Asyn_Update_View_By_Key_Tt, JS_Asyn_Render_View_By_Key, JS_Asyn_Render_View_With_Time_By_Key, JS_Show_Asyn_Geometry_Data_Keys, JS_Show_Asyn_Remove_Geometry_Data_Keys, JS_Show_Asyn_Buffer_Geometry_Keys, JS_Asyn_Buffer_Geometry_By_Key, JS_Asyn_Buffer_Geometry_By_Key_Tt, JS_Show_Key_Type, JS_Show_Key_Tag, JS_Show_Owner_By_Key, JS_Compute_Path, JS_Compute_Coordinates_By_Key, JS_Compute_Coordinates_By_Path, JS_Show_BoundingBox_By_Key, JS_Compute_Boundingbox_By_Key, JS_Compute_Boundingbox_With_Visibility_By_Key, JS_Compute_View_Boundingbox_By_Key, JS_Compute_View_Boundingbox_By_Keys, JS_Compute_View_Boundingboxes_By_Keys, JS_Compute_Segment_Boundingbox_By_Key, JS_Clear_Segment_Boundingbox_By_Key, JS_Compute_Visible_By_Key, JS_Show_Attribute_Count, JS_Show_Attribute_List, JS_Show_Geometry_Count, JS_Show_Geometry_List, JS_Show_Subsegment_Count, JS_Show_Subsegment_List, JS_Show_All_Subsegment_Count, JS_Show_All_Subsegment_List, JS_Show_Include_Count, JS_Show_Include_List, JS_Show_Include, JS_Show_Include_Segment, JS_Show_Style_Count, JS_Show_Style_List, JS_Show_Style, JS_Show_Style_Segment, JS_Show_Segment_Name, JS_Show_Segment_Path, JS_Segment_Exists, JS_Move_Key, JS_Move_Key_By_Key, JS_Rename_Segment, JS_Add_Property_Boolean, JS_Add_Property_Integer, JS_Add_Property_Double, JS_Add_Property_String, JS_Add_Property_Json, JS_Show_Property_Type, JS_Show_Property_Boolean, JS_Show_Property_Integer, JS_Show_Property_Double, JS_Show_Property_String, JS_Property_Exists, JS_Remove_Property, JS_Clear_Properties, JS_Show_Properties, JS_Show_Key_By_Id, JS_Set_Key_Index, JS_Show_Key_Index, JS_Compute_Selection_By_Key, JS_Compute_Selection_By_Area, JS_Show_Selection_Count, JS_Show_Selection_Element, JS_Show_Selection_Path, JS_Show_Selection_Path_By_Keys, JS_Show_Selection_Position, JS_Show_Selection_Param, JS_Show_Selection_Indexes, JS_Show_Selection_Test_Info, JS_Compute_Collision_By_Keys, JS_Compute_Collision_By_Key, JS_Compute_Collision_By_Keys_Tt, JS_Compute_Collision_By_Key_Tt, JS_Show_Collision_Status, JS_Show_Collision_Count, JS_Show_Collision_Elements, JS_Show_Collision_Paths, JS_Show_Collision_Path_By_Keys, JS_Show_Collision_Position, JS_Show_Collision_Type, JS_Add_Font_Library, JS_Font_Library_Exists, JS_Remove_Font_Library, JS_Clear_Font_Library, JS_Set_Driver_Configs, JS_Set_Driver_Options, JS_Show_Driver_Options, JS_Show_One_Driver_Option, JS_Set_Shader, JS_UnSet_Shader, JS_Show_Shader, JS_Show_One_Shader, JS_Set_Viewport, JS_Set_Camera, JS_Set_Camera_Position, JS_Set_Camera_Target, JS_Set_Camera_Up, JS_Set_Camera_Field, JS_Set_Camera_Extent, JS_Set_Camera_Projection, JS_Keep_Camera_Ratio, JS_Show_Camera, JS_Show_Camera_Position, JS_Show_Camera_Target, JS_Show_Camera_Up, JS_Show_Camera_Field, JS_Show_Camera_Extent, JS_Show_Camera_Projection, JS_Show_Camera_Projection_Matrix, JS_Show_Camera_View_Matrix, JS_Show_Path_Camera_Position, JS_Show_Path_Camera_Target, JS_Dolly_Camera, JS_Roll_Camera, JS_Zoom_Camera, JS_UnSet_Camera, JS_Set_Color, JS_UnSet_Color, JS_UnSet_One_Color, JS_Show_Color, JS_Show_One_Color, JS_Show_Color_By_Value, JS_Set_Geometry_Color, JS_Set_Geometry_Color_By_Value, JS_Show_Geometry_Color_By_Value, JS_UnSet_Geometry_Color, JS_Set_Visibility, JS_UnSet_Visibility, JS_UnSet_One_Visibility, JS_Show_Visibility, JS_Show_One_Visibility, JS_Set_Selectability, JS_UnSet_Selectability, JS_UnSet_One_Selectability, JS_Show_Selectability, JS_Show_One_Selectability, JS_Set_ModellingMatrix, JS_Append_ModellingMatrix, JS_Show_ModellingMatrix, JS_Show_Path_ModellingMatrix, JS_UnSet_ModellingMatrix, JS_Set_Rendering_Options, JS_UnSet_Rendering_Options, JS_UnSet_One_Rendering_Option, JS_Show_Rendering_Options, JS_Show_One_Rendering_Option, JS_Show_One_Default_Rendering_Option, JS_Show_One_Path_Rendering_Option, JS_Set_Heuristic_Options, JS_Set_One_Heuristic_Option, JS_UnSet_Heuristic_Options, JS_UnSet_One_Heuristic_Option, JS_Show_Heuristic_Options, JS_Show_One_Heuristic_Option, JS_Set_Condition, JS_Show_Condition, JS_UnSet_Condition, JS_Set_Text_Font, JS_UnSet_Text_Font, JS_UnSet_One_Text_Font, JS_Show_Text_Font, JS_Show_One_Text_Font, JS_Attribute_Exists, JS_Image_Exists, JS_Resize_By_Key, JS_Insert_Marker, JS_Edit_Marker, JS_Show_Marker, JS_Insert_Point_Cloud, JS_Edit_Point_Cloud, JS_Show_Point_Cloud, JS_Insert_Line, JS_Edit_Line, JS_Show_Line, JS_Insert_Polyline, JS_Edit_Polyline, JS_Show_Polyline_Count, JS_Show_Polyline, JS_Insert_Circle, JS_Edit_Circle, JS_Show_Circle, JS_Insert_Cylinder, JS_Show_Cylinder, JS_Insert_PolyCylinder, JS_Edit_PolyCylinder, JS_Insert_Shell, JS_Edit_Shell, JS_Show_Shell_Size, JS_Show_Shell, JS_Insert_Triangular_Shell, JS_Insert_Mesh, JS_Edit_Mesh_Points, JS_Show_Mesh_Size, JS_Show_Mesh, JS_Insert_Vector_Text, JS_Insert_Parametric_Geometry, JS_Edit_Parametric_Geometry, JS_Show_Parametric_Geometry, JS_Insert_Parametric_Geometries, JS_Insert_Light, JS_Edit_Light, JS_Show_Light, JS_Insert_Image, JS_Set_Image_Options, JS_UnSet_One_Image_Option, JS_Show_Image_Position, JS_Show_Image_Size, JS_Show_Image_Data, JS_Show_Image_Options, JS_Show_One_Image_Option, JS_Show_Image, JS_Insert_Cutting_Planes, JS_Edit_Cutting_Planes, JS_Show_Cutting_Planes, JS_Show_Geometry_Vertices_Position_By_Indexes, JS_Show_Geometry_Element_Type, JS_Set_Geometry_Texture_Coords, JS_Show_Geometry_Texture_Dimension, JS_Show_Geometry_Texture_Coords, JS_UnSet_Geometry_Texture_Coords, JS_Compute_Geometry_Texture_Coords, JS_Set_Geometry_Normals, JS_Show_Geometry_Normals, JS_UnSet_Geometry_Normals, JS_Compute_Geometry_Tessellate_Data, JS_Compute_Geometry_Data, JS_Merge_Shell, JS_Extrude_By_Shell, JS_Sweep_By_Shell, JS_DSweep_By_Shell, JS_DExtrude_By_Shell, JS_Rotate_By_Shell, JS_DRotate_By_Shell, JS_Compute_Ray_Test, JS_Compute_Geometry_Ray_Test, JS_Compute_Box_Test, JS_Compute_Polygon_Area, JS_Compute_Area, JS_Compute_Volume, JS_Is_Solid_Geometry, JS_Compute_Geometry_Distance, JS_Segment_To_Stream, JS_Segment_To_Stream_By_Key, JS_Segment_To_Stream_With_Compression, JS_Segment_To_Stream_With_Compression_By_Key, JS_Stream_To_Segment, JS_Stream_To_Segment_By_Key, JS_Stream_To_Segment_By_Key_Tt, JS_Stream_With_Compression_To_Segment_By_Key, JS_Segment_Data_To_Stream, JS_Stream_To_Segment_Data, JS_Geometry_Data_To_Stream, JS_Stream_To_Geometry_Data, JS_Stream_To_Geometry_Data_By_Key, JS_Stream_To_Geometry_Data_By_Keys, JS_Stream_To_Geometry_Data_By_Keys_Tt, JS_Stream_To_Geometry_Data_With_Compression, JS_Copy_Segment_By_Key, JS_Show_Database_Info, JS_Show_Allocated_Memory_Size, JS_Execute_Task_Post_Processing, JS_Create_Texture, JS_Boolean_Intersection_Graph, JS_Boolean_Intersect_Polyline_Polygon_Xy, JS_Boolean_Intersect_Polygon_Polygon_Xy, JS_Boolean_Intersect_Graph_Polygon_Xy, JS_Boolean_Subtract_Polygon_Polygon_Xy, JS_Boolean_Cut_Polygon_Polygon_Xy, JS_Boolean_Subtract, JS_Feature_Extrude, JS_Planar_Polyline_Offset, LonganCore, StringKeyList, NumberKeyList, List, Stack, Point, DPoint, Vector, DVector, Matrix4, DMatrix4, Wcs, DWcs, BoundingBox, DBoundingBox, GeometryOperators, DGeometryOperators, Tolerance, DTolerance, Viewer, Process, ViewModel, ViewMode, Include, Style, Geometry, Marker, Line, Polyline, Shell, TriangularShell, Mesh, AnimationManager, CommandManager, HistoryManager, OperatorManager, PersistenceManager, CloneManager, TaskManager, ViewerManagerBase, SelectionManager, HighlightManager, StyleManagerBase, DataManagerBase, CollisionManager, IsolationManager, InvisibleManager, SelectionKey, RenderObject, RenderInstanceObject, LightModel, LabelObject, LabelObjectList, Cube, EarthObject, EarthLabelObjectList, GISBIMObject, PanoramaObject, ViewPointObjectList, RoamPathObjectList, ReferenceObject, ViewerOperator, CameraMouse, EarthCameraMouse, ObjectSelector, PanoramaCameraMouse, ObjectPreSelector, CameraTouch, PerspectiveCameraMouse, CuttingBox, CuttingPlane, PropertyComponent, Shader, BaseShader, Command, CommandSelect, CommandPanoramaModelSelect, CommandImportEarth, TypeHelper, LonganLoad, SegmentViewObject, CameraPlanMouse, Image, UpdateType, IntersectionGraph, StateItem, StatePack, TaskExecuteState, TaskState, TaskFinishState, DeltaState, ObjectState, RenderObjectState, CommandStepState, RollType, ParametricGeometry, CollisionType, Segment, CylinderCap, ImagePixelFormat, ProjectionType, UvType, DynamicMemoryType, AlphaTextureBlendingType, ViewportType, Viewport, Color, Visibility, SelectabilityType, Selectability, Property, ModellingMatrix, Diagnosis, RenderingOptions, HeuristicOptions, DriverOptions, Text, Condition, ElementType, LButtonState, StepFlow, StepType, CommandStep, deepClone, uuid, EarthVector3D, CameraChangeType, TextAlignment, CameraOperateState, MoveButtonType, ViewerEvent, AreaSelectionType, CoordinateSystem, Task, Camera, TouchOpertionType, EdgeType, CuttingPlanes, IDB, GsWebGLUtility, ObjectType, AysnTaskManager, ProcessManagerBase, FontUnitsType, SynchronManager, Surface, PolyCylinder, TilingType, vertexArrayObjectInfo, };
|