@crystaldesign/real-time-viewer 25.14.0-beta.49 → 25.14.0-beta.50
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/build/esm/index.js
CHANGED
|
@@ -665,9 +665,9 @@ function Grids () {
|
|
|
665
665
|
rulePos: {
|
|
666
666
|
x: -data.rulePosition.x / 100,
|
|
667
667
|
y: data.rulePosition.y / 100,
|
|
668
|
-
z: data.rulePosition.z / 100
|
|
668
|
+
z: -data.rulePosition.z / 100
|
|
669
669
|
},
|
|
670
|
-
geoPos: new Vector3(-data.geoPosition.x / 100, data.geoPosition.y / 100, data.geoPosition.z / 100),
|
|
670
|
+
geoPos: new Vector3(-data.geoPosition.x / 100, data.geoPosition.y / 100, -data.geoPosition.z / 100),
|
|
671
671
|
type: 'GRID'
|
|
672
672
|
});
|
|
673
673
|
var bboxDiff = data.bboxSize.subtract(data.geoSize);
|