@agrotools1/at-components 0.6.16 → 0.6.17
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/dist/Map/Map.d.ts +27 -4
- package/dist/Map/Map.vue.js +1 -1
- package/dist/Map/Map.vue2.js +162 -121
- package/dist/Stepper/Stepper.vue.js +48 -35
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/analysis/SlicePlane.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/ImageMaterial.glsl.js +56 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/Laserlines.glsl.js +7 -7
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/LineCallout.glsl.js +138 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/LineMarker.glsl.js +200 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/NativeLine.glsl.js +40 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/Path.glsl.js +111 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/Pattern.glsl.js +185 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/SlicePlaneMaterial.glsl.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/WaterSurface.glsl.js +158 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/chunks/vec32.js +13 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/MapUtils.js +18 -11
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/PooledArray.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/accessorSupport/diffUtils.js +75 -48
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/arrayUtils.js +59 -53
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/asyncUtils.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/colorUtils.js +77 -59
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/fontUtils.js +22 -18
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/handleUtils.js +12 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/libs/gl-matrix-2/factories/mat2f64.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/libs/gl-matrix-2/math/mat2.js +104 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/libs/gl-matrix-2/math/mat4.js +12 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/mathUtils.js +29 -25
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/quantityFormatUtils.js +115 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/quantityUtils.js +38 -19
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/reactiveUtils.js +63 -49
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/scheduling.js +56 -48
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/time.js +9 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/unitFormatUtils.js +95 -41
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/core/unitUtils.js +130 -89
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/Circle.js +82 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/ellipsoidUtils.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectBoundingRect.js +11 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectPointToVector.js +16 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectPolygonToWGS84ComparableLonLat.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectPolylineToWGS84ComparableLonLat.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection/projectVectorToPoint.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/projection.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/spatialReferenceEllipsoidUtils.js +12 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/FloatArray.js +12 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/Indices.js +26 -22
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/aaBoundingBox.js +133 -74
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/aaBoundingRect.js +78 -49
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/axisAngleDegrees.js +13 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/buffer/BufferView.js +93 -93
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/coordsUtils.js +132 -68
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/geodesicUtils.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/heightModelInfoUtils.js +71 -19
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/lineSegment.js +12 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/meshUtils/External.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/plane.js +107 -89
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/ray.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/rotate.js +44 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/triangle.js +16 -11
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/vector.js +14 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/geometry/support/vectorStacks.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/graphics/data/QueryEngine.js +12 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/graphics/dehydratedFeatures.js +64 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/graphics/hydratedFeatures.js +54 -46
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/graphics/sources/support/uploadAssets.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/mixins/ArcGISMapService.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/mixins/PortalLayer.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/support/ElevationSampler.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/support/layerUtils.js +44 -24
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/layers/support/vectorTileLayerLoader.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/libs/maquette/h.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/UniqueValueRenderer.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/support/AuthoringInfo.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/support/numberUtils.js +65 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/support/rendererConversion.js +55 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/support/renderingInfoUtils.js +115 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/renderers/visualVariables/support/visualVariableUtils.js +195 -149
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/support/actions/ActionSlider.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/support/basemapUtils.js +31 -26
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/support/elevationInfoUtils.js +77 -57
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/support/progressUtils.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/callouts/calloutUtils.js +20 -12
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/cim/CIMSymbolRasterizer.js +80 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/cim/utils.js +100 -76
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/IconSymbol3DLayerResource.js +11 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/ObjectSymbol3DLayerResource.js +7 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/cimSymbolUtils.js +169 -16
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/defaults3D.js +31 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/defaultsJSON.js +8 -7
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/gfxUtils.js +89 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewCIMSymbol.js +47 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewSymbol2D.js +142 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewSymbol3D.js +288 -37
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewUtils.js +87 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/previewWebStyleSymbol.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/renderUtils.js +82 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/styleUtils.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/svgUtils.js +271 -7
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/symbolLayerUtils3D.js +34 -16
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/symbolUtils.js +147 -41
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/symbols/support/utils.js +169 -128
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/ControlPointsTransformTool.js +149 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/MediaTransformToolsWrapper.js +78 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/TransformTool.js +218 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/draw/DrawGraphicTool2D.js +70 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/draw/symbols.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/DragManipulation.js +50 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/Manipulation.js +28 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/RotateManipulation.js +50 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/ScaleManipulation.js +78 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools/manipulations/utils.js +54 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/interactive/editingTools.js +10 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/FeatureLayerView2D.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/ImageryLayerView2D.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/TileLayerView2D.js +8 -8
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/features/Processor.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/layers/support/ExportStrategy.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/2d/navigation/MapViewNavigation.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/ResizeManipulator.js +31 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/RotateManipulator.js +38 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/ShiftManipulator.js +88 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/sliceToolConfig.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/Slice/sliceToolUtils.js +129 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/images/Factory.js +11 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/images/generateTextures.js +27 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/analysis/images/heading-rotate-svg.js +4 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/environment/CloudsParameters.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/environment/weather.js +3 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/SegmentLabels3D.js +24 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/GrabbingState.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/ManipulatorState.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/ManipulatorType.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/dragEventPipeline3D.js +121 -67
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/draw/DrawGraphicTool3D.js +138 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/geometryUtils.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/isSupportedGraphicUtils.js +26 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/lineGraphicVisualElementUtils.js +74 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/Manipulation.js +53 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveManipulation.js +84 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveXYAxisManipulation.js +116 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveXYDiscManipulation.js +90 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveXYGraphicManipulation.js +36 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/MoveZManipulation.js +96 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/config.js +29 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulations/moveUtils.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/manipulatorUtils.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/meshFastUpdateUtils.js +34 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/moveGraphic/GraphicMoveTool.js +256 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/moveGraphic/isSupportedGraphic.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/originGraphicVisualElementUtils.js +94 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/reshapeGraphic/GraphicReshapeTool.js +93 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/reshapeGraphic/ReshapeOperation.js +738 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/reshapeGraphic/edgeOffsetUtils.js +39 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/reshapeGraphic/isSupportedGraphic.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/settings.js +124 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/snapping/SnapToScene.js +38 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ExtentMove.js +108 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ExtentRotate.js +96 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ExtentScale.js +138 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ExtentTransformTool.js +164 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/GraphicScaleRotateTransform.js +331 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/GraphicTransformTool.js +170 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/PreserveAspectRatio.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ScaleRotateMeshAdapter.js +96 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/ScaleRotateObjectSymbol3DAdapter.js +142 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/extentUtils.js +71 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/isSupportedGraphic.js +27 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/transformGraphic/undoRecords.js +37 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools/visualElementUtils.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/editingTools.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/manipulatorUtils.js +50 -38
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/measurementTools/areaMeasurement3D/AreaMeasurement3DTool.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/measurementTools/directLineMeasurement3D/DirectLineMeasurement3DTool.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/visualElements/OutlineVisualElement.js +196 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/interactive/visualElements/VerticesVisualElement.js +108 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/GraphicsLayerView3D.js +110 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/LayerView3D.js +42 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/DisplayFeatureLimit.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/ElevationAligners.js +87 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/ElevationQuery.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/ExtentSet.js +71 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/GraphicState.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/GraphicStateTracking.js +65 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DCalloutSymbolLayerFactory.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DCore.js +1110 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DDrapedGraphicLayer.js +84 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DElevationAlignment.js +93 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DExtrudeSymbolLayer.js +221 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DFeatureStore.js +43 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DFrustumVisibility.js +78 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DGraphic.js +164 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DGraphicCreationContext.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DIconSymbolLayer.js +367 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DLineCalloutSymbolLayer.js +115 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DLineSymbolLayer.js +226 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DLodInstanceGraphicLayer.js +96 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DMeshFillSymbolLayer.js +511 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DMeshObject3DGraphicLayer.js +91 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObject3DGraphicLayer.js +147 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObjectMetadata.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObjectStateSet.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObjectStates.js +69 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DObjectSymbolLayer.js +347 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DPathSymbolLayer.js +240 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DPathSymbolLayerConstants.js +6 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DPointSymbol.js +51 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DPolygonFillSymbolLayer.js +203 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DScaleVisibility.js +145 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbol.js +158 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbolCreationContext.js +14 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbolFactory.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbolLayer.js +195 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DSymbolLayerFactory.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DTextSymbolLayer.js +153 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DWaterSymbolLayer.js +151 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Graphics3DWebStyleSymbol.js +57 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/GraphicsCorePerformanceInfo.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/GraphicsProcessor.js +192 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/LabelParameters.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/Loadable.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/MeshFastUpdateProcessor.js +85 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/SpatialIndex2D.js +70 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/SymbolComplexity.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/constants.js +6 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/defaultSymbolComplexity.js +152 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/elevationAlignPointsInFeatures.js +35 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/elevationAlignmentUtils.js +107 -33
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/enums.js +10 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/featureExpressionInfoUtils.js +48 -25
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/graphicUtils.js +119 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/interfaces.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/lineUtils.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/lodResourceUtils.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/objectResourceUtils.js +15 -15
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/placementUtils.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/pointUtils.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/polygonUtils.js +60 -29
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/primitiveObjectSymbolUtils.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/queryForSymbologySnapping.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/symbolMemory.js +6 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/graphics/webStyleUtils.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/FastSymbolUpdates.js +323 -31
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/LayerViewPerformanceInfo.js +8 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/StageLayerElevationProvider.js +76 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/edgeUtils.js +37 -8
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/layerUtils.js +10 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/patternUtils.js +52 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/projectExtentUtils.js +14 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/symbolColorUtils.js +28 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/layers/support/uvUtils.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/ElevationProvider.js +11 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/ElevationUpdateEvent.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/FrustumExtentIntersection.js +105 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/buffer/InterleavedLayout.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/engineContent/line.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/engineContent/marker.js +3 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/extentUtils.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/geometryUtils/ray.js +15 -11
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/intersectionUtils.js +33 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/mathUtils.js +13 -8
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/orientedBoundingBox.js +22 -22
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/renderInfoUtils/line.js +29 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/renderInfoUtils/point.js +13 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/support/renderInfoUtils/polygon.js +63 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/ShaderOutput.js +25 -17
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/attributes/PathVertexPosition.glsl.js +105 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/attributes/VertexNormal.glsl.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/attributes/VertexPosition.glsl.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/FoamRendering.glsl.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/Gamma.glsl.js +14 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/NormalUtils.glsl.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/PhysicallyBasedRendering.glsl.js +53 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/ScreenSpaceReflections.glsl.js +123 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/Water.glsl.js +85 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/shading/WaterDistortion.glsl.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderLibrary/util/CloudsParallaxShading.glsl.js +105 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/core/shaderModules/TextureCubePassUniform.js +10 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/effects/RenderPlugin.js +5 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/AnimationTimer.js +15 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/BoundingInfo.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/FontMetrics.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/GeometryUtil.js +308 -73
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/GeometryWithMapPositions.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Intersector.js +14 -14
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Normals.js +16 -8
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Object3D.js +14 -14
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Object3DStateSet.js +57 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Octree.js +4 -4
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/Path.js +40 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathBuilder.js +62 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathCapBuilder.js +100 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathExtruder.js +53 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathGeometry.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathGeometryData.js +94 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathProfile.js +62 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/PathVertex.js +81 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextHelperCanvas.js +6 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextRenderParameters.js +46 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextRenderer.js +219 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextTextureAtlas.js +212 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/TextTextureFactory.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/edgeRendering/edgePreprocessing.js +5 -5
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/BackedBufferObject.js +43 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/InstanceData.js +174 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/InstanceOctree.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/Intersector.js +13 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LevelSelector.js +15 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LodComponentData.js +43 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LodLevel.js +48 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LodRenderer.js +264 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/LodResources.js +44 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/lodRendering/RenderInstanceData.js +110 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/lib/pathGeometryUtils.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/DefaultLayouts.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/DefaultMaterial.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/ImageMaterial.js +66 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/LineCalloutMaterial.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/LineMarkerMaterial.js +104 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/NativeLineMaterial.js +106 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/PathMaterial.js +74 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/PathTechnique.js +49 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/PatternMaterial.js +86 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/PatternStyle.js +7 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/WaterGLMaterial.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/WaterMaterial.js +48 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/WaterTechnique.js +48 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/internal/bufferWriterUtils.js +122 -109
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/internal/waterMaterialUtils.js +4 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/lineStippleUtils.js +18 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/materials/renderers/utils.js +15 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/DefaultMaterialTechnique.js +33 -27
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/ImageMaterial.glsl.js +15 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/ImageMaterialTechnique.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LaserlineTechnique.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineCallout.glsl.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineCalloutTechnique.js +27 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineCalloutTechniqueConfiguration.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineMarker.glsl.js +24 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/LineMarkerTechnique.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/NativeLine.glsl.js +15 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/NativeLineTechnique.js +28 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/NativeLineTechniqueConfiguration.js +13 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/Path.glsl.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/Pattern.glsl.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/PatternTechnique.js +46 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/RibbonLineTechnique.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/SlicePlaneMaterial.glsl.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/SlicePlaneMaterialTechnique.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/3d/webgl-engine/shaders/WaterSurface.glsl.js +29 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/DOMContainer.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/DrawGraphicTool.js +397 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/DrawOperation.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/DrawScreenTool.js +126 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/drawSurfaces.js +47 -21
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/Box.js +481 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/GraphicMover.js +211 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/HighlightHelper.js +38 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/Reshape.js +556 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/createUtils.js +118 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/drawUtils.js +117 -23
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/helpMessageUtils.js +26 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/helpMessageUtils3d.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/input/GraphicMoverEvents.js +65 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/layerUtils.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/draw/support/settings.js +40 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/SegmentLabels.js +147 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/dragEventPipeline.js +165 -81
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/editGeometry/operations/OffsetEdgeVertex.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/editGeometry/support/editPlaneUtils.js +52 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/keybindings.js +3 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchOptions.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchTooltipElevationOptions.js +19 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchTooltipOptions.js +22 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchTooltipVisibleElements.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/SketchValueOptions.js +26 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/constraints.js +25 -25
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/sketch/normalizedPoint.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/snapping/FeatureSnappingEngine.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/snapping/featureSources/FeatureCollectionSnappingSource.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/snapping/featureSources/FeatureServiceSnappingSource.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/snapping/featureSources/GraphicsSnappingSource.js +6 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/DrawTooltipInfos.js +68 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/ExtentTooltipInfos.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/ReshapeTooltipInfos.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/SketchTooltipInfo.js +25 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/Tooltip.js +80 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/TransformTooltipInfos.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/TranslateTooltipInfos.js +64 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/DrawHeaderActions.js +34 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/TooltipEditableField.js +117 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/TooltipField.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/ValueByValue.js +23 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/components/directionModeIcons.js +4 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/constraintUtils.js +90 -91
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/Fields.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContent.js +150 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawCircle.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawMesh.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawPoint.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawPolygon.js +24 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawPolyline.js +24 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentDrawRectangle.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentExtentRotate.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentExtentScale.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentReshapeEdgeOffset.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTransformAbsolute.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTransformRotate.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTransformScale.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateGraphic.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateGraphicXY.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateGraphicZ.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateVertex.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateVertexXY.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/TooltipContentTranslateVertexZ.js +20 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/content/tooltipContentFactory.js +64 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/css.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/fields/TooltipField.js +29 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/fields/TooltipFieldElevation.js +21 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/interactive/tooltip/fields/fields.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/layers/WMSLayerView.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/layers/support/popupUtils.js +17 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/overlay/OutlineOverlayItem.js +48 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/overlay/TextOverlayItem.js +76 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/DefaultsFromMap.js +3 -3
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/angularMeasurementUtils.js +87 -48
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/automaticAreaMeasurementUtils.js +16 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/automaticLengthMeasurementUtils.js +18 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/euclideanAreaMeasurementUtils.js +67 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/euclideanLengthMeasurementUtils.js +92 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/extentUtils.js +12 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/geodesicAreaMeasurementUtils.js +28 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/geodesicLengthMeasurementUtils.js +57 -27
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/geometry2dUtils.js +1 -1
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/hitTestSelectUtils.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/layerViewUtils.js +10 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/support/measurementUtils.js +9 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/webgl/Util.js +90 -70
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/views/webgl/testFloatBufferBlend.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Feature/FeatureRelationship.js +2 -2
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Feature/support/featureUtils.js +54 -49
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/LayerList/LayerListViewModel.js +113 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/LayerList/ListItem.js +144 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/LayerList/ListItemPanel.js +98 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/LayerList/support/layerListUtils.js +64 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/LegendViewModel.js +190 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/Card.js +284 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/CardCSS.js +4 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/Classic.js +110 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/ClassicCSS.js +5 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/support/relationshipUtils.js +46 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/styles/support/univariateUtils.js +64 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/ActiveLayerInfo.js +1053 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/clusterUtils.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/colorRampUtils.js +54 -19
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/relationshipRampUtils.js +59 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/sizeRampUtils.js +155 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/styleUtils.js +44 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend/support/utils.js +75 -13
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Legend.js +115 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Sketch/SketchViewModel.js +886 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Sketch/VisibleElements.js +30 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Sketch/support/OperationHandle.js +81 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/Sketch.js +293 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/smartMapping/support/utils.js +32 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/Heading.js +13 -9
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/LabeledSwitch.js +11 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SelectionToolbar/SelectionToolbarViewModel.js +74 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SelectionToolbar.js +138 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/Selector2D/SelectionOperation.js +95 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/Selector2D/selectorUtils.js +93 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SketchTooltipControls/VisibleElements.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SketchTooltipControls.js +66 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/SnappingControlsViewModel.js +79 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/SnappingLayerListViewModel.js +41 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/SnappingListItem.js +45 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/VisibleElements.js +17 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls/snappingLayerListUtils.js +33 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/SnappingControls.js +141 -0
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/widget.js +7 -6
- package/dist/node_modules/.pnpm/@arcgis_core@4.29.10/node_modules/@arcgis/core/widgets/support/widgetUtils.js +19 -15
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-accordion-item.js +157 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-accordion.js +97 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-block.js +230 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-dropdown-group.js +97 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-dropdown-item.js +171 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-dropdown.js +11 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-radio-button-group.js +144 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-radio-button.js +11 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-switch.js +11 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/calcite-tooltip.js +290 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/dom.js +91 -79
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/dropdown.js +319 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/floating-ui.js +11 -10
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/radio-button.js +244 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/resources3.js +20 -0
- package/dist/node_modules/.pnpm/@esri_calcite-components@2.7.1/node_modules/@esri/calcite-components/dist/components/switch.js +123 -0
- package/dist/node_modules/.pnpm/@terraformer_arcgis@2.1.2/node_modules/@terraformer/arcgis/dist/t-arcgis.esm.js +124 -45
- package/dist/node_modules/.pnpm/@terraformer_wkt@2.2.1/node_modules/@terraformer/wkt/dist/t-wkt.esm.js +1287 -0
- package/dist/style.css +1 -1
- package/package.json +3 -1
- package/dist/_virtual/_commonjsHelpers.js +0 -8
- package/dist/_virtual/terraformer-wkt-parser.js +0 -4
- package/dist/_virtual/terraformer.js +0 -4
- package/dist/node_modules/.pnpm/terraformer-wkt-parser@1.2.1/node_modules/terraformer-wkt-parser/terraformer-wkt-parser.js +0 -469
- package/dist/node_modules/.pnpm/terraformer@1.0.12/node_modules/terraformer/terraformer.js +0 -637
|
@@ -0,0 +1,174 @@
|
|
|
1
|
+
import { _ as c } from "../../../../../chunks/tslib.es6.js";
|
|
2
|
+
import F from "../../../../../core/Accessor.js";
|
|
3
|
+
import { reallocGrowthFactor as I } from "../../../../../core/arrayUtils.js";
|
|
4
|
+
import M from "../../../../../core/Evented.js";
|
|
5
|
+
import { property as f } from "../../../../../core/accessorSupport/decorators/property.js";
|
|
6
|
+
import "../../../../../core/has.js";
|
|
7
|
+
import "../../../../../core/Logger.js";
|
|
8
|
+
import { subclass as v } from "../../../../../core/accessorSupport/decorators/subclass.js";
|
|
9
|
+
import { fromMat4 as S, invert as w, transpose as C } from "../../../../../core/libs/gl-matrix-2/math/mat3.js";
|
|
10
|
+
import { create as R } from "../../../../../core/libs/gl-matrix-2/factories/mat3f64.js";
|
|
11
|
+
import { multiply as V } from "../../../../../core/libs/gl-matrix-2/math/mat4.js";
|
|
12
|
+
import { create as O } from "../../../../../core/libs/gl-matrix-2/factories/mat4f64.js";
|
|
13
|
+
import { s as y } from "../../../../../chunks/vec32.js";
|
|
14
|
+
import { create as b } from "../../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
15
|
+
import { BufferViewMat4f64 as d, BufferViewVec3f64 as D, BufferViewMat3f as T, BufferViewVec2f as N, BufferViewVec4f64 as H, BufferViewVec4f as B, BufferViewVec4u8 as _, BufferViewUint8 as u } from "../../../../../geometry/support/buffer/BufferView.js";
|
|
16
|
+
import { scaleFromMatrix as G } from "../../../support/mathUtils.js";
|
|
17
|
+
import { newLayout as x } from "../../../support/buffer/InterleavedLayout.js";
|
|
18
|
+
import { assert as L } from "../Util.js";
|
|
19
|
+
import { VertexAttribute as s } from "../VertexAttribute.js";
|
|
20
|
+
import { initialCapacity as A } from "./RenderInstanceData.js";
|
|
21
|
+
var r;
|
|
22
|
+
function $(e) {
|
|
23
|
+
let t = x().mat4f64(s.LOCALTRANSFORM).mat4f64(s.GLOBALTRANSFORM).vec4f64(s.BOUNDINGSPHERE).vec3f64(s.MODELORIGIN).mat3f(s.INSTANCEMODEL).mat3f(s.INSTANCEMODELNORMAL).vec2f(s.MODELSCALEFACTORS);
|
|
24
|
+
return e.includes(s.FEATUREATTRIBUTE) && (t = t.vec4f(s.FEATUREATTRIBUTE)), e.includes(s.COLOR) && (t = t.vec4u8(s.COLOR)), e.includes(s.OBJECTANDLAYERIDCOLOR) && (t = t.vec4u8(s.OBJECTANDLAYERIDCOLOR)), t = t.u8(s.STATE).u8(s.LODLEVEL), t;
|
|
25
|
+
}
|
|
26
|
+
(function(e) {
|
|
27
|
+
e[e.ALLOCATED = 1] = "ALLOCATED", e[e.DEFAULT_ACTIVE = 2] = "DEFAULT_ACTIVE", e[e.VISIBLE = 4] = "VISIBLE", e[e.HIGHLIGHT = 8] = "HIGHLIGHT", e[e.HIGHLIGHT_ACTIVE = 16] = "HIGHLIGHT_ACTIVE", e[e.REMOVE = 32] = "REMOVE", e[e.TRANSFORM_CHANGED = 64] = "TRANSFORM_CHANGED", e[e.ACTIVE = 18] = "ACTIVE";
|
|
28
|
+
})(r || (r = {}));
|
|
29
|
+
class E {
|
|
30
|
+
constructor(t) {
|
|
31
|
+
this.localTransform = t.getField(s.LOCALTRANSFORM, d), this.globalTransform = t.getField(s.GLOBALTRANSFORM, d), this.modelOrigin = t.getField(s.MODELORIGIN, D), this.model = t.getField(s.INSTANCEMODEL, T), this.modelNormal = t.getField(s.INSTANCEMODELNORMAL, T), this.modelScaleFactors = t.getField(s.MODELSCALEFACTORS, N), this.boundingSphere = t.getField(s.BOUNDINGSPHERE, H), this.featureAttribute = t.getField(s.FEATUREATTRIBUTE, B), this.color = t.getField(s.COLOR, _), this.objectAndLayerIdColor = t.getField(s.OBJECTANDLAYERIDCOLOR, _), this.state = t.getField(s.STATE, u), this.lodLevel = t.getField(s.LODLEVEL, u);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
let h = class extends F {
|
|
35
|
+
constructor(e, t) {
|
|
36
|
+
super(e), this.events = new M(), this._capacity = 0, this._size = 0, this._next = 0, this._layout = $(t), this._capacity = A, this._buffer = this._layout.createBuffer(this._capacity), this._view = new E(this._buffer);
|
|
37
|
+
}
|
|
38
|
+
get capacity() {
|
|
39
|
+
return this._capacity;
|
|
40
|
+
}
|
|
41
|
+
get size() {
|
|
42
|
+
return this._size;
|
|
43
|
+
}
|
|
44
|
+
get view() {
|
|
45
|
+
return this._view;
|
|
46
|
+
}
|
|
47
|
+
addInstance() {
|
|
48
|
+
this._size + 1 > this._capacity && this._grow();
|
|
49
|
+
const e = this._findSlot();
|
|
50
|
+
return this._view.state.set(e, r.ALLOCATED), this._size++, this.events.emit("instances-changed"), e;
|
|
51
|
+
}
|
|
52
|
+
removeInstance(e) {
|
|
53
|
+
const t = this._view.state;
|
|
54
|
+
L(e >= 0 && e < this._capacity && (t.get(e) & r.ALLOCATED) != 0, "invalid instance handle"), this._getStateFlag(e, r.ACTIVE) ? this._setStateFlags(e, r.REMOVE) : this.freeInstance(e), this.events.emit("instances-changed");
|
|
55
|
+
}
|
|
56
|
+
freeInstance(e) {
|
|
57
|
+
const t = this._view.state;
|
|
58
|
+
L(e >= 0 && e < this._capacity && (t.get(e) & r.ALLOCATED) != 0, "invalid instance handle"), t.set(e, 0), this._size--;
|
|
59
|
+
}
|
|
60
|
+
setLocalTransform(e, t, a = !0) {
|
|
61
|
+
this._view.localTransform.setMat(e, t), a && this.updateModelTransform(e);
|
|
62
|
+
}
|
|
63
|
+
getLocalTransform(e, t) {
|
|
64
|
+
this._view.localTransform.getMat(e, t);
|
|
65
|
+
}
|
|
66
|
+
setGlobalTransform(e, t, a = !0) {
|
|
67
|
+
this._view.globalTransform.setMat(e, t), a && this.updateModelTransform(e);
|
|
68
|
+
}
|
|
69
|
+
getGlobalTransform(e, t) {
|
|
70
|
+
this._view.globalTransform.getMat(e, t);
|
|
71
|
+
}
|
|
72
|
+
updateModelTransform(e) {
|
|
73
|
+
const t = this._view, a = i, n = o;
|
|
74
|
+
t.localTransform.getMat(e, p), t.globalTransform.getMat(e, g);
|
|
75
|
+
const l = V(g, g, p);
|
|
76
|
+
y(a, l[12], l[13], l[14]), t.modelOrigin.setVec(e, a), S(n, l), t.model.setMat(e, n);
|
|
77
|
+
const m = G(i, l);
|
|
78
|
+
m.sort(), t.modelScaleFactors.set(e, 0, m[1]), t.modelScaleFactors.set(e, 1, m[2]), w(n, n), C(n, n), t.modelNormal.setMat(e, n), this._setStateFlags(e, r.TRANSFORM_CHANGED), this.events.emit("instance-transform-changed", { index: e });
|
|
79
|
+
}
|
|
80
|
+
getModelTransform(e, t) {
|
|
81
|
+
const a = this._view;
|
|
82
|
+
a.model.getMat(e, o), a.modelOrigin.getVec(e, i), t[0] = o[0], t[1] = o[1], t[2] = o[2], t[3] = 0, t[4] = o[3], t[5] = o[4], t[6] = o[5], t[7] = 0, t[8] = o[6], t[9] = o[7], t[10] = o[8], t[11] = 0, t[12] = i[0], t[13] = i[1], t[14] = i[2], t[15] = 1;
|
|
83
|
+
}
|
|
84
|
+
applyShaderTransformation(e, t) {
|
|
85
|
+
this.shaderTransformation != null && this.shaderTransformation.applyTransform(this, e, t);
|
|
86
|
+
}
|
|
87
|
+
getCombinedModelTransform(e, t) {
|
|
88
|
+
return this.getModelTransform(e, t), this.shaderTransformation != null && this.shaderTransformation.applyTransform(this, e, t), t;
|
|
89
|
+
}
|
|
90
|
+
getCombinedLocalTransform(e, t) {
|
|
91
|
+
this._view.localTransform.getMat(e, t), this.shaderTransformation != null && this.shaderTransformation.applyTransform(this, e, t);
|
|
92
|
+
}
|
|
93
|
+
getCombinedMaxScaleFactor(e) {
|
|
94
|
+
let t = this._view.modelScaleFactors.get(e, 1);
|
|
95
|
+
return this.shaderTransformation != null && (this.shaderTransformation.scaleFactor(i, this, e), t *= Math.max(i[0], i[1], i[2])), t;
|
|
96
|
+
}
|
|
97
|
+
getCombinedMedianScaleFactor(e) {
|
|
98
|
+
let t = this._view.modelScaleFactors.get(e, 0);
|
|
99
|
+
return this.shaderTransformation != null && (this.shaderTransformation.scaleFactor(i, this, e), t *= U(i[0], i[1], i[2])), t;
|
|
100
|
+
}
|
|
101
|
+
getModel(e, t) {
|
|
102
|
+
this._view.model.getMat(e, t);
|
|
103
|
+
}
|
|
104
|
+
setFeatureAttribute(e, t) {
|
|
105
|
+
this._view.featureAttribute.setVec(e, t);
|
|
106
|
+
}
|
|
107
|
+
getFeatureAttribute(e, t) {
|
|
108
|
+
this._view.featureAttribute.getVec(e, t);
|
|
109
|
+
}
|
|
110
|
+
setColor(e, t) {
|
|
111
|
+
this._view.color.setVec(e, t);
|
|
112
|
+
}
|
|
113
|
+
setObjectAndLayerIdColor(e, t) {
|
|
114
|
+
this._view.objectAndLayerIdColor.setVec(e, t);
|
|
115
|
+
}
|
|
116
|
+
setVisible(e, t) {
|
|
117
|
+
t !== this.getVisible(e) && (this._setStateFlag(e, r.VISIBLE, t), this.events.emit("instance-visibility-changed", { index: e }));
|
|
118
|
+
}
|
|
119
|
+
getVisible(e) {
|
|
120
|
+
return this._getStateFlag(e, r.VISIBLE);
|
|
121
|
+
}
|
|
122
|
+
setHighlight(e, t) {
|
|
123
|
+
t !== this.getHighlight(e) && (this._setStateFlag(e, r.HIGHLIGHT, t), this.events.emit("instance-highlight-changed"));
|
|
124
|
+
}
|
|
125
|
+
getHighlight(e) {
|
|
126
|
+
return this._getStateFlag(e, r.HIGHLIGHT);
|
|
127
|
+
}
|
|
128
|
+
getState(e) {
|
|
129
|
+
return this._view.state.get(e);
|
|
130
|
+
}
|
|
131
|
+
getLodLevel(e) {
|
|
132
|
+
return this._view.lodLevel.get(e);
|
|
133
|
+
}
|
|
134
|
+
countFlags(e) {
|
|
135
|
+
let t = 0;
|
|
136
|
+
for (let a = 0; a < this._capacity; ++a)
|
|
137
|
+
this.getState(a) & e && ++t;
|
|
138
|
+
return t;
|
|
139
|
+
}
|
|
140
|
+
_setStateFlags(e, t) {
|
|
141
|
+
const a = this._view.state;
|
|
142
|
+
t = a.get(e) | t, a.set(e, t);
|
|
143
|
+
}
|
|
144
|
+
_clearStateFlags(e, t) {
|
|
145
|
+
const a = this._view.state;
|
|
146
|
+
t = a.get(e) & ~t, a.set(e, t);
|
|
147
|
+
}
|
|
148
|
+
_setStateFlag(e, t, a) {
|
|
149
|
+
a ? this._setStateFlags(e, t) : this._clearStateFlags(e, t);
|
|
150
|
+
}
|
|
151
|
+
_getStateFlag(e, t) {
|
|
152
|
+
return !!(this._view.state.get(e) & t);
|
|
153
|
+
}
|
|
154
|
+
_grow() {
|
|
155
|
+
this._capacity = Math.max(A, Math.floor(this._capacity * I)), this._buffer = this._layout.createBuffer(this._capacity).copyFrom(this._buffer), this._view = new E(this._buffer);
|
|
156
|
+
}
|
|
157
|
+
_findSlot() {
|
|
158
|
+
const e = this._view.state;
|
|
159
|
+
let t = this._next;
|
|
160
|
+
for (; e.get(t) & r.ALLOCATED; )
|
|
161
|
+
t = t + 1 === this._capacity ? 0 : t + 1;
|
|
162
|
+
return this._next = t + 1 === this._capacity ? 0 : t + 1, t;
|
|
163
|
+
}
|
|
164
|
+
};
|
|
165
|
+
function U(e, t, a) {
|
|
166
|
+
return Math.max(Math.min(e, t), Math.min(Math.max(e, t), a));
|
|
167
|
+
}
|
|
168
|
+
c([f({ constructOnly: !0 })], h.prototype, "shaderTransformation", void 0), c([f()], h.prototype, "_size", void 0), c([f({ readOnly: !0 })], h.prototype, "size", null), h = c([v("esri.views.3d.webgl-engine.lib.lodRendering.InstanceData")], h);
|
|
169
|
+
const i = b(), o = R(), p = O(), g = O();
|
|
170
|
+
export {
|
|
171
|
+
h as InstanceData,
|
|
172
|
+
E as InstanceDataView,
|
|
173
|
+
r as StateFlags
|
|
174
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { create as i } from "../../../../../core/libs/gl-matrix-2/factories/mat4f64.js";
|
|
2
|
+
import { e as a } from "../../../../../chunks/vec32.js";
|
|
3
|
+
import { w as r, c as n, g as h } from "../../../../../chunks/sphere.js";
|
|
4
|
+
import { maxScale as m } from "../../../support/mathUtils.js";
|
|
5
|
+
import p from "../Octree.js";
|
|
6
|
+
class g extends p {
|
|
7
|
+
constructor(e, s) {
|
|
8
|
+
super((t) => r(this._instanceData.view.boundingSphere.getVec(t, this._tmpSphere)), { maximumDepth: 25 }), this._instanceData = e, this._boundingSphere = s, this._tmpSphere = n(), this._tmpMat4 = i();
|
|
9
|
+
}
|
|
10
|
+
addInstance(e) {
|
|
11
|
+
const s = this._instanceData.view.boundingSphere, t = this._instanceData.getCombinedModelTransform(e, this._tmpMat4);
|
|
12
|
+
a(h(this._tmpSphere), this._boundingSphere.center, t), this._tmpSphere[3] = this._boundingSphere.radius * m(t), s.setVec(e, this._tmpSphere), this.add([e]);
|
|
13
|
+
}
|
|
14
|
+
removeInstance(e) {
|
|
15
|
+
this.remove([e]);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
export {
|
|
19
|
+
g as InstanceOctree
|
|
20
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import "../IntersectorInterfaces.js";
|
|
2
|
+
import { Graphic3DTarget as a } from "../IntersectorTarget.js";
|
|
3
|
+
import "../../../../../chunks/vec32.js";
|
|
4
|
+
import "../../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
5
|
+
import "../../../../../chunks/boundedPlane.js";
|
|
6
|
+
class c extends a {
|
|
7
|
+
constructor(r, t, i, s, e, o) {
|
|
8
|
+
super(r, t), this.layerUid = r, this.graphicUid = t, this.geometryId = i, this.triangleNr = s, this.baseBoundingSphere = e, this.numLodLevels = o;
|
|
9
|
+
}
|
|
10
|
+
}
|
|
11
|
+
export {
|
|
12
|
+
c as LodTarget
|
|
13
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
class n {
|
|
2
|
+
constructor(i, c) {
|
|
3
|
+
this._worldSpaceRadius = i, this._minScreenSpaceRadii = c;
|
|
4
|
+
}
|
|
5
|
+
selectLevel(i, c, r) {
|
|
6
|
+
const s = r.computeScreenPixelSizeAt(i), a = this._worldSpaceRadius * c / s;
|
|
7
|
+
let t = 0;
|
|
8
|
+
for (let e = 1; e < this._minScreenSpaceRadii.length; ++e)
|
|
9
|
+
a >= this._minScreenSpaceRadii[e] && (t = e);
|
|
10
|
+
return t;
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
export {
|
|
14
|
+
n as LevelSelector
|
|
15
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { glLayout as g } from "../../../support/buffer/glUtil.js";
|
|
2
|
+
import { Default3D as L } from "../DefaultVertexAttributeLocations.js";
|
|
3
|
+
import { GLMaterials as x } from "../GLMaterials.js";
|
|
4
|
+
import { newIntersectorResult as O } from "../Intersector.js";
|
|
5
|
+
import { IntersectorType as d, StoreResults as c } from "../IntersectorInterfaces.js";
|
|
6
|
+
import { VertexArrayObject as b } from "../VertexArrayObject.js";
|
|
7
|
+
import { LodTarget as v } from "./Intersector.js";
|
|
8
|
+
import { BufferObject as D } from "../../../../webgl/BufferObject.js";
|
|
9
|
+
import { Usage as C } from "../../../../webgl/enums.js";
|
|
10
|
+
class G {
|
|
11
|
+
constructor(t, i) {
|
|
12
|
+
const n = t.renderContext.rctx, e = i.geometry;
|
|
13
|
+
this._materialRepository = t.materialRepository, e.material.setParameters({ instancedDoublePrecision: !0 });
|
|
14
|
+
const o = e.material.createBufferWriter(), s = o.vertexBufferLayout, m = o.elementCount(e), l = s.createBuffer(m);
|
|
15
|
+
o.write(null, null, e, l, 0), this.geometry = e, this.material = e.material, this.glMaterials = new x(e.material, this._materialRepository), this.vertexBufferLayout = s, this.vbo = D.createVertex(n, C.STATIC_DRAW, l.buffer), this.vao = new b(n, L, { geometry: g(s) }, { geometry: this.vbo }), this.vertexCount = m;
|
|
16
|
+
}
|
|
17
|
+
destroy() {
|
|
18
|
+
this.glMaterials.dispose(), this.vbo.dispose(), this.vao.dispose();
|
|
19
|
+
}
|
|
20
|
+
get boundingInfo() {
|
|
21
|
+
return this.geometry.boundingInfo;
|
|
22
|
+
}
|
|
23
|
+
get triangleCount() {
|
|
24
|
+
return this.vertexCount / 3;
|
|
25
|
+
}
|
|
26
|
+
intersect(t, i, n, e, o, s, m, l) {
|
|
27
|
+
const h = this.geometry.id;
|
|
28
|
+
this.material.intersect(this.geometry, t.transform.transform, t, n, e, (r, u, y, I, a) => {
|
|
29
|
+
if (r >= 0) {
|
|
30
|
+
if (i != null && !i(t.rayBegin, t.rayEnd, r))
|
|
31
|
+
return;
|
|
32
|
+
const f = new v(s.layerUid, s.graphicUid(o), h, y, m, l);
|
|
33
|
+
if ((t.results.min.drapedLayerOrder == null || a >= t.results.min.drapedLayerOrder) && (t.results.min.dist == null || r < t.results.min.dist) && t.results.min.set(d.LOD, f, r, u, t.transform.transform, a), t.options.store !== c.MIN && (t.results.max.drapedLayerOrder == null || a >= t.results.max.drapedLayerOrder) && (t.results.max.dist == null || r > t.results.max.dist) && t.results.max.set(d.LOD, f, r, u, t.transform.transform, a), t.options.store === c.ALL) {
|
|
34
|
+
const p = O(t.results.min.ray);
|
|
35
|
+
p.set(d.LOD, f, r, u, t.transform.transform, a), t.results.all.push(p);
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
export {
|
|
42
|
+
G as LodComponentData
|
|
43
|
+
};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { isSome as d } from "../../../../../core/arrayUtils.js";
|
|
2
|
+
import { isAborted as h, throwIfAborted as l } from "../../../../../core/promiseUtils.js";
|
|
3
|
+
import { create as m } from "../../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
4
|
+
import { empty as p, expandWithVec3 as i, center as f, diameter as g } from "../../../../../geometry/support/aaBoundingBox.js";
|
|
5
|
+
import { LodComponentData as b } from "./LodComponentData.js";
|
|
6
|
+
class a {
|
|
7
|
+
static async create(n, t, o) {
|
|
8
|
+
const s = await Promise.allSettled(t.components.map((e) => n.controller.schedule(() => new b(n, e), o))), r = s.map((e) => e.status === "fulfilled" ? e.value : null).filter(d);
|
|
9
|
+
if (h(o) || r.length !== s.length) {
|
|
10
|
+
r.forEach((e) => e.destroy()), l(o);
|
|
11
|
+
for (const e of s)
|
|
12
|
+
if (e.status === "rejected")
|
|
13
|
+
throw e.reason;
|
|
14
|
+
}
|
|
15
|
+
return new a(t.minScreenSpaceRadius, r);
|
|
16
|
+
}
|
|
17
|
+
constructor(n, t) {
|
|
18
|
+
this.minScreenSpaceRadius = n, this.components = t;
|
|
19
|
+
}
|
|
20
|
+
destroy() {
|
|
21
|
+
this.components.forEach((n) => n.destroy());
|
|
22
|
+
}
|
|
23
|
+
intersect(n, t, o, s, r, e, c) {
|
|
24
|
+
this.components.forEach((u) => u.intersect(n, t, o, s, r, e, this.boundingSphere, c));
|
|
25
|
+
}
|
|
26
|
+
get boundingBox() {
|
|
27
|
+
if (this._boundingBox == null) {
|
|
28
|
+
const n = p();
|
|
29
|
+
this.components.forEach((t) => {
|
|
30
|
+
t.boundingInfo != null && (i(n, t.boundingInfo.bbMin), i(n, t.boundingInfo.bbMax));
|
|
31
|
+
}), this._boundingBox = n;
|
|
32
|
+
}
|
|
33
|
+
return this._boundingBox;
|
|
34
|
+
}
|
|
35
|
+
get boundingSphere() {
|
|
36
|
+
if (this._boundingSphere == null) {
|
|
37
|
+
const n = this.boundingBox, t = m();
|
|
38
|
+
f(n, t), this._boundingSphere = { center: t, radius: 0.5 * g(n) };
|
|
39
|
+
}
|
|
40
|
+
return this._boundingSphere;
|
|
41
|
+
}
|
|
42
|
+
get triangleCount() {
|
|
43
|
+
return this.components.reduce((n, t) => n + t.triangleCount, 0);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
export {
|
|
47
|
+
a as LodLevel
|
|
48
|
+
};
|
|
@@ -0,0 +1,264 @@
|
|
|
1
|
+
import { _ as g } from "../../../../../chunks/tslib.es6.js";
|
|
2
|
+
import { isSome as U } from "../../../../../core/arrayUtils.js";
|
|
3
|
+
import { destroyMaybe as G } from "../../../../../core/maybe.js";
|
|
4
|
+
import { isAborted as q, throwIfAborted as $ } from "../../../../../core/promiseUtils.js";
|
|
5
|
+
import { property as y } from "../../../../../core/accessorSupport/decorators/property.js";
|
|
6
|
+
import "../../../../../core/has.js";
|
|
7
|
+
import "../../../../../core/Logger.js";
|
|
8
|
+
import { subclass as z } from "../../../../../core/accessorSupport/decorators/subclass.js";
|
|
9
|
+
import { create as k } from "../../../../../core/libs/gl-matrix-2/factories/mat4f64.js";
|
|
10
|
+
import { f as b, k as L, e as S } from "../../../../../chunks/vec32.js";
|
|
11
|
+
import { create as R } from "../../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
12
|
+
import { create as W, fromValues as A } from "../../../../../core/libs/gl-matrix-2/factories/vec4f64.js";
|
|
13
|
+
import { debugFlags as O } from "../../../support/debugFlags.js";
|
|
14
|
+
import { glLayout as j } from "../../../support/buffer/glUtil.js";
|
|
15
|
+
import { newLayout as K } from "../../../support/buffer/InterleavedLayout.js";
|
|
16
|
+
import { ShaderOutput as C } from "../../core/shaderLibrary/ShaderOutput.js";
|
|
17
|
+
import { ASyncPreparesRenderPlugin as Y } from "../../effects/RenderPlugin.js";
|
|
18
|
+
import { Camera as J } from "../Camera.js";
|
|
19
|
+
import { Default3D as N } from "../DefaultVertexAttributeLocations.js";
|
|
20
|
+
import { IntersectorType as Q } from "../IntersectorInterfaces.js";
|
|
21
|
+
import x from "../Octree.js";
|
|
22
|
+
import { RenderSlot as T } from "../RenderSlot.js";
|
|
23
|
+
import { assert as D } from "../Util.js";
|
|
24
|
+
import { VertexAttribute as E } from "../VertexAttribute.js";
|
|
25
|
+
import { InstanceData as Z, StateFlags as d } from "./InstanceData.js";
|
|
26
|
+
import { InstanceOctree as X } from "./InstanceOctree.js";
|
|
27
|
+
import { LevelSelector as ee } from "./LevelSelector.js";
|
|
28
|
+
import { LodLevel as te } from "./LodLevel.js";
|
|
29
|
+
import { RenderInstanceData as M } from "./RenderInstanceData.js";
|
|
30
|
+
import { colorMixModes as ae } from "../../materials/internal/MaterialUtil.js";
|
|
31
|
+
import { encodeDoubleVec3 as ne } from "../../materials/renderers/utils.js";
|
|
32
|
+
import { DefaultMaterialDrawParameters as se } from "../../shaders/DefaultMaterialTechnique.js";
|
|
33
|
+
import { TaskPriority as re, noBudget as ie } from "../../../../support/Scheduler.js";
|
|
34
|
+
import { bindVertexBufferLayout as oe, unbindVertexBufferLayout as le } from "../../../../webgl/Util.js";
|
|
35
|
+
const ce = (e) => {
|
|
36
|
+
const t = e.baseBoundingSphere.radius, a = e.levels.map((n) => n.minScreenSpaceRadius);
|
|
37
|
+
return new ee(t, a);
|
|
38
|
+
};
|
|
39
|
+
let f = class extends Y {
|
|
40
|
+
constructor(e, t) {
|
|
41
|
+
super(e), this.type = Q.LOD, this.isGround = !1, this._levels = [], this._defaultRenderInstanceData = [new Array()], this._highlightRenderInstanceData = [new Array()], this._allRenderInstanceData = [this._defaultRenderInstanceData[0], this._highlightRenderInstanceData[0]], this._instanceIndex = 0, this._cycleStartIndex = 0, this._slicePlane = !1, this._camera = new J(), this._updateCyclesWithStaticCamera = -1, this._needFullCycle = !1, this.produces = /* @__PURE__ */ new Map([[T.OPAQUE_MATERIAL, (a) => this._produces(a)], [T.TRANSPARENT_MATERIAL, (a) => !!this._hasTransparentLevels() && this._produces(a)]]), this._instanceData = new Z({ shaderTransformation: e.shaderTransformation }, e.optionalFields), this.addHandles(t.registerTask(re.LOD_RENDERER, this));
|
|
42
|
+
}
|
|
43
|
+
initialize() {
|
|
44
|
+
this._instanceBufferLayout = de(this.optionalFields), this._glInstanceBufferLayout = j(this._instanceBufferLayout, 1), this.addHandles([this._instanceData.events.on("instances-changed", () => this._requestUpdateCycle()), this._instanceData.events.on("instance-transform-changed", ({ index: e }) => {
|
|
45
|
+
this._requestUpdateCycle(), this.metadata.notifyGraphicGeometryChanged(e);
|
|
46
|
+
}), this._instanceData.events.on("instance-visibility-changed", ({ index: e }) => {
|
|
47
|
+
this._requestUpdateCycle(!0), this.metadata.notifyGraphicVisibilityChanged(e);
|
|
48
|
+
}), this._instanceData.events.on("instance-highlight-changed", () => this._requestUpdateCycle(!0))]);
|
|
49
|
+
}
|
|
50
|
+
get _enableLevelSelection() {
|
|
51
|
+
return this.symbol.levels.length > 1;
|
|
52
|
+
}
|
|
53
|
+
get levels() {
|
|
54
|
+
return this._levels;
|
|
55
|
+
}
|
|
56
|
+
get baseBoundingBox() {
|
|
57
|
+
return this._levels[this._levels.length - 1].boundingBox;
|
|
58
|
+
}
|
|
59
|
+
get baseBoundingSphere() {
|
|
60
|
+
return this._levels[this._levels.length - 1].boundingSphere;
|
|
61
|
+
}
|
|
62
|
+
get baseMaterial() {
|
|
63
|
+
return this._levels[this._levels.length - 1].components[0].material;
|
|
64
|
+
}
|
|
65
|
+
get slicePlaneEnabled() {
|
|
66
|
+
return this._slicePlane;
|
|
67
|
+
}
|
|
68
|
+
set slicePlaneEnabled(e) {
|
|
69
|
+
this._slicePlane = e;
|
|
70
|
+
}
|
|
71
|
+
get layerUid() {
|
|
72
|
+
return this.metadata.layerUid;
|
|
73
|
+
}
|
|
74
|
+
get instanceData() {
|
|
75
|
+
return this._instanceData;
|
|
76
|
+
}
|
|
77
|
+
get usedMemory() {
|
|
78
|
+
return this._allRenderInstanceData.reduce((e, t) => t.reduce((a, n) => a + n.usedMemory, e), 0);
|
|
79
|
+
}
|
|
80
|
+
get renderStats() {
|
|
81
|
+
const e = this._instanceData.size, t = [];
|
|
82
|
+
return this._levels.forEach((a, n) => {
|
|
83
|
+
const o = this._allRenderInstanceData[0][n].size + this._allRenderInstanceData[1][n].size, s = a.triangleCount;
|
|
84
|
+
t.push({ renderedInstances: o, renderedTriangles: o * s, trianglesPerInstance: s });
|
|
85
|
+
}), { totalInstances: e, renderedInstances: t.reduce((a, n) => a + n.renderedInstances, 0), renderedTriangles: t.reduce((a, n) => a + n.renderedTriangles, 0), levels: t };
|
|
86
|
+
}
|
|
87
|
+
async initializeRenderContext(e, t) {
|
|
88
|
+
this._context = e;
|
|
89
|
+
const a = e.renderContext.rctx, n = await Promise.allSettled(this.symbol.levels.map((s) => (this._defaultRenderInstanceData[0].push(new M(a, this._instanceBufferLayout)), this._highlightRenderInstanceData[0].push(new M(a, this._instanceBufferLayout)), te.create(e, s, t)))), o = n.map((s) => s.status === "fulfilled" ? s.value : null).filter(U);
|
|
90
|
+
if (q(t) || o.length !== n.length) {
|
|
91
|
+
o.forEach((s) => s.destroy()), $(t);
|
|
92
|
+
for (const s of n)
|
|
93
|
+
if (s.status === "rejected")
|
|
94
|
+
throw s.reason;
|
|
95
|
+
}
|
|
96
|
+
this._levels = o, this._levelSelector = ce(this);
|
|
97
|
+
}
|
|
98
|
+
uninitializeRenderContext() {
|
|
99
|
+
this._invalidateOctree(), this._levels.forEach((e) => e.destroy()), this._defaultRenderInstanceData[0].forEach((e) => e.destroy()), this._highlightRenderInstanceData[0].forEach((e) => e.destroy());
|
|
100
|
+
}
|
|
101
|
+
_hasTransparentLevels() {
|
|
102
|
+
return this._levels.some((e) => e.components.some((t) => {
|
|
103
|
+
const a = t.material.produces.get(T.TRANSPARENT_MATERIAL);
|
|
104
|
+
return a && a(C.Color);
|
|
105
|
+
}));
|
|
106
|
+
}
|
|
107
|
+
hasHighlights() {
|
|
108
|
+
return this._highlightRenderInstanceData[0].some((e) => e.size > 0);
|
|
109
|
+
}
|
|
110
|
+
_produces(e) {
|
|
111
|
+
return e !== C.Highlight && e !== C.ShadowHighlight || this.hasHighlights();
|
|
112
|
+
}
|
|
113
|
+
prepareRender(e) {
|
|
114
|
+
if (!O.LOD_INSTANCE_RENDERER_DISABLE_UPDATES) {
|
|
115
|
+
if (this._enableLevelSelection) {
|
|
116
|
+
const t = e.bindParameters.contentCamera.equals(this._camera);
|
|
117
|
+
this._camera.copyFrom(e.bindParameters.contentCamera), t || this._requestUpdateCycle();
|
|
118
|
+
}
|
|
119
|
+
this._needFullCycle && (this.runTask(ie), this._needFullCycle = !1);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
prepareTechniques(e) {
|
|
123
|
+
if (!this.baseMaterial.isVisible() || !this.baseMaterial.isVisibleForOutput(e.output))
|
|
124
|
+
return null;
|
|
125
|
+
const t = this._getInstanceDatas(e.output);
|
|
126
|
+
if (!t)
|
|
127
|
+
return null;
|
|
128
|
+
const a = new Array();
|
|
129
|
+
return t.forEach((n) => this.levels.forEach((o, s) => {
|
|
130
|
+
o.components.forEach((l) => a.push(this._beginComponent(e, n[s], l)));
|
|
131
|
+
})), a;
|
|
132
|
+
}
|
|
133
|
+
renderNode(e, t) {
|
|
134
|
+
const a = this._getInstanceDatas(e.output);
|
|
135
|
+
if (!a || t == null)
|
|
136
|
+
return;
|
|
137
|
+
let n = 0;
|
|
138
|
+
e.rctx.bindVAO(), a.forEach((o) => this.levels.forEach((s, l) => {
|
|
139
|
+
s.components.forEach((m) => this._renderComponent(e, t[n++], o[l], m, l));
|
|
140
|
+
}));
|
|
141
|
+
}
|
|
142
|
+
_getInstanceDatas(e) {
|
|
143
|
+
const t = e !== C.Highlight && e !== C.ShadowHighlight, a = e !== C.ShadowExcludeHighlight;
|
|
144
|
+
return t && a ? this._allRenderInstanceData : t ? this._defaultRenderInstanceData : a ? this._highlightRenderInstanceData : null;
|
|
145
|
+
}
|
|
146
|
+
intersect(e, t, a, n) {
|
|
147
|
+
if (!this.baseMaterial.isVisible() || this._octree == null)
|
|
148
|
+
return;
|
|
149
|
+
const o = R();
|
|
150
|
+
b(o, n, a);
|
|
151
|
+
const s = (l) => {
|
|
152
|
+
this._instanceData.getCombinedModelTransform(l, F), e.transform.set(F), S(H, a, e.transform.inverse), S(B, n, e.transform.inverse);
|
|
153
|
+
const m = this._instanceData.getState(l), r = this._instanceData.getLodLevel(l), h = this._levels.length;
|
|
154
|
+
D((m & d.ACTIVE) != 0, "invalid instance state"), D(r >= 0 && r < h, "invaid lod level"), this._levels[r].intersect(e, t, H, B, l, this.metadata, h);
|
|
155
|
+
};
|
|
156
|
+
this.baseMaterial.parameters.verticalOffset ? this._octree.forEach(s) : this._octree.forEachAlongRay(a, o, s);
|
|
157
|
+
}
|
|
158
|
+
notifyShaderTransformationChanged() {
|
|
159
|
+
this._invalidateOctree(), this._requestUpdateCycle();
|
|
160
|
+
}
|
|
161
|
+
get _octree() {
|
|
162
|
+
var e;
|
|
163
|
+
if (this._octreeCached == null) {
|
|
164
|
+
const t = this._instanceData, a = (e = t.view) == null ? void 0 : e.state;
|
|
165
|
+
if (!a)
|
|
166
|
+
return null;
|
|
167
|
+
this._octreeCached = new X(t, this.baseBoundingSphere);
|
|
168
|
+
for (let n = 0; n < t.capacity; ++n)
|
|
169
|
+
a.get(n) & d.ACTIVE && this._octreeCached.addInstance(n);
|
|
170
|
+
}
|
|
171
|
+
return this._octreeCached;
|
|
172
|
+
}
|
|
173
|
+
_invalidateOctree() {
|
|
174
|
+
this._octreeCached = G(this._octreeCached);
|
|
175
|
+
}
|
|
176
|
+
queryDepthRange(e) {
|
|
177
|
+
if (this._octree == null)
|
|
178
|
+
return { near: 1 / 0, far: -1 / 0 };
|
|
179
|
+
const t = e.viewForward, a = this._octree.findClosest(t, x.DepthOrder.FRONT_TO_BACK, e.frustum), n = this._octree.findClosest(t, x.DepthOrder.BACK_TO_FRONT, e.frustum);
|
|
180
|
+
if (a == null || n == null)
|
|
181
|
+
return { near: 1 / 0, far: -1 / 0 };
|
|
182
|
+
const o = e.eye, s = this._instanceData.view;
|
|
183
|
+
s.boundingSphere.getVec(a, I), b(I, I, o);
|
|
184
|
+
const l = L(I, t) - I[3];
|
|
185
|
+
s.boundingSphere.getVec(n, I), b(I, I, o);
|
|
186
|
+
const m = L(I, t) + I[3];
|
|
187
|
+
return { near: Math.max(e.near, l), far: Math.min(e.far, m) };
|
|
188
|
+
}
|
|
189
|
+
_requestUpdateCycle(e = !1) {
|
|
190
|
+
this._updateCyclesWithStaticCamera = -1, this._cycleStartIndex = this._instanceIndex, e && (this._needFullCycle = !0, this._context.requestRender());
|
|
191
|
+
}
|
|
192
|
+
_startUpdateCycle() {
|
|
193
|
+
this._updateCyclesWithStaticCamera++, this._allRenderInstanceData.forEach((e) => e.forEach((t) => t.startUpdateCycle()));
|
|
194
|
+
}
|
|
195
|
+
get running() {
|
|
196
|
+
return this._instanceData.size > 0 && this._updateCyclesWithStaticCamera < 1;
|
|
197
|
+
}
|
|
198
|
+
runTask(e) {
|
|
199
|
+
const { _enableLevelSelection: t, _camera: a, _levelSelector: n } = this;
|
|
200
|
+
this._allRenderInstanceData.forEach((c) => c.forEach((i) => i.beginUpdate()));
|
|
201
|
+
const o = this._instanceData, s = o.view;
|
|
202
|
+
let l = o.size;
|
|
203
|
+
const m = o.capacity;
|
|
204
|
+
let r = this._instanceIndex;
|
|
205
|
+
const h = Math.ceil(m / 500);
|
|
206
|
+
for (let c = 0; c < l && !e.done; ++c) {
|
|
207
|
+
r === this._cycleStartIndex && this._startUpdateCycle();
|
|
208
|
+
const i = s.state.get(r);
|
|
209
|
+
let p = 0;
|
|
210
|
+
if (!(i & d.ALLOCATED)) {
|
|
211
|
+
r = r + 1 === m ? 0 : r + 1, l++;
|
|
212
|
+
continue;
|
|
213
|
+
}
|
|
214
|
+
const u = s.lodLevel.get(r);
|
|
215
|
+
if (i & d.DEFAULT_ACTIVE && this._defaultRenderInstanceData[0][u].freeTail(), i & d.HIGHLIGHT_ACTIVE && this._highlightRenderInstanceData[0][u].freeTail(), i & d.REMOVE)
|
|
216
|
+
o.freeInstance(r);
|
|
217
|
+
else if (i & d.VISIBLE) {
|
|
218
|
+
let _ = 0;
|
|
219
|
+
t && (s.modelOrigin.getVec(r, w), _ = n.selectLevel(w, o.getCombinedMedianScaleFactor(r), a)), p = i & ~(d.ACTIVE | d.TRANSFORM_CHANGED), _ >= 0 && (i & d.HIGHLIGHT ? (V(this._highlightRenderInstanceData[0][_], s, r), p |= d.HIGHLIGHT_ACTIVE) : (V(this._defaultRenderInstanceData[0][_], s, r), p |= d.DEFAULT_ACTIVE)), s.state.set(r, p), s.lodLevel.set(r, _);
|
|
220
|
+
} else
|
|
221
|
+
p = i & ~(d.ACTIVE | d.TRANSFORM_CHANGED), s.state.set(r, p);
|
|
222
|
+
if (this._octreeCached != null) {
|
|
223
|
+
const _ = !!(i & d.ACTIVE), v = !!(p & d.ACTIVE);
|
|
224
|
+
!_ && v ? this._octreeCached.addInstance(r) : _ && !v ? this._octreeCached.removeInstance(r) : _ && v && i & d.TRANSFORM_CHANGED && (this._octreeCached.removeInstance(r), this._octreeCached.addInstance(r));
|
|
225
|
+
}
|
|
226
|
+
r = r + 1 === m ? 0 : r + 1, r % h == 0 && e.madeProgress();
|
|
227
|
+
}
|
|
228
|
+
this._instanceIndex = r, this._allRenderInstanceData.forEach((c) => c.forEach((i) => i.endUpdate())), this._context.requestRender();
|
|
229
|
+
}
|
|
230
|
+
_beginComponent(e, t, a) {
|
|
231
|
+
if (t.size === 0)
|
|
232
|
+
return null;
|
|
233
|
+
const n = a.glMaterials.load(e.rctx, e.bindParameters.slot, e.output);
|
|
234
|
+
return n != null ? n.beginSlot(e.bindParameters) : null;
|
|
235
|
+
}
|
|
236
|
+
_renderComponent(e, t, a, n, o) {
|
|
237
|
+
if (!t)
|
|
238
|
+
return;
|
|
239
|
+
const { bindParameters: s, rctx: l } = e;
|
|
240
|
+
l.runAppleAmdDriverHelper();
|
|
241
|
+
const m = l.bindTechnique(t, s, n.material.parameters, ue);
|
|
242
|
+
l.bindVAO(n.vao), t.ensureAttributeLocations(n.vao), O.LOD_INSTANCE_RENDERER_COLORIZE_BY_LEVEL && e.output === C.Color && (m.setUniform4fv("externalColor", P[Math.min(o, P.length - 1)]), m.setUniform1i("colorMixMode", ae.replace));
|
|
243
|
+
const r = a.capacity, h = a.headIndex, c = a.tailIndex, i = a.firstIndex, p = this._glInstanceBufferLayout, u = (_, v) => {
|
|
244
|
+
oe(l, N, a.buffer, p, _), l.drawArraysInstanced(t.primitiveType, 0, n.vertexCount, v - _), le(l, N, a.buffer, p);
|
|
245
|
+
};
|
|
246
|
+
n.material.parameters.transparent && i != null ? h > c ? (D(i >= c && i <= h, "invalid firstIndex"), u(i, h), u(c, i)) : h < c && (i <= h ? (D(i >= 0 && i <= h, "invalid firstIndex"), u(i, h), u(c, r), u(0, i)) : (D(i >= c && i <= r, "invalid firstIndex"), u(i, r), u(0, h), u(c, i))) : h > c ? u(c, h) : h < c && (u(0, h), u(c, r)), l.bindVAO(null);
|
|
247
|
+
}
|
|
248
|
+
};
|
|
249
|
+
function V(e, t, a) {
|
|
250
|
+
const n = e.allocateHead();
|
|
251
|
+
he(t, a, e.view, n);
|
|
252
|
+
}
|
|
253
|
+
function he(e, t, a, n) {
|
|
254
|
+
ne(e.modelOrigin, t, a.modelOriginHi, a.modelOriginLo, n), a.model.copyFrom(n, e.model, t), a.modelNormal.copyFrom(n, e.modelNormal, t), e.color && a.color && a.color.copyFrom(n, e.color, t), e.objectAndLayerIdColor && a.objectAndLayerIdColor && a.objectAndLayerIdColor.copyFrom(n, e.objectAndLayerIdColor, t), e.featureAttribute && a.featureAttribute && a.featureAttribute.copyFrom(n, e.featureAttribute, t);
|
|
255
|
+
}
|
|
256
|
+
function de(e) {
|
|
257
|
+
let t = K().vec3f(E.INSTANCEMODELORIGINHI).vec3f(E.INSTANCEMODELORIGINLO).mat3f(E.INSTANCEMODEL).mat3f(E.INSTANCEMODELNORMAL);
|
|
258
|
+
return e != null && e.includes("featureAttribute") && (t = t.vec4f(E.INSTANCEFEATUREATTRIBUTE)), e != null && e.includes("color") && (t = t.vec4u8(E.INSTANCECOLOR)), e != null && e.includes("objectAndLayerIdColor") && (t = t.vec4u8(E.INSTANCEOBJECTANDLAYERIDCOLOR)), t;
|
|
259
|
+
}
|
|
260
|
+
g([y({ constructOnly: !0 })], f.prototype, "symbol", void 0), g([y({ constructOnly: !0 })], f.prototype, "optionalFields", void 0), g([y({ constructOnly: !0 })], f.prototype, "metadata", void 0), g([y({ constructOnly: !0 })], f.prototype, "shaderTransformation", void 0), g([y()], f.prototype, "_instanceData", void 0), g([y()], f.prototype, "_cycleStartIndex", void 0), g([y({ readOnly: !0 })], f.prototype, "_enableLevelSelection", null), g([y()], f.prototype, "_updateCyclesWithStaticCamera", void 0), g([y({ readOnly: !0 })], f.prototype, "running", null), f = g([z("esri.views.3d.webgl-engine.lib.lodRendering.LodRenderer")], f);
|
|
261
|
+
const w = R(), I = W(), F = k(), H = R(), B = R(), P = [A(1, 0, 1, 1), A(0, 0, 1, 1), A(0, 1, 0, 1), A(1, 1, 0, 1), A(1, 0, 0, 1)], ue = new se();
|
|
262
|
+
export {
|
|
263
|
+
f as LodRenderer
|
|
264
|
+
};
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { unique as o } from "../../../../../core/arrayUtils.js";
|
|
2
|
+
import { VertexAttribute as u } from "../VertexAttribute.js";
|
|
3
|
+
class h {
|
|
4
|
+
constructor(e, s = null) {
|
|
5
|
+
this.geometry = e, this.textures = s;
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
class l {
|
|
9
|
+
constructor(e, s, t) {
|
|
10
|
+
this.components = e, this.minScreenSpaceRadius = s, this.pivotOffset = t;
|
|
11
|
+
const n = this.geometries;
|
|
12
|
+
this.numVertices = n.reduce((c, i) => c + i.attributes.get(u.POSITION).indices.length, 0);
|
|
13
|
+
}
|
|
14
|
+
get geometries() {
|
|
15
|
+
return o(this.components.map((e) => e.geometry));
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
class p {
|
|
19
|
+
constructor(e) {
|
|
20
|
+
this.levels = e, this.levels.sort((s, t) => s.minScreenSpaceRadius === t.minScreenSpaceRadius ? s.numVertices - t.numVertices : s.minScreenSpaceRadius - t.minScreenSpaceRadius);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
function d(r) {
|
|
24
|
+
const e = [];
|
|
25
|
+
return r.levels.forEach((s) => s.components.forEach((t) => e.push(t.geometry.material))), o(e);
|
|
26
|
+
}
|
|
27
|
+
function f(r) {
|
|
28
|
+
const e = new Array();
|
|
29
|
+
return r.levels.forEach((s) => s.components.forEach((t) => {
|
|
30
|
+
t.textures != null && e.push(...t.textures);
|
|
31
|
+
})), o(e);
|
|
32
|
+
}
|
|
33
|
+
function R(r) {
|
|
34
|
+
const e = new Array();
|
|
35
|
+
return r.levels.forEach((s) => s.components.forEach((t) => e.push(t.geometry))), o(e);
|
|
36
|
+
}
|
|
37
|
+
export {
|
|
38
|
+
h as LodComponentResources,
|
|
39
|
+
l as LodLevelResources,
|
|
40
|
+
p as LodResources,
|
|
41
|
+
R as geometriesFromLodResources,
|
|
42
|
+
d as materialsFromLodResources,
|
|
43
|
+
f as texturesFromLodResources
|
|
44
|
+
};
|