@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,68 @@
|
|
|
1
|
+
import { create as L } from "../../../../core/libs/gl-matrix-2/factories/mat4f64.js";
|
|
2
|
+
import { set as C } from "../../../../core/libs/gl-matrix-2/math/vec2.js";
|
|
3
|
+
import { create as z } from "../../../../core/libs/gl-matrix-2/factories/vec2f64.js";
|
|
4
|
+
import { s as c, k as g, f as D, h as S, g as U, c as R, r as k, n as Y, b as q } from "../../../../chunks/vec32.js";
|
|
5
|
+
import { create as f } from "../../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
6
|
+
import { getReferenceEllipsoid as W } from "../../../../geometry/ellipsoidUtils.js";
|
|
7
|
+
import { lonLatToWebMercatorComparable as j } from "../../../../geometry/projection/projectors.js";
|
|
8
|
+
import { newDoubleArray as B } from "../../../../geometry/support/DoubleArray.js";
|
|
9
|
+
import { create as H, fromArray as J, getNormal as K } from "../../../../geometry/support/plane.js";
|
|
10
|
+
import { ViewingMode as Q } from "../../../ViewingMode.js";
|
|
11
|
+
function ft(m, o, t, h, e = 1) {
|
|
12
|
+
if (t.isGeographic && h === Q.Global) {
|
|
13
|
+
const n = B(o.length), s = o.length, M = W(t);
|
|
14
|
+
for (let I = 0; I < s; I += 3)
|
|
15
|
+
j(o, I, n, I, M);
|
|
16
|
+
o = n;
|
|
17
|
+
}
|
|
18
|
+
C(a, Number.POSITIVE_INFINITY, Number.POSITIVE_INFINITY);
|
|
19
|
+
for (let n = 0; n < o.length; n += 3)
|
|
20
|
+
a[0] = Math.min(a[0], o[n]), a[1] = Math.min(a[1], o[n + 1]);
|
|
21
|
+
const i = a[0] % e, r = a[1] % e, u = a[0] - i, l = a[1] - r;
|
|
22
|
+
for (let n = 0; n < o.length; n += 3) {
|
|
23
|
+
const s = n / 3 * 4;
|
|
24
|
+
m[s] = (o[n] - u) / e, m[s + 1] = (o[n + 1] - l) / e, m[s + 2] = u / e, m[s + 3] = l / e;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
function it(m, o, t, h, e = 1) {
|
|
28
|
+
c(T, 1, 0, 0), c(E, 0, 1, 0), c(d, 0, 0, 1), Z(O, t), J(v, t) && X(v, T, E, d, h, O), C(a, Number.POSITIVE_INFINITY, Number.POSITIVE_INFINITY), C(V, Number.NEGATIVE_INFINITY, Number.NEGATIVE_INFINITY);
|
|
29
|
+
for (let s = 0; s < t.length; s += 3) {
|
|
30
|
+
c(_, t[s], t[s + 1], t[s + 2]);
|
|
31
|
+
const M = g(T, _), I = g(E, _);
|
|
32
|
+
a[0] = Math.min(a[0], M), a[1] = Math.min(a[1], I), V[0] = Math.max(V[0], M), V[1] = Math.max(V[1], I);
|
|
33
|
+
}
|
|
34
|
+
const i = g(d, O);
|
|
35
|
+
y(b, a[0], a[1], i, T, E, d), y($, V[0], a[1], i, T, E, d), y(F, a[0], V[1], i, T, E, d), D($, $, b), S($, $, 0.5), D(F, F, b), S(F, F, 0.5), U(b, b, $), U(b, b, F);
|
|
36
|
+
const r = a[0] % e, u = a[1] % e, l = a[0] - r, n = a[1] - u;
|
|
37
|
+
for (let s = 0; s < t.length; s += 3) {
|
|
38
|
+
c(_, t[s], t[s + 1], t[s + 2]);
|
|
39
|
+
const M = s / 3, I = 4 * M;
|
|
40
|
+
m[I] = (g(T, _) - l) / e, m[I + 1] = (g(E, _) - n) / e, m[I + 2] = l / e, m[I + 3] = n / e;
|
|
41
|
+
const G = 9 * M;
|
|
42
|
+
for (let p = 0; p < 3; p++)
|
|
43
|
+
o[G + p] = b[p], o[G + p + 3] = $[p], o[G + p + 6] = F[p];
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
const O = f(), _ = f(), v = H(), T = f(), E = f(), d = f(), a = z(), V = z(), b = f(), $ = f(), F = f();
|
|
47
|
+
function X(m, o, t, h, e, i) {
|
|
48
|
+
e != null ? (e.basisMatrixAtPosition(i, N), c(A, N[0], N[1], N[2]), c(x, N[4], N[5], N[6]), c(w, N[8], N[9], N[10])) : (c(A, 1, 0, 0), c(x, 0, 1, 0), c(w, 0, 0, 1));
|
|
49
|
+
const r = K(m);
|
|
50
|
+
g(r, w) < 0 && S(r, r, -1), R(h, r);
|
|
51
|
+
const u = g(r, x), l = g(r, A);
|
|
52
|
+
Math.abs(u) > Math.abs(l) ? (k(o, A, r, -l), Y(o, o), q(t, o, r), Y(t, t), S(t, t, -1)) : (k(t, x, r, -u), Y(t, t), q(o, t, r), Y(o, o));
|
|
53
|
+
}
|
|
54
|
+
const N = L(), A = f(), x = f(), w = f();
|
|
55
|
+
function Z(m, o) {
|
|
56
|
+
c(P, 0, 0, 0);
|
|
57
|
+
for (let t = 0; t < o.length - 3; t += 3)
|
|
58
|
+
P[0] += o[t], P[1] += o[t + 1], P[2] += o[t + 2];
|
|
59
|
+
S(m, P, 1 / (o.length / 3 - 1));
|
|
60
|
+
}
|
|
61
|
+
const P = f();
|
|
62
|
+
function y(m, o, t, h, e, i, r) {
|
|
63
|
+
c(m, o * e[0] + t * i[0] + h * r[0], o * e[1] + t * i[1] + h * r[1], o * e[2] + t * i[2] + h * r[2]);
|
|
64
|
+
}
|
|
65
|
+
export {
|
|
66
|
+
it as createMapSpaceUVCoords,
|
|
67
|
+
ft as createMapSpaceUVCoordsDraped
|
|
68
|
+
};
|
|
@@ -1,17 +1,23 @@
|
|
|
1
1
|
import { isDehydratedPoint as n } from "../../../layers/graphics/dehydratedFeatureUtils.js";
|
|
2
|
-
|
|
2
|
+
class o {
|
|
3
|
+
constructor(e, r = null, i = 0) {
|
|
4
|
+
this.array = e, this.spatialReference = r, this.offset = i;
|
|
5
|
+
}
|
|
6
|
+
}
|
|
7
|
+
function s(t) {
|
|
3
8
|
return "array" in t;
|
|
4
9
|
}
|
|
5
|
-
function
|
|
10
|
+
function l(t, e, r = "ground") {
|
|
6
11
|
if (n(e))
|
|
7
12
|
return t.getElevation(e.x, e.y, e.z || 0, e.spatialReference, r);
|
|
8
|
-
if (
|
|
13
|
+
if (s(e)) {
|
|
9
14
|
let i = e.offset;
|
|
10
15
|
return t.getElevation(e.array[i++], e.array[i++], e.array[i] || 0, e.spatialReference ?? t.spatialReference, r);
|
|
11
16
|
}
|
|
12
17
|
return t.getElevation(e[0], e[1], e[2] || 0, t.spatialReference, r);
|
|
13
18
|
}
|
|
14
19
|
export {
|
|
15
|
-
|
|
16
|
-
|
|
20
|
+
o as SamplePosition,
|
|
21
|
+
l as getElevationAtPoint,
|
|
22
|
+
s as isSamplePosition
|
|
17
23
|
};
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { neverReached as M } from "../../../core/compilerUtils.js";
|
|
2
|
+
import { lerp as A } from "../../../core/mathUtils.js";
|
|
3
|
+
import { invert as P } from "../../../core/libs/gl-matrix-2/math/mat4.js";
|
|
4
|
+
import { create as F } from "../../../core/libs/gl-matrix-2/factories/mat4f64.js";
|
|
5
|
+
import { g as V, h as g, E as G, e as E, s as p, k as b } from "../../../chunks/vec32.js";
|
|
6
|
+
import { create as d } from "../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
7
|
+
import { getReferenceEllipsoid as N } from "../../../geometry/ellipsoidUtils.js";
|
|
8
|
+
import { computeTranslationToOriginAndRotation as I } from "../../../geometry/projection/computeTranslationToOriginAndRotation.js";
|
|
9
|
+
import { projectBoundingRect as v } from "../../../geometry/projection/projectBoundingRect.js";
|
|
10
|
+
import { projectVectorToVector as B } from "../../../geometry/projection/projectVectorToVector.js";
|
|
11
|
+
import { create as L, empty as k, expandWithVec3 as U } from "../../../geometry/support/aaBoundingBox.js";
|
|
12
|
+
import { create as j, center as T } from "../../../geometry/support/aaBoundingRect.js";
|
|
13
|
+
import { PlaneIndex as a } from "../../../geometry/support/frustum.js";
|
|
14
|
+
import { create as W, fromPoints as O } from "../../../geometry/support/lineSegment.js";
|
|
15
|
+
import { create as f, fromVectorsAndPoint as y, negate as S, copy as q, signedDistance as $ } from "../../../geometry/support/plane.js";
|
|
16
|
+
import { wrap as w } from "../../../geometry/support/ray.js";
|
|
17
|
+
import { ViewingMode as x } from "../../ViewingMode.js";
|
|
18
|
+
import { frustumLineSegment as D } from "./intersectionUtils.js";
|
|
19
|
+
const H = 0.5 * Math.PI, J = H / Math.PI * 180;
|
|
20
|
+
class ge {
|
|
21
|
+
constructor(e) {
|
|
22
|
+
this._renderCoordsHelper = e.renderCoordsHelper, this._extent = new Array(4), this._planes = new Array(6), this._maxSpan = 0, this._center = { origin: d(), direction: d() };
|
|
23
|
+
for (let t = 0; t < 4; t++)
|
|
24
|
+
this._extent[t] = { origin: d(), direction: d(), cap: { next: null, direction: d() } }, this._planes[t] = f();
|
|
25
|
+
this._planes[a.NEAR] = f(), this._planes[a.FAR] = f(), this._planesWithoutFar = this._planes.slice(0, 5);
|
|
26
|
+
}
|
|
27
|
+
update(e, t, n, h = !0) {
|
|
28
|
+
const i = this._extent;
|
|
29
|
+
this._toRenderBoundingExtent(e, t, n), V(this._center.origin, i[0].origin, i[2].origin), g(this._center.origin, this._center.origin, 0.5), this._renderCoordsHelper.worldUpAtPosition(this._center.origin, this._center.direction), h || g(this._center.direction, this._center.direction, -1);
|
|
30
|
+
for (let r = 0; r < 4; r++) {
|
|
31
|
+
const s = i[r];
|
|
32
|
+
this._renderCoordsHelper.worldUpAtPosition(s.origin, s.direction);
|
|
33
|
+
const _ = i[r === 3 ? 0 : r + 1];
|
|
34
|
+
s.cap.next = _.origin, G(s.cap.direction, s.origin, _.origin), y(s.direction, s.cap.direction, s.origin, this._planes[r]), h || g(s.direction, s.direction, -1);
|
|
35
|
+
}
|
|
36
|
+
y(i[0].cap.direction, i[1].cap.direction, i[0].origin, this._planes[a.NEAR]), h ? S(this._planes[a.NEAR], this._planes[a.FAR]) : (q(this._planes[a.FAR], this._planes[a.NEAR]), S(this._planes[a.NEAR], this._planes[a.NEAR])), this._maxSpan = Math.max(Math.abs(e[0] - e[2]), Math.abs(e[1] - e[3])), this._maxSpanSpatialReference = t, this._minGlobalAltitude = 0.9 * N(this._maxSpanSpatialReference).radius;
|
|
37
|
+
}
|
|
38
|
+
isVisibleInFrustum(e, t, n = !1) {
|
|
39
|
+
if (e == null)
|
|
40
|
+
return !1;
|
|
41
|
+
if (this._renderCoordsHelper.viewingMode === x.Global) {
|
|
42
|
+
const i = this._maxSpanSpatialReference.isGeographic ? J : H * t;
|
|
43
|
+
if (this._maxSpan > i)
|
|
44
|
+
return !0;
|
|
45
|
+
if (e.altitude != null && e.altitude >= this._minGlobalAltitude)
|
|
46
|
+
return this._isVisibleInFrustumGlobal(e);
|
|
47
|
+
}
|
|
48
|
+
if (this._maxSpan === 0) {
|
|
49
|
+
const i = this._extent[0];
|
|
50
|
+
return !(n || !e.intersectsRay(w(i.origin, i.direction)));
|
|
51
|
+
}
|
|
52
|
+
for (let i = 0; i < this._extent.length; i++) {
|
|
53
|
+
const r = this._extent[i];
|
|
54
|
+
if (!n && e.intersectsRay(w(r.origin, r.direction)) || e.intersectsLineSegment(O(r.origin, r.cap.next, K), r.cap.direction))
|
|
55
|
+
return !0;
|
|
56
|
+
}
|
|
57
|
+
const h = n ? this._planes : this._planesWithoutFar;
|
|
58
|
+
for (let i = 0; i < e.lines.length; i++) {
|
|
59
|
+
const r = e.lines[i];
|
|
60
|
+
if (D(h, r.origin, r.endpoint, r.direction))
|
|
61
|
+
return !0;
|
|
62
|
+
}
|
|
63
|
+
return !1;
|
|
64
|
+
}
|
|
65
|
+
_toRenderBoundingExtentGlobal(e, t, n) {
|
|
66
|
+
T(e, c), c[2] = n, I(t, c, u, this._renderCoordsHelper.spatialReference), P(C, u), k(o);
|
|
67
|
+
for (const { x0: i, x1: r, y0: s, y1: _ } of z)
|
|
68
|
+
for (let m = 0; m < 5; m++) {
|
|
69
|
+
const R = m / 4;
|
|
70
|
+
c[0] = A(e[i], e[r], R), c[1] = A(e[s], e[_], R), c[2] = n, B(c, t, c, this._renderCoordsHelper.spatialReference), E(c, c, C), U(o, c);
|
|
71
|
+
}
|
|
72
|
+
p(this._extent[0].origin, o[0], o[1], o[2]), p(this._extent[1].origin, o[3], o[1], o[2]), p(this._extent[2].origin, o[3], o[4], o[2]), p(this._extent[3].origin, o[0], o[4], o[2]);
|
|
73
|
+
for (let i = 0; i < 4; ++i)
|
|
74
|
+
E(this._extent[i].origin, this._extent[i].origin, u);
|
|
75
|
+
}
|
|
76
|
+
_toRenderBoundingExtentLocal(e, t, n) {
|
|
77
|
+
v(e, t, l, this._renderCoordsHelper.spatialReference), p(this._extent[0].origin, l[0], l[1], n), p(this._extent[1].origin, l[2], l[1], n), p(this._extent[2].origin, l[2], l[3], n), p(this._extent[3].origin, l[0], l[3], n);
|
|
78
|
+
}
|
|
79
|
+
_toRenderBoundingExtent(e, t, n) {
|
|
80
|
+
switch (this._renderCoordsHelper.viewingMode) {
|
|
81
|
+
case x.Global:
|
|
82
|
+
this._toRenderBoundingExtentGlobal(e, t, n);
|
|
83
|
+
break;
|
|
84
|
+
case x.Local:
|
|
85
|
+
this._toRenderBoundingExtentLocal(e, t, n);
|
|
86
|
+
break;
|
|
87
|
+
default:
|
|
88
|
+
M(this._renderCoordsHelper.viewingMode);
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
_isVisibleInFrustumGlobal(e) {
|
|
92
|
+
if ($(e.planes[a.NEAR], this._center.origin) < 0 && b(this._center.direction, e.direction) < 0)
|
|
93
|
+
return !0;
|
|
94
|
+
for (let t = 0; t < 4; t++) {
|
|
95
|
+
const n = this._extent[t];
|
|
96
|
+
if ($(e.planes[a.NEAR], n.origin) < 0 && b(n.direction, e.direction) < 0)
|
|
97
|
+
return !0;
|
|
98
|
+
}
|
|
99
|
+
return !1;
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
const z = [{ x0: 0, y0: 1, x1: 2, y1: 1 }, { x0: 0, y0: 3, x1: 2, y1: 3 }, { x0: 0, y0: 1, x1: 0, y1: 3 }, { x0: 2, y0: 1, x1: 2, y1: 3 }], c = d(), u = F(), C = F(), o = L(), l = j(), K = W();
|
|
103
|
+
export {
|
|
104
|
+
ge as FrustumExtentIntersection
|
|
105
|
+
};
|
|
@@ -142,20 +142,20 @@ function ee() {
|
|
|
142
142
|
class te {
|
|
143
143
|
constructor(e) {
|
|
144
144
|
this.fields = new Array(), e.fields.forEach((t, i) => {
|
|
145
|
-
const s = { ...t, constructor:
|
|
145
|
+
const s = { ...t, constructor: $(t.constructor) };
|
|
146
146
|
this.fields.push([i, s]);
|
|
147
147
|
}), this.stride = e.stride;
|
|
148
148
|
}
|
|
149
149
|
}
|
|
150
150
|
const R = [d, c, l, o, p, V, w, _, B, y, F, m, g, b, z, v, E, C, x, M, A, k, H, O, T, L, S, j, q, U, D, G, J, K, N, P];
|
|
151
|
-
function
|
|
151
|
+
function $(f) {
|
|
152
152
|
return `${f.ElementType}_${f.ElementCount}`;
|
|
153
153
|
}
|
|
154
154
|
function W(f) {
|
|
155
|
-
return
|
|
155
|
+
return I.get(f);
|
|
156
156
|
}
|
|
157
|
-
const
|
|
158
|
-
R.forEach((f) =>
|
|
157
|
+
const I = /* @__PURE__ */ new Map();
|
|
158
|
+
R.forEach((f) => I.set($(f), f));
|
|
159
159
|
export {
|
|
160
160
|
n as InterleavedBuffer,
|
|
161
161
|
a as InterleavedLayout,
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import { set as b, dist as h } from "../../../../core/libs/gl-matrix-2/math/vec2.js";
|
|
2
|
+
import { create as T } from "../../../../core/libs/gl-matrix-2/factories/vec2f64.js";
|
|
3
|
+
import { ONES as A } from "../../../../core/libs/gl-matrix-2/factories/vec4f64.js";
|
|
4
|
+
import { getReferenceEllipsoid as D } from "../../../../geometry/ellipsoidUtils.js";
|
|
5
|
+
import { lonLatToWebMercatorComparable as E } from "../../../../geometry/projection/projectors.js";
|
|
6
|
+
import { newDoubleArray as I } from "../../../../geometry/support/DoubleArray.js";
|
|
7
|
+
import { newFloatArray as w } from "../../../../geometry/support/FloatArray.js";
|
|
8
|
+
import { getZeroIndexArray as y } from "../../../../geometry/support/Indices.js";
|
|
9
|
+
import { ViewingMode as g } from "../../../ViewingMode.js";
|
|
10
|
+
import { Attribute as l } from "../../webgl-engine/lib/Attribute.js";
|
|
11
|
+
import { ContentObjectType as F } from "../../webgl-engine/lib/ContentObjectType.js";
|
|
12
|
+
import { Geometry as R } from "../../webgl-engine/lib/Geometry.js";
|
|
13
|
+
import { VertexAttribute as s } from "../../webgl-engine/lib/VertexAttribute.js";
|
|
14
|
+
function Q(t, e, r = null) {
|
|
15
|
+
const a = [], c = e.mapPositions;
|
|
16
|
+
d(e, a);
|
|
17
|
+
const u = a[0][1].data, n = a[0][1].indices.length, o = y(n);
|
|
18
|
+
return O(e, a, o), v(e, a, o), C(e, a, o), S(e, a, o), U(e, a, o), G(e, a, o), L(e, a, u), new R(t, a, c, F.Line, r);
|
|
19
|
+
}
|
|
20
|
+
function d(t, e) {
|
|
21
|
+
const { attributeData: { position: r }, removeDuplicateStartEnd: a } = t, c = z(r) && a, u = r.length / 3 - (c ? 1 : 0), n = new Array(2 * (u - 1)), o = c ? r.slice(0, -3) : r;
|
|
22
|
+
let f = 0;
|
|
23
|
+
for (let p = 0; p < u - 1; p++)
|
|
24
|
+
n[f++] = p, n[f++] = p + 1;
|
|
25
|
+
e.push([s.POSITION, new l(o, n, 3, c)]);
|
|
26
|
+
}
|
|
27
|
+
function O(t, e, r) {
|
|
28
|
+
if (t.attributeData.colorFeature != null)
|
|
29
|
+
return;
|
|
30
|
+
const a = t.attributeData.color;
|
|
31
|
+
e.push([s.COLOR, new l(a ?? A, r, 4)]);
|
|
32
|
+
}
|
|
33
|
+
function C(t, e, r) {
|
|
34
|
+
t.attributeData.normal && e.push([s.NORMAL, new l(t.attributeData.normal, r, 3)]);
|
|
35
|
+
}
|
|
36
|
+
function S(t, e, r) {
|
|
37
|
+
t.attributeData.colorFeature != null && e.push([s.COLORFEATUREATTRIBUTE, new l([t.attributeData.colorFeature], r, 1, !0)]);
|
|
38
|
+
}
|
|
39
|
+
function v(t, e, r) {
|
|
40
|
+
t.attributeData.sizeFeature == null && e.push([s.SIZE, new l([t.attributeData.size ?? 1], r, 1, !0)]);
|
|
41
|
+
}
|
|
42
|
+
function U(t, e, r) {
|
|
43
|
+
t.attributeData.sizeFeature != null && e.push([s.SIZEFEATUREATTRIBUTE, new l([t.attributeData.sizeFeature], r, 1, !0)]);
|
|
44
|
+
}
|
|
45
|
+
function G(t, e, r) {
|
|
46
|
+
t.attributeData.opacityFeature != null && e.push([s.OPACITYFEATUREATTRIBUTE, new l([t.attributeData.opacityFeature], r, 1, !0)]);
|
|
47
|
+
}
|
|
48
|
+
function L(t, e, r) {
|
|
49
|
+
if (t.overlayInfo == null || t.overlayInfo.renderCoordsHelper.viewingMode !== g.Global || !t.overlayInfo.spatialReference.isGeographic)
|
|
50
|
+
return;
|
|
51
|
+
const a = I(r.length), c = D(t.overlayInfo.spatialReference);
|
|
52
|
+
for (let i = 0; i < a.length; i += 3)
|
|
53
|
+
E(r, i, a, i, c);
|
|
54
|
+
const u = r.length / 3, n = w(u + 1);
|
|
55
|
+
let o = M, f = N, p = 0, m = 0;
|
|
56
|
+
b(o, a[m++], a[m++]), m++, n[0] = 0;
|
|
57
|
+
for (let i = 1; i < u + 1; ++i)
|
|
58
|
+
i === u && (m = 0), b(f, a[m++], a[m++]), m++, p += h(o, f), n[i] = p, [o, f] = [f, o];
|
|
59
|
+
e.push([s.DISTANCETOSTART, new l(n, e[0][1].indices, 1, !0)]);
|
|
60
|
+
}
|
|
61
|
+
function z(t) {
|
|
62
|
+
const e = t.length;
|
|
63
|
+
return t[0] === t[e - 3] && t[1] === t[e - 2] && t[2] === t[e - 1];
|
|
64
|
+
}
|
|
65
|
+
const M = T(), N = T();
|
|
66
|
+
export {
|
|
67
|
+
Q as createGeometry
|
|
68
|
+
};
|
|
@@ -4,10 +4,11 @@ import "../../webgl-engine/lib/Texture.js";
|
|
|
4
4
|
import "../../../webgl/enums.js";
|
|
5
5
|
import "../../../webgl/Texture.js";
|
|
6
6
|
import "../../../webgl/checkWebGLError.js";
|
|
7
|
-
const r = 64, e = r / 2, i = e / 5, k = r / i;
|
|
7
|
+
const r = 64, e = r / 2, i = e / 5, k = r / i, n = 0.25;
|
|
8
8
|
export {
|
|
9
9
|
k as markerSizePerLineWidth,
|
|
10
10
|
e as markerSymbolSize,
|
|
11
11
|
r as markerTextureSize,
|
|
12
|
-
i as markerThickness
|
|
12
|
+
i as markerThickness,
|
|
13
|
+
n as markerTipThicknessFactor
|
|
13
14
|
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { create as r } from "../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
2
|
+
import { projectBuffer as x } from "../../../geometry/projection/projectBuffer.js";
|
|
3
|
+
function o(n, a, u) {
|
|
4
|
+
if (n == null || u == null)
|
|
5
|
+
return !1;
|
|
6
|
+
let i = !0;
|
|
7
|
+
return e[0] = n.xmin != null ? n.xmin : 0, e[1] = n.ymin != null ? n.ymin : 0, e[2] = n.zmin != null ? n.zmin : 0, i = i && x(e, n.spatialReference, 0, e, u, 0, 1), a[0] = e[0], a[1] = e[1], e[0] = n.xmax != null ? n.xmax : 0, e[1] = n.ymax != null ? n.ymax : 0, e[2] = n.zmax != null ? n.zmax : 0, i = i && x(e, n.spatialReference, 0, e, u, 0, 1), a[2] = e[0], a[3] = e[1], n.xmin == null && (a[0] = -1 / 0), n.ymin == null && (a[1] = -1 / 0), n.xmax == null && (a[2] = 1 / 0), n.ymax == null && (a[3] = 1 / 0), i;
|
|
8
|
+
}
|
|
9
|
+
const e = r();
|
|
10
|
+
export {
|
|
11
|
+
o as toBoundingRect
|
|
12
|
+
};
|
|
@@ -1,21 +1,25 @@
|
|
|
1
|
-
import { castRenderScreenPointArray3 as t } from "../../../../core/screenUtils.js";
|
|
1
|
+
import { screenPointObjectToArray as a, castRenderScreenPointArray3 as t } from "../../../../core/screenUtils.js";
|
|
2
2
|
import { copy as s } from "../../../../core/libs/gl-matrix-2/math/vec2.js";
|
|
3
|
-
import { f } from "../../../../chunks/vec32.js";
|
|
4
|
-
import "../../../../geometry/support/ray.js";
|
|
3
|
+
import { n as f, f as d } from "../../../../chunks/vec32.js";
|
|
4
|
+
import { create as u } from "../../../../geometry/support/ray.js";
|
|
5
5
|
import { sv3d as o } from "../../../../geometry/support/vectorStacks.js";
|
|
6
|
-
function
|
|
7
|
-
return p(e,
|
|
6
|
+
function z(e, n, r = u()) {
|
|
7
|
+
return p(e, a(n), r), f(r.direction, r.direction), r;
|
|
8
8
|
}
|
|
9
9
|
function p(e, n, r) {
|
|
10
|
+
return l(e, e.screenToRender(n, t(o.get())), r);
|
|
11
|
+
}
|
|
12
|
+
function l(e, n, r) {
|
|
10
13
|
const i = t(s(o.get(), n));
|
|
11
14
|
if (i[2] = 0, !e.unprojectFromRenderScreen(i, r.origin))
|
|
12
15
|
return null;
|
|
13
|
-
const
|
|
14
|
-
|
|
15
|
-
const
|
|
16
|
-
return
|
|
16
|
+
const c = t(s(o.get(), n));
|
|
17
|
+
c[2] = 1;
|
|
18
|
+
const m = e.unprojectFromRenderScreen(c, o.get());
|
|
19
|
+
return m == null ? null : (d(r.direction, m, r.origin), r);
|
|
17
20
|
}
|
|
18
21
|
export {
|
|
19
|
-
|
|
20
|
-
|
|
22
|
+
l as fromRender,
|
|
23
|
+
p as fromScreen,
|
|
24
|
+
z as fromScreenNormalized
|
|
21
25
|
};
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { create as s } from "../../../core/libs/gl-matrix-2/factories/vec2f64.js";
|
|
2
|
+
import { q as o, c as a, f as l, h as u, n as f, k as p } from "../../../chunks/vec32.js";
|
|
3
|
+
import { create as m } from "../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
4
|
+
import { getNormal as d, signedDistance as g } from "../../../geometry/support/plane.js";
|
|
5
|
+
function k(c, t, e, n) {
|
|
6
|
+
return b(c, t, e, h(n, t, e, !0));
|
|
7
|
+
}
|
|
8
|
+
const $ = { dir: m(), len: 0, clip: s() };
|
|
9
|
+
function h(c, t, e, n) {
|
|
10
|
+
const r = $;
|
|
11
|
+
return c ? (e && n && (r.len = o(t, e)), a(r.dir, c)) : n ? (r.len = o(t, e), l(r.dir, e, t), u(r.dir, r.dir, 1 / r.len)) : (l(r.dir, e, t), f(r.dir, r.dir)), r;
|
|
12
|
+
}
|
|
13
|
+
function x(c, t, e) {
|
|
14
|
+
const n = p(d(c), e.dir), r = -g(c, t);
|
|
15
|
+
if (r < 0 && n >= 0)
|
|
16
|
+
return !1;
|
|
17
|
+
if (n > -1e-6 && n < 1e-6)
|
|
18
|
+
return r > 0;
|
|
19
|
+
if ((r < 0 || n < 0) && !(r < 0 && n < 0))
|
|
20
|
+
return !0;
|
|
21
|
+
const i = r / n;
|
|
22
|
+
return n > 0 ? i < e.clip[1] && (e.clip[1] = i) : i > e.clip[0] && (e.clip[0] = i), e.clip[0] <= e.clip[1];
|
|
23
|
+
}
|
|
24
|
+
function b(c, t, e, n) {
|
|
25
|
+
n.clip[0] = 0, n.clip[1] = e ? n.len : Number.MAX_VALUE;
|
|
26
|
+
for (let r = 0; r < c.length; r++)
|
|
27
|
+
if (!x(c[r], t, n))
|
|
28
|
+
return !1;
|
|
29
|
+
return !0;
|
|
30
|
+
}
|
|
31
|
+
export {
|
|
32
|
+
k as frustumLineSegment
|
|
33
|
+
};
|
|
@@ -1,14 +1,19 @@
|
|
|
1
1
|
import "../../../core/mathUtils.js";
|
|
2
|
-
import { s as
|
|
2
|
+
import { s as m, b as M, n as c } from "../../../chunks/vec32.js";
|
|
3
3
|
import "../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
4
|
-
function
|
|
5
|
-
const
|
|
6
|
-
return Math.sqrt(Math.max(
|
|
4
|
+
function u(r) {
|
|
5
|
+
const a = r[0] * r[0] + r[4] * r[4] + r[8] * r[8], n = r[1] * r[1] + r[5] * r[5] + r[9] * r[9], o = r[2] * r[2] + r[6] * r[6] + r[10] * r[10];
|
|
6
|
+
return Math.sqrt(Math.max(a, n, o));
|
|
7
7
|
}
|
|
8
|
-
function
|
|
9
|
-
Math.
|
|
8
|
+
function f(r, a) {
|
|
9
|
+
const n = Math.sqrt(a[0] * a[0] + a[4] * a[4] + a[8] * a[8]), o = Math.sqrt(a[1] * a[1] + a[5] * a[5] + a[9] * a[9]), e = Math.sqrt(a[2] * a[2] + a[6] * a[6] + a[10] * a[10]);
|
|
10
|
+
return m(r, n, o, e), r;
|
|
11
|
+
}
|
|
12
|
+
function q(r, a, n) {
|
|
13
|
+
Math.abs(r[0]) > Math.abs(r[1]) ? m(a, 0, 1, 0) : m(a, 1, 0, 0), M(n, r, a), M(a, n, r), c(n, n), c(a, a);
|
|
10
14
|
}
|
|
11
15
|
export {
|
|
12
|
-
|
|
13
|
-
|
|
16
|
+
u as maxScale,
|
|
17
|
+
f as scaleFromMatrix,
|
|
18
|
+
q as tangentFrame
|
|
14
19
|
};
|
|
@@ -3,8 +3,8 @@ import { create as it } from "../../../core/libs/gl-matrix-2/factories/mat3f64.j
|
|
|
3
3
|
import { create as rt } from "../../../core/libs/gl-matrix-2/factories/mat4f64.js";
|
|
4
4
|
import { set as nt, conjugate as B, multiply as ht } from "../../../core/libs/gl-matrix-2/math/quat.js";
|
|
5
5
|
import { IDENTITY as ot, create as F } from "../../../core/libs/gl-matrix-2/factories/quatf64.js";
|
|
6
|
-
import { s as R, u as p, v as T, w as G, x as ct, t as dt, g as N,
|
|
7
|
-
import { ZEROS as mt, create as j,
|
|
6
|
+
import { s as R, u as p, v as T, w as G, x as ct, t as dt, g as N, y as _t, z as tt, l as J, h as V, r as E, A as ut, B as ft, C as lt } from "../../../chunks/vec32.js";
|
|
7
|
+
import { ZEROS as mt, create as j, UNIT_Z as K, fromValues as gt } from "../../../core/libs/gl-matrix-2/factories/vec3f64.js";
|
|
8
8
|
import { t as pt } from "../../../chunks/vec42.js";
|
|
9
9
|
import { create as Mt } from "../../../core/libs/gl-matrix-2/factories/vec4f64.js";
|
|
10
10
|
import { getReferenceEllipsoid as bt } from "../../../geometry/ellipsoidUtils.js";
|
|
@@ -110,14 +110,14 @@ class A {
|
|
|
110
110
|
}
|
|
111
111
|
intersectSphere(t) {
|
|
112
112
|
i[0] = this._data[0] - t[0], i[1] = this._data[1] - t[1], i[2] = this._data[2] - t[2];
|
|
113
|
-
const a = this.getQuaternion(
|
|
114
|
-
return B(c, a), p(i, i, c), T(i, i),
|
|
113
|
+
const a = this.getQuaternion(q);
|
|
114
|
+
return B(c, a), p(i, i, c), T(i, i), $[0] = Math.min(i[0], this._data[3]), $[1] = Math.min(i[1], this._data[4]), $[2] = Math.min(i[2], this._data[5]), G($, i) < t[3] * t[3];
|
|
115
115
|
}
|
|
116
116
|
intersectSphereWithMBS(t, a = this.radius) {
|
|
117
117
|
const s = this._data;
|
|
118
118
|
i[0] = s[0] - t[0], i[1] = s[1] - t[1], i[2] = s[2] - t[2];
|
|
119
119
|
const e = t[3], r = e + a;
|
|
120
|
-
return !(ct(i) > r * r) && (c[0] = -s[6], c[1] = -s[7], c[2] = -s[8], c[3] = s[9], p(i, i, c), T(i, i),
|
|
120
|
+
return !(ct(i) > r * r) && (c[0] = -s[6], c[1] = -s[7], c[2] = -s[8], c[3] = s[9], p(i, i, c), T(i, i), $[0] = Math.min(i[0], s[3]), $[1] = Math.min(i[1], s[4]), $[2] = Math.min(i[2], s[5]), G($, i) < e * e);
|
|
121
121
|
}
|
|
122
122
|
intersectPlane(t) {
|
|
123
123
|
const a = t[0] * this._data[0] + t[1] * this._data[1] + t[2] * this._data[2] + t[3], s = this.projectedRadius(v(t));
|
|
@@ -126,7 +126,7 @@ class A {
|
|
|
126
126
|
intersectRay(t, a, s = 0) {
|
|
127
127
|
const e = this._data, r = c;
|
|
128
128
|
r[0] = -e[6], r[1] = -e[7], r[2] = -e[8], r[3] = e[9], i[0] = t[0] - e[0], i[1] = t[1] - e[1], i[2] = t[2] - e[2];
|
|
129
|
-
const o = p(i, i, c), u = p(
|
|
129
|
+
const o = p(i, i, c), u = p($, a, c);
|
|
130
130
|
let h = -1 / 0, d = 1 / 0;
|
|
131
131
|
const C = this.getHalfSize(H);
|
|
132
132
|
for (let f = 0; f < 3; f++) {
|
|
@@ -140,7 +140,7 @@ class A {
|
|
|
140
140
|
return h <= d;
|
|
141
141
|
}
|
|
142
142
|
projectedArea(t, a, s, e) {
|
|
143
|
-
const r = this.getQuaternion(
|
|
143
|
+
const r = this.getQuaternion(q);
|
|
144
144
|
B(c, r), i[0] = t[0] - this._data[0], i[1] = t[1] - this._data[1], i[2] = t[2] - this._data[2], p(i, i, c);
|
|
145
145
|
const o = this.getHalfSize(H), u = i[0] < -o[0] ? -1 : i[0] > o[0] ? 1 : 0, h = i[1] < -o[1] ? -1 : i[1] > o[1] ? 1 : 0, d = i[2] < -o[2] ? -1 : i[2] > o[2] ? 1 : 0, C = Math.abs(u) + Math.abs(h) + Math.abs(d);
|
|
146
146
|
if (C === 0)
|
|
@@ -161,7 +161,7 @@ class A {
|
|
|
161
161
|
return Math.abs(O) * s * e * 0.125;
|
|
162
162
|
}
|
|
163
163
|
projectedRadius(t) {
|
|
164
|
-
const a = this.getQuaternion(
|
|
164
|
+
const a = this.getQuaternion(q);
|
|
165
165
|
return B(c, a), p(i, t, c), Math.abs(i[0] * this._data[3]) + Math.abs(i[1] * this._data[4]) + Math.abs(i[2] * this._data[5]);
|
|
166
166
|
}
|
|
167
167
|
minimumDistancePlane(t) {
|
|
@@ -171,7 +171,7 @@ class A {
|
|
|
171
171
|
return t[0] * this._data[0] + t[1] * this._data[1] + t[2] * this._data[2] + t[3] + this.projectedRadius(v(t));
|
|
172
172
|
}
|
|
173
173
|
toAaBoundingBox(t) {
|
|
174
|
-
const a = this.getQuaternion(
|
|
174
|
+
const a = this.getQuaternion(q), s = D(y, a), e = this._data[3] * Math.abs(s[0]) + this._data[4] * Math.abs(s[3]) + this._data[5] * Math.abs(s[6]), r = this._data[3] * Math.abs(s[1]) + this._data[4] * Math.abs(s[4]) + this._data[5] * Math.abs(s[7]), o = this._data[3] * Math.abs(s[2]) + this._data[4] * Math.abs(s[5]) + this._data[5] * Math.abs(s[8]);
|
|
175
175
|
t[0] = this._data[0] - e, t[1] = this._data[1] - r, t[2] = this._data[2] - o, t[3] = this._data[0] + e, t[4] = this._data[1] + r, t[5] = this._data[2] + o;
|
|
176
176
|
}
|
|
177
177
|
transform(t, a, s, e = 0, r = Z(s), o = Z(a), u = at(a, o)) {
|
|
@@ -183,12 +183,12 @@ class A {
|
|
|
183
183
|
xt(a, this, s, t, e);
|
|
184
184
|
else {
|
|
185
185
|
const h = this.getCenter(z);
|
|
186
|
-
h[2] += e, W(h, a, 0, h, s, 0, 1), t.center = h, this !== t && (t.quaternion = this.getQuaternion(
|
|
186
|
+
h[2] += e, W(h, a, 0, h, s, 0, 1), t.center = h, this !== t && (t.quaternion = this.getQuaternion(q), t.halfSize = this.getHalfSize(H));
|
|
187
187
|
}
|
|
188
188
|
}
|
|
189
189
|
}
|
|
190
|
-
const c = F(),
|
|
191
|
-
function
|
|
190
|
+
const c = F(), q = F(), $t = F(), i = j(), $ = j(), x = Mt();
|
|
191
|
+
function qt(_, t = new A()) {
|
|
192
192
|
return Pt(_, t), t;
|
|
193
193
|
}
|
|
194
194
|
const b = [0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2], jt = (() => {
|
|
@@ -202,11 +202,11 @@ const b = [0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.1, 1.2], jt = (() =
|
|
|
202
202
|
return a([6, 2, 3, 1, 5, 4]), a([0, 2, 3, 1, 5, 4]), a([0, 2, 3, 7, 5, 4]), a([0, 1, 3, 2, 6, 4]), a([0, 1, 3, 2, 0, 0]), a([0, 1, 5, 7, 3, 2]), a([0, 1, 3, 7, 6, 4]), a([0, 1, 3, 7, 6, 2]), a([0, 1, 5, 7, 6, 2]), a([0, 1, 5, 4, 6, 2]), a([0, 1, 5, 4, 0, 0]), a([0, 1, 3, 7, 5, 4]), a([0, 2, 6, 4, 0, 0]), a([0, 0, 0, 0, 0, 0]), a([1, 3, 7, 5, 0, 0]), a([2, 3, 7, 6, 4, 0]), a([2, 3, 7, 6, 0, 0]), a([2, 3, 1, 5, 7, 6]), a([0, 1, 5, 7, 6, 2]), a([0, 1, 5, 7, 6, 4]), a([0, 1, 3, 7, 6, 4]), a([4, 5, 7, 6, 2, 0]), a([4, 5, 7, 6, 0, 0]), a([4, 5, 1, 3, 7, 6]), a([0, 2, 3, 7, 5, 4]), a([6, 2, 3, 7, 5, 4]), a([6, 2, 3, 1, 5, 4]), _;
|
|
203
203
|
})();
|
|
204
204
|
function aa(_, t, a, s, e) {
|
|
205
|
-
const r = _.getQuaternion(
|
|
205
|
+
const r = _.getQuaternion(q);
|
|
206
206
|
e.quaternion = r, B(c, r);
|
|
207
207
|
const o = _.getCenter(z), u = _.getHalfSize(H);
|
|
208
208
|
if (s === Ct.Global) {
|
|
209
|
-
p(n, o, c), T(S, n),
|
|
209
|
+
p(n, o, c), T(S, n), _t(g, S, u), tt(g, S, g);
|
|
210
210
|
const h = J(g);
|
|
211
211
|
N(g, S, u);
|
|
212
212
|
const d = J(g);
|
|
@@ -214,8 +214,8 @@ function aa(_, t, a, s, e) {
|
|
|
214
214
|
e.center = o, R(n, a, a, a), e.halfSize = N(n, u, n);
|
|
215
215
|
else {
|
|
216
216
|
const C = d > 0 ? 1 + t / d : 1, f = h > 0 ? 1 + a / h : 1, Q = (f + C) / 2, w = (f - C) / 2;
|
|
217
|
-
V(g, S, w), e.halfSize = E(g, g, u, Q), V(g, S, Q), E(g, g, u, w),
|
|
218
|
-
const M = _.getQuaternion(
|
|
217
|
+
V(g, S, w), e.halfSize = E(g, g, u, Q), V(g, S, Q), E(g, g, u, w), ut(n, n), ft(n, g, n);
|
|
218
|
+
const M = _.getQuaternion($t);
|
|
219
219
|
e.center = p(n, n, M);
|
|
220
220
|
}
|
|
221
221
|
} else {
|
|
@@ -234,7 +234,7 @@ function xt(_, t, a, s, e) {
|
|
|
234
234
|
t.getCenter(z), z[2] += e, st(_, t, z, a, s);
|
|
235
235
|
}
|
|
236
236
|
function st(_, t, a, s, e) {
|
|
237
|
-
const r = t.getQuaternion(
|
|
237
|
+
const r = t.getQuaternion(q), o = D(y, r), u = t.getHalfSize(H);
|
|
238
238
|
for (let h = 0; h < 8; ++h) {
|
|
239
239
|
for (let d = 0; d < 3; ++d)
|
|
240
240
|
P[d] = u[d] * (h & 1 << d ? -1 : 1);
|
|
@@ -245,23 +245,23 @@ function st(_, t, a, s, e) {
|
|
|
245
245
|
I[3 * h + d] = C;
|
|
246
246
|
}
|
|
247
247
|
}
|
|
248
|
-
W(I, _, 0, I, s, 0, 8),
|
|
248
|
+
W(I, _, 0, I, s, 0, 8), qt(Bt, e);
|
|
249
249
|
}
|
|
250
250
|
function Rt(_, t, a, s, e = Z(a), r = at(a, e)) {
|
|
251
251
|
_.getCorners(k), _.getCenter(P), P[2] += s, St(a, P, m, e), t.setCenter(m[12], m[13], m[14]);
|
|
252
252
|
const o = 2 * Math.sqrt(1 + m[0] + m[5] + m[10]);
|
|
253
253
|
c[0] = (m[6] - m[9]) / o, c[1] = (m[8] - m[2]) / o, c[2] = (m[1] - m[4]) / o, c[3] = 0.25 * o;
|
|
254
|
-
const u = _.getQuaternion(
|
|
254
|
+
const u = _.getQuaternion(q);
|
|
255
255
|
t.quaternion = ht(c, c, u), B(c, c), R(S, 0, 0, 0);
|
|
256
256
|
const h = t.getCenter(Ht);
|
|
257
257
|
for (const d of k)
|
|
258
|
-
d[2] += s, r(d, 0, d, 0), tt(n, d, h), p(n, n, c), T(n, n),
|
|
258
|
+
d[2] += s, r(d, 0, d, 0), tt(n, d, h), p(n, n, c), T(n, n), lt(S, S, n);
|
|
259
259
|
t.halfSize = S;
|
|
260
260
|
}
|
|
261
261
|
function yt(_, t, a, s, e = Z(a)) {
|
|
262
262
|
const r = bt(a), o = 1 + Math.max(0, s) / (r.radius + _.centerZ);
|
|
263
263
|
_.getCenter(P), P[2] += s, W(P, a, 0, P, e, 0, 1), t.center = P;
|
|
264
|
-
const u = _.getQuaternion(
|
|
264
|
+
const u = _.getQuaternion(q);
|
|
265
265
|
t.quaternion = u, B(c, u), R(n, 0, 0, 1), p(n, n, c);
|
|
266
266
|
const h = _.getHalfSize(H);
|
|
267
267
|
R(n, h[0] * Math.abs(n[0]), h[1] * Math.abs(n[1]), h[2] * Math.abs(n[2])), V(n, n, r.inverseFlattening), N(n, h, n), t.halfSize = V(n, n, o);
|
|
@@ -269,6 +269,6 @@ function yt(_, t, a, s, e = Z(a)) {
|
|
|
269
269
|
const I = new Array(24), Bt = new Qt(I, 3), P = j(), z = j(), Ht = j(), H = j(), y = it(), m = rt(), k = [[0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0], [0, 0, 0]], n = j(), S = j(), g = j(), Ot = gt(-1, -1, -1);
|
|
270
270
|
export {
|
|
271
271
|
A as Obb,
|
|
272
|
-
|
|
272
|
+
qt as compute,
|
|
273
273
|
aa as computeOffsetObb
|
|
274
274
|
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { projectBuffer as y } from "../../../../geometry/projection/projectBuffer.js";
|
|
2
|
+
import { newDoubleArray as d, doubleSubArray as f } from "../../../../geometry/support/DoubleArray.js";
|
|
3
|
+
import { CounterClockwiseMode as a, pathsToTriangulationInfo as g } from "../../../../geometry/support/triangulationUtils.js";
|
|
4
|
+
import { applyPerVertexElevationAlignment as h } from "../../layers/graphics/elevationAlignmentUtils.js";
|
|
5
|
+
import { drapedZ as C } from "../../terrain/OverlayRenderer.js";
|
|
6
|
+
function N(o, p, s, i) {
|
|
7
|
+
const e = o.type === "polygon" ? a.CCW_IS_HOLE : a.NONE, t = o.type === "polygon" ? o.rings : o.paths, { position: n, outlines: r } = g(t, !!o.hasZ, e, o.spatialReference), l = d(n.length), u = h(n, o.spatialReference, 0, l, 0, n, 0, n.length / 3, p, s, i), c = u != null;
|
|
8
|
+
return { lines: c ? m(r, n, l) : [], projectionSuccess: c, sampledElevation: u };
|
|
9
|
+
}
|
|
10
|
+
function O(o, p) {
|
|
11
|
+
const s = o.type === "polygon" ? a.CCW_IS_HOLE : a.NONE, i = o.type === "polygon" ? o.rings : o.paths, { position: e, outlines: t } = g(i, !1, s), n = y(e, o.spatialReference, 0, e, p, 0, e.length / 3);
|
|
12
|
+
for (let r = 2; r < e.length; r += 3)
|
|
13
|
+
e[r] = C;
|
|
14
|
+
return { lines: n ? m(t, e) : [], projectionSuccess: n };
|
|
15
|
+
}
|
|
16
|
+
function m(o, p, s = null) {
|
|
17
|
+
const i = new Array();
|
|
18
|
+
for (const { index: e, count: t } of o) {
|
|
19
|
+
if (t <= 1)
|
|
20
|
+
continue;
|
|
21
|
+
const n = 3 * e, r = 3 * t;
|
|
22
|
+
i.push({ position: f(p, 3 * e, 3 * t), mapPositions: s != null ? f(s, n, r) : void 0 });
|
|
23
|
+
}
|
|
24
|
+
return i;
|
|
25
|
+
}
|
|
26
|
+
export {
|
|
27
|
+
N as geometryToRenderInfo,
|
|
28
|
+
O as geometryToRenderInfoDraped
|
|
29
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { newDoubleArray as i } from "../../../../geometry/support/DoubleArray.js";
|
|
2
|
+
import { applyPerVertexElevationAlignment as g } from "../../layers/graphics/elevationAlignmentUtils.js";
|
|
3
|
+
function f(o, s, a, m, p) {
|
|
4
|
+
const e = i(3 * o.length), r = i(e.length);
|
|
5
|
+
o.forEach((n, t) => {
|
|
6
|
+
e[3 * t] = n[0], e[3 * t + 1] = n[1], e[3 * t + 2] = n.length > 2 ? n[2] : 0;
|
|
7
|
+
});
|
|
8
|
+
const l = g(e, s, 0, r, 0, e, 0, e.length / 3, a, m, p), c = l != null;
|
|
9
|
+
return { numVertices: o.length, position: e, mapPositions: r, projectionSuccess: c, sampledElevation: l };
|
|
10
|
+
}
|
|
11
|
+
export {
|
|
12
|
+
f as geometryToRenderInfo
|
|
13
|
+
};
|