kitchen-simulator 1.1.1-test.49 → 1.1.1-test.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/es/@history.js +2 -0
- package/es/AppContext.js +3 -0
- package/es/KitchenConfigurator.js +645 -0
- package/es/KitchenConfiguratorApp.js +480 -0
- package/es/actions/area-actions.js +14 -0
- package/es/actions/export.js +23 -0
- package/es/actions/groups-actions.js +89 -0
- package/es/actions/holes-actions.js +119 -0
- package/es/actions/items-actions.js +313 -0
- package/es/actions/lines-actions.js +81 -0
- package/es/actions/project-actions.js +281 -0
- package/es/actions/scene-actions.js +33 -0
- package/es/actions/vertices-actions.js +27 -0
- package/es/actions/viewer2d-actions.js +58 -0
- package/es/actions/viewer3d-actions.js +23 -0
- package/es/catalog/areas/area/planner-element.js +40 -0
- package/es/catalog/areas/area/textures/ceramic-tile.jpg +0 -0
- package/es/catalog/areas/area/textures/grass.jpg +0 -0
- package/es/catalog/areas/area/textures/parquet.jpg +0 -0
- package/es/catalog/areas/area/textures/strand-porcelain.jpg +0 -0
- package/es/catalog/areas/area/textures/tile1.jpg +0 -0
- package/es/catalog/catalog.js +277 -0
- package/es/catalog/envMap/nx.hdr +0 -0
- package/es/catalog/envMap/ny.hdr +0 -0
- package/es/catalog/envMap/nz.hdr +0 -0
- package/es/catalog/envMap/px.hdr +0 -0
- package/es/catalog/envMap/py.hdr +0 -0
- package/es/catalog/envMap/pz.hdr +0 -0
- package/es/catalog/factories/area-factory-3d.js +181 -0
- package/es/catalog/factories/area-factory.js +81 -0
- package/es/catalog/factories/export.js +7 -0
- package/es/catalog/factories/wall-factory-3d.js +202 -0
- package/es/catalog/factories/wall-factory.js +268 -0
- package/es/catalog/holes/door-closet/planner-element.js +222 -0
- package/es/catalog/holes/door-double/door_double.png +0 -0
- package/es/catalog/holes/door-double/planner-element.js +315 -0
- package/es/catalog/holes/door-exterior/planner-element.js +215 -0
- package/es/catalog/holes/door-interior/planner-element.js +227 -0
- package/es/catalog/holes/door-panic/panicDoor.png +0 -0
- package/es/catalog/holes/door-panic/planner-element.js +503 -0
- package/es/catalog/holes/door-panic-double/panicDoorDouble.png +0 -0
- package/es/catalog/holes/door-panic-double/planner-element.js +463 -0
- package/es/catalog/holes/door-sliding/planner-element.js +225 -0
- package/es/catalog/holes/doorway-framed/planner-element.js +145 -0
- package/es/catalog/holes/doorway-frameless/planner-element.js +104 -0
- package/es/catalog/holes/export.js +13 -0
- package/es/catalog/holes/gate/gate.jpg +0 -0
- package/es/catalog/holes/window-clear/planner-element.js +166 -0
- package/es/catalog/holes/window-clear/texture.png +0 -0
- package/es/catalog/holes/window-cross/planner-element.js +165 -0
- package/es/catalog/holes/window-cross/texture.png +0 -0
- package/es/catalog/holes/window-double-hung/planner-element.js +303 -0
- package/es/catalog/holes/window-double-hung/texture.png +0 -0
- package/es/catalog/holes/window-vertical/planner-element.js +276 -0
- package/es/catalog/holes/window-vertical/texture.png +0 -0
- package/es/catalog/lines/wall/planner-element.js +70 -0
- package/es/catalog/lines/wall/textures/bricks-normal.jpg +0 -0
- package/es/catalog/lines/wall/textures/bricks-normal2.jpg +0 -0
- package/es/catalog/lines/wall/textures/bricks.jpg +0 -0
- package/es/catalog/lines/wall/textures/bricks2.jpg +0 -0
- package/es/catalog/lines/wall/textures/bricks3.jpg +0 -0
- package/es/catalog/lines/wall/textures/morden-normal.jpg +0 -0
- package/es/catalog/lines/wall/textures/morden.jpg +0 -0
- package/es/catalog/lines/wall/textures/painted-normal.jpg +0 -0
- package/es/catalog/lines/wall/textures/painted.jpg +0 -0
- package/es/catalog/lines/wall/textures/plaster-normal.jpg +0 -0
- package/es/catalog/lines/wall/textures/plaster.jpg +0 -0
- package/es/catalog/lines/wall/wall.png +0 -0
- package/es/catalog/molding/molding-dcm/planner-element.js +28 -0
- package/es/catalog/molding/molding-dcm/texture.png +0 -0
- package/es/catalog/molding/molding-fbm/planner-element.js +28 -0
- package/es/catalog/molding/molding-fbm/texture.png +0 -0
- package/es/catalog/molding/molding-lrm/planner-element.js +28 -0
- package/es/catalog/molding/molding-lrm/texture.png +0 -0
- package/es/catalog/properties/export.js +21 -0
- package/es/catalog/properties/property-checkbox.js +116 -0
- package/es/catalog/properties/property-color.js +39 -0
- package/es/catalog/properties/property-enum.js +97 -0
- package/es/catalog/properties/property-hidden.js +19 -0
- package/es/catalog/properties/property-lenght-measure.js +101 -0
- package/es/catalog/properties/property-length-measure.js +134 -0
- package/es/catalog/properties/property-length-measure_hole.js +101 -0
- package/es/catalog/properties/property-number.js +48 -0
- package/es/catalog/properties/property-read-only.js +26 -0
- package/es/catalog/properties/property-string.js +48 -0
- package/es/catalog/properties/property-toggle.js +39 -0
- package/es/catalog/properties/shared-property-style.js +14 -0
- package/es/catalog/utils/FuseUtils.js +82 -0
- package/es/catalog/utils/exporter.js +148 -0
- package/es/catalog/utils/geom-utils.js +189 -0
- package/es/catalog/utils/item-loader.js +1521 -0
- package/es/catalog/utils/load-obj.js +91 -0
- package/es/catalog/utils/mtl-loader.js +358 -0
- package/es/catalog/utils/obj-loader.js +477 -0
- package/es/class/FuseUtils.js +82 -0
- package/es/class/area.js +145 -0
- package/es/class/export.js +24 -0
- package/es/class/group.js +440 -0
- package/es/class/guide.js +62 -0
- package/es/class/hole.js +929 -0
- package/es/class/item.js +1883 -0
- package/es/class/layer.js +667 -0
- package/es/class/line.js +1180 -0
- package/es/class/project.js +793 -0
- package/es/class/vertex.js +202 -0
- package/es/components/content.js +107 -0
- package/es/components/disclaimer/disclaimer.js +97 -0
- package/es/components/export.js +9 -0
- package/es/components/style/button.js +113 -0
- package/es/components/style/cancel-button.js +22 -0
- package/es/components/style/content-container.js +33 -0
- package/es/components/style/content-title.js +29 -0
- package/es/components/style/delete-button.js +25 -0
- package/es/components/style/export.js +31 -0
- package/es/components/style/form-block.js +24 -0
- package/es/components/style/form-color-input.js +27 -0
- package/es/components/style/form-label.js +26 -0
- package/es/components/style/form-number-input.js +213 -0
- package/es/components/style/form-number-input_2.js +206 -0
- package/es/components/style/form-select.js +68 -0
- package/es/components/style/form-slider.js +61 -0
- package/es/components/style/form-submit-button.js +26 -0
- package/es/components/style/form-text-input.js +95 -0
- package/es/components/viewer2d/area.js +81 -0
- package/es/components/viewer2d/export.js +31 -0
- package/es/components/viewer2d/grids/grid-horizontal-streak.js +37 -0
- package/es/components/viewer2d/grids/grid-streak.js +37 -0
- package/es/components/viewer2d/grids/grid-vertical-streak.js +37 -0
- package/es/components/viewer2d/grids/grids.js +35 -0
- package/es/components/viewer2d/group.js +53 -0
- package/es/components/viewer2d/item.js +513 -0
- package/es/components/viewer2d/layer.js +164 -0
- package/es/components/viewer2d/line.js +882 -0
- package/es/components/viewer2d/ruler.js +100 -0
- package/es/components/viewer2d/rulerDist.js +146 -0
- package/es/components/viewer2d/rulerX.js +151 -0
- package/es/components/viewer2d/rulerY.js +153 -0
- package/es/components/viewer2d/scene.js +140 -0
- package/es/components/viewer2d/snap.js +74 -0
- package/es/components/viewer2d/state.js +78 -0
- package/es/components/viewer2d/utils.js +198 -0
- package/es/components/viewer2d/vertex.js +65 -0
- package/es/components/viewer2d/viewer2d.js +1398 -0
- package/es/components/viewer3d/camera-controls-module/camera-controls.module.js +2592 -0
- package/es/components/viewer3d/dcm.js +401 -0
- package/es/components/viewer3d/fbm.js +414 -0
- package/es/components/viewer3d/front3D.js +66 -0
- package/es/components/viewer3d/grid-creator.js +25 -0
- package/es/components/viewer3d/grids/grid-horizontal-streak.js +36 -0
- package/es/components/viewer3d/grids/grid-streak.js +27 -0
- package/es/components/viewer3d/grids/grid-vertical-streak.js +36 -0
- package/es/components/viewer3d/libs/first-person-controls.js +67 -0
- package/es/components/viewer3d/libs/helvetiker_regular.typeface.js +1281 -0
- package/es/components/viewer3d/libs/mtl-loader.js +357 -0
- package/es/components/viewer3d/libs/obj-loader.js +462 -0
- package/es/components/viewer3d/libs/orbit-controls.js +699 -0
- package/es/components/viewer3d/libs/pointer-lock-controls.js +46 -0
- package/es/components/viewer3d/lrm.js +305 -0
- package/es/components/viewer3d/model.js +708 -0
- package/es/components/viewer3d/pointer-lock-navigation.js +115 -0
- package/es/components/viewer3d/ruler-utils/itemRect.js +61 -0
- package/es/components/viewer3d/ruler-utils/layer3D.js +495 -0
- package/es/components/viewer3d/ruler-utils/ruler3D.js +227 -0
- package/es/components/viewer3d/ruler-utils/scene3D.js +60 -0
- package/es/components/viewer3d/ruler-utils/state3D.js +18 -0
- package/es/components/viewer3d/scene-creator.js +3608 -0
- package/es/components/viewer3d/three-memory-cleaner.js +51 -0
- package/es/components/viewer3d/viewer3d-first-person.js +315 -0
- package/es/components/viewer3d/viewer3d.js +2527 -0
- package/es/constants.js +636 -0
- package/es/index.js +16 -0
- package/es/models.js +510 -0
- package/es/plugins/SVGLoader.js +1412 -0
- package/es/plugins/autosave.js +33 -0
- package/es/plugins/console-debugger.js +37 -0
- package/es/plugins/export.js +9 -0
- package/es/plugins/keyboard.js +101 -0
- package/es/reducers/areas-reducer.js +12 -0
- package/es/reducers/export.js +25 -0
- package/es/reducers/groups-reducer.js +38 -0
- package/es/reducers/holes-reducer.js +62 -0
- package/es/reducers/items-reducer.js +140 -0
- package/es/reducers/lines-reducer.js +45 -0
- package/es/reducers/project-reducer.js +129 -0
- package/es/reducers/reducer.js +19 -0
- package/es/reducers/scene-reducer.js +28 -0
- package/es/reducers/user-reducer.js +40 -0
- package/es/reducers/vertices-reducer.js +19 -0
- package/es/reducers/viewer2d-reducer.js +75 -0
- package/es/reducers/viewer3d-reducer.js +56 -0
- package/es/shared-style.js +66 -0
- package/es/styles/export.js +5 -0
- package/es/styles/tabs.css +40 -0
- package/es/translator/en.js +104 -0
- package/es/translator/it.js +79 -0
- package/es/translator/ru.js +79 -0
- package/es/translator/translator.js +84 -0
- package/es/utils/browser.js +33 -0
- package/es/utils/email-validator.js +4 -0
- package/es/utils/export.js +25 -0
- package/es/utils/geometry.js +2420 -0
- package/es/utils/get-edges-of-subgraphs.js +27 -0
- package/es/utils/graph-cycles.js +237 -0
- package/es/utils/graph-inner-cycles.js +46 -0
- package/es/utils/graph.js +150 -0
- package/es/utils/helper.js +268 -0
- package/es/utils/history.js +29 -0
- package/es/utils/id-broker.js +19 -0
- package/es/utils/logger.js +8 -0
- package/es/utils/math.js +50 -0
- package/es/utils/molding.js +871 -0
- package/es/utils/name-generator.js +18 -0
- package/es/utils/objects-utils.js +50 -0
- package/es/utils/phone-validator.js +4 -0
- package/es/utils/process-black-list.js +18 -0
- package/es/utils/react-if.js +18 -0
- package/es/utils/snap-scene.js +99 -0
- package/es/utils/snap.js +237 -0
- package/es/utils/summarizeCart.js +24 -0
- package/es/utils/threeCSG.es6.js +498 -0
- package/es/version.js +2 -0
- package/lib/catalog/properties/property-string.js +55 -0
- package/lib/catalog/properties/property-toggle.js +46 -0
- package/lib/catalog/properties/shared-property-style.js +20 -0
- package/lib/catalog/utils/FuseUtils.js +88 -0
- package/lib/catalog/utils/exporter.js +155 -0
- package/lib/catalog/utils/geom-utils.js +205 -0
- package/lib/catalog/utils/item-loader.js +1533 -0
- package/lib/catalog/utils/load-obj.js +99 -0
- package/lib/catalog/utils/mtl-loader.js +363 -0
- package/lib/catalog/utils/obj-loader.js +482 -0
- package/lib/class/FuseUtils.js +88 -0
- package/lib/class/area.js +150 -0
- package/lib/class/export.js +96 -0
- package/lib/class/group.js +445 -0
- package/lib/class/guide.js +67 -0
- package/lib/class/hole.js +934 -0
- package/lib/class/item.js +1889 -0
- package/lib/class/layer.js +672 -0
- package/lib/class/line.js +1186 -0
- package/lib/class/project.js +799 -0
- package/lib/class/vertex.js +207 -0
- package/lib/components/content.js +116 -0
- package/lib/components/disclaimer/disclaimer.js +105 -0
- package/lib/components/export.js +33 -0
- package/lib/components/style/button.js +120 -0
- package/lib/components/style/cancel-button.js +29 -0
- package/lib/components/style/content-container.js +40 -0
- package/lib/components/style/content-title.js +37 -0
- package/lib/components/style/delete-button.js +34 -0
- package/lib/components/style/export.js +121 -0
- package/lib/components/style/form-block.js +31 -0
- package/lib/components/style/form-color-input.js +34 -0
- package/lib/components/style/form-label.js +33 -0
- package/lib/components/style/form-number-input.js +220 -0
- package/lib/components/style/form-number-input_2.js +213 -0
- package/lib/components/style/form-select.js +75 -0
- package/lib/components/style/form-slider.js +68 -0
- package/lib/components/style/form-submit-button.js +35 -0
- package/lib/components/style/form-text-input.js +101 -0
- package/lib/components/viewer2d/area.js +88 -0
- package/lib/components/viewer2d/export.js +121 -0
- package/lib/components/viewer2d/grids/grid-horizontal-streak.js +44 -0
- package/lib/components/viewer2d/grids/grid-streak.js +44 -0
- package/lib/components/viewer2d/grids/grid-vertical-streak.js +44 -0
- package/lib/components/viewer2d/grids/grids.js +44 -0
- package/lib/components/viewer2d/group.js +62 -0
- package/lib/components/viewer2d/item.js +521 -0
- package/lib/components/viewer2d/layer.js +171 -0
- package/lib/components/viewer2d/line.js +892 -0
- package/lib/components/viewer2d/ruler.js +107 -0
- package/lib/components/viewer2d/rulerDist.js +153 -0
- package/lib/components/viewer2d/rulerX.js +158 -0
- package/lib/components/viewer2d/rulerY.js +160 -0
- package/lib/components/viewer2d/scene.js +147 -0
- package/lib/components/viewer2d/snap.js +83 -0
- package/lib/components/viewer2d/state.js +87 -0
- package/lib/components/viewer2d/utils.js +210 -0
- package/lib/components/viewer2d/vertex.js +74 -0
- package/lib/components/viewer2d/viewer2d.js +1405 -0
- package/lib/components/viewer3d/camera-controls-module/camera-controls.module.js +2597 -0
- package/lib/components/viewer3d/dcm.js +407 -0
- package/lib/components/viewer3d/fbm.js +420 -0
- package/lib/components/viewer3d/front3D.js +75 -0
- package/lib/components/viewer3d/grid-creator.js +34 -0
- package/lib/components/viewer3d/grids/grid-horizontal-streak.js +44 -0
- package/lib/components/viewer3d/grids/grid-streak.js +35 -0
- package/lib/components/viewer3d/grids/grid-vertical-streak.js +44 -0
- package/lib/components/viewer3d/libs/first-person-controls.js +74 -0
- package/lib/components/viewer3d/libs/helvetiker_regular.typeface.js +1287 -0
- package/lib/components/viewer3d/libs/mtl-loader.js +363 -0
- package/lib/components/viewer3d/libs/obj-loader.js +468 -0
- package/lib/components/viewer3d/libs/orbit-controls.js +705 -0
- package/lib/components/viewer3d/libs/pointer-lock-controls.js +52 -0
- package/lib/components/viewer3d/lrm.js +311 -0
- package/lib/components/viewer3d/model.js +714 -0
- package/lib/components/viewer3d/pointer-lock-navigation.js +122 -0
- package/lib/components/viewer3d/ruler-utils/itemRect.js +68 -0
- package/lib/components/viewer3d/ruler-utils/layer3D.js +502 -0
- package/lib/components/viewer3d/ruler-utils/ruler3D.js +234 -0
- package/lib/components/viewer3d/ruler-utils/scene3D.js +68 -0
- package/lib/components/viewer3d/ruler-utils/state3D.js +25 -0
- package/lib/components/viewer3d/scene-creator.js +3642 -0
- package/lib/components/viewer3d/three-memory-cleaner.js +60 -0
- package/lib/components/viewer3d/viewer3d-first-person.js +320 -0
- package/lib/components/viewer3d/viewer3d.js +2532 -0
- package/lib/constants.js +645 -0
- package/lib/index.js +96 -0
- package/lib/models.js +517 -0
- package/lib/plugins/SVGLoader.js +1417 -0
- package/lib/plugins/autosave.js +39 -0
- package/lib/plugins/console-debugger.js +44 -0
- package/lib/plugins/export.js +33 -0
- package/lib/plugins/keyboard.js +107 -0
- package/lib/reducers/areas-reducer.js +18 -0
- package/lib/reducers/export.js +97 -0
- package/lib/reducers/groups-reducer.js +44 -0
- package/lib/reducers/holes-reducer.js +68 -0
- package/lib/reducers/items-reducer.js +146 -0
- package/lib/reducers/lines-reducer.js +51 -0
- package/lib/reducers/project-reducer.js +135 -0
- package/lib/reducers/reducer.js +26 -0
- package/lib/reducers/scene-reducer.js +34 -0
- package/lib/reducers/user-reducer.js +46 -0
- package/lib/reducers/vertices-reducer.js +25 -0
- package/lib/reducers/viewer2d-reducer.js +82 -0
- package/lib/reducers/viewer3d-reducer.js +63 -0
- package/lib/shared-style.js +72 -0
- package/lib/styles/export.js +13 -0
- package/lib/translator/en.js +110 -0
- package/lib/translator/it.js +85 -0
- package/lib/translator/ru.js +85 -0
- package/lib/translator/translator.js +90 -0
- package/lib/utils/browser.js +40 -0
- package/lib/utils/email-validator.js +10 -0
- package/lib/utils/export.js +56 -0
- package/lib/utils/geometry.js +2516 -0
- package/lib/utils/get-edges-of-subgraphs.js +34 -0
- package/lib/utils/graph-cycles.js +240 -0
- package/lib/utils/graph-inner-cycles.js +54 -0
- package/lib/utils/graph.js +157 -0
- package/lib/utils/helper.js +291 -0
- package/lib/utils/history.js +36 -0
- package/lib/utils/id-broker.js +25 -0
- package/lib/utils/logger.js +14 -0
- package/lib/utils/math.js +57 -0
- package/lib/utils/molding.js +895 -0
- package/lib/utils/name-generator.js +23 -0
- package/lib/utils/objects-utils.js +60 -0
- package/lib/utils/phone-validator.js +10 -0
- package/lib/utils/process-black-list.js +24 -0
- package/lib/utils/react-if.js +24 -0
- package/lib/utils/snap-scene.js +105 -0
- package/lib/utils/snap.js +249 -0
- package/lib/utils/summarizeCart.js +30 -0
- package/lib/utils/threeCSG.es6.js +503 -0
- package/lib/version.js +8 -0
- package/package.json +3 -3
|
@@ -0,0 +1,714 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.temp = void 0;
|
|
7
|
+
var temp = exports.temp = {
|
|
8
|
+
dcm: [{
|
|
9
|
+
x: 5.025297014071839e-7,
|
|
10
|
+
y: -0.04244140535593033,
|
|
11
|
+
z: 0.02544921264052391
|
|
12
|
+
}, {
|
|
13
|
+
x: 5.01138288200309e-7,
|
|
14
|
+
y: -0.019096679985523224,
|
|
15
|
+
z: 0.02544921264052391
|
|
16
|
+
}, {
|
|
17
|
+
x: 5.01138288200309e-7,
|
|
18
|
+
y: -0.019096679985523224,
|
|
19
|
+
z: 0.02544921264052391
|
|
20
|
+
}, {
|
|
21
|
+
x: 5.025297014071839e-7,
|
|
22
|
+
y: -0.04244140535593033,
|
|
23
|
+
z: 0.02544921264052391
|
|
24
|
+
}, {
|
|
25
|
+
x: 4.974702960680588e-7,
|
|
26
|
+
y: 0.04244140535593033,
|
|
27
|
+
z: -0.010380856692790985
|
|
28
|
+
}, {
|
|
29
|
+
x: 4.974702960680588e-7,
|
|
30
|
+
y: 0.04244140535593033,
|
|
31
|
+
z: -0.010380856692790985
|
|
32
|
+
}, {
|
|
33
|
+
x: 4.974702960680588e-7,
|
|
34
|
+
y: 0.04244140535593033,
|
|
35
|
+
z: -0.02544921264052391
|
|
36
|
+
}, {
|
|
37
|
+
x: 4.974702960680588e-7,
|
|
38
|
+
y: 0.04244140535593033,
|
|
39
|
+
z: -0.02544921264052391
|
|
40
|
+
}, {
|
|
41
|
+
x: 4.979304435437371e-7,
|
|
42
|
+
y: 0.034721679985523224,
|
|
43
|
+
z: -0.025449218228459358
|
|
44
|
+
}, {
|
|
45
|
+
x: 4.979304435437371e-7,
|
|
46
|
+
y: 0.034721679985523224,
|
|
47
|
+
z: -0.025449218228459358
|
|
48
|
+
}, {
|
|
49
|
+
x: 4.980603875992529e-7,
|
|
50
|
+
y: 0.03254150226712227,
|
|
51
|
+
z: -0.020332030951976776
|
|
52
|
+
}, {
|
|
53
|
+
x: 4.980603875992529e-7,
|
|
54
|
+
y: 0.03254150226712227,
|
|
55
|
+
z: -0.020332030951976776
|
|
56
|
+
}, {
|
|
57
|
+
x: 4.9825962378236e-7,
|
|
58
|
+
y: 0.02919921837747097,
|
|
59
|
+
z: -0.016215818002820015
|
|
60
|
+
}, {
|
|
61
|
+
x: 4.9825962378236e-7,
|
|
62
|
+
y: 0.02919921837747097,
|
|
63
|
+
z: -0.016215818002820015
|
|
64
|
+
}, {
|
|
65
|
+
x: 4.985129749002226e-7,
|
|
66
|
+
y: 0.0249487292021513,
|
|
67
|
+
z: -0.013159179128706455
|
|
68
|
+
}, {
|
|
69
|
+
x: 4.985129749002226e-7,
|
|
70
|
+
y: 0.0249487292021513,
|
|
71
|
+
z: -0.013159179128706455
|
|
72
|
+
}, {
|
|
73
|
+
x: 4.988066280020576e-7,
|
|
74
|
+
y: 0.020021971315145493,
|
|
75
|
+
z: -0.011381834745407104
|
|
76
|
+
}, {
|
|
77
|
+
x: 4.988066280020576e-7,
|
|
78
|
+
y: 0.020021971315145493,
|
|
79
|
+
z: -0.011381834745407104
|
|
80
|
+
}, {
|
|
81
|
+
x: 5.000998157811409e-7,
|
|
82
|
+
y: -0.0016748040216043591,
|
|
83
|
+
z: -0.006762695033103228
|
|
84
|
+
}, {
|
|
85
|
+
x: 5.000998157811409e-7,
|
|
86
|
+
y: -0.0016748040216043591,
|
|
87
|
+
z: -0.006762695033103228
|
|
88
|
+
}, {
|
|
89
|
+
x: 5.00444855333626e-7,
|
|
90
|
+
y: -0.007463378366082907,
|
|
91
|
+
z: -0.004116211552172899
|
|
92
|
+
}, {
|
|
93
|
+
x: 5.00444855333626e-7,
|
|
94
|
+
y: -0.007463378366082907,
|
|
95
|
+
z: -0.004116211552172899
|
|
96
|
+
}, {
|
|
97
|
+
x: 5.007092909181665e-7,
|
|
98
|
+
y: -0.011899413540959358,
|
|
99
|
+
z: -0.0012744145933538675
|
|
100
|
+
}, {
|
|
101
|
+
x: 5.007092909181665e-7,
|
|
102
|
+
y: -0.011899413540959358,
|
|
103
|
+
z: -0.0012744145933538675
|
|
104
|
+
}, {
|
|
105
|
+
x: 5.009031269764819e-7,
|
|
106
|
+
y: -0.015151366591453552,
|
|
107
|
+
z: 0.002368162851780653
|
|
108
|
+
}, {
|
|
109
|
+
x: 5.009031269764819e-7,
|
|
110
|
+
y: -0.015151366591453552,
|
|
111
|
+
z: 0.002368162851780653
|
|
112
|
+
}, {
|
|
113
|
+
x: 5.010913923797489e-7,
|
|
114
|
+
y: -0.018310546875,
|
|
115
|
+
z: 0.008569334633648396
|
|
116
|
+
}, {
|
|
117
|
+
x: 5.010913923797489e-7,
|
|
118
|
+
y: -0.018310546875,
|
|
119
|
+
z: 0.008569334633648396
|
|
120
|
+
}, {
|
|
121
|
+
x: 5.013064878767182e-7,
|
|
122
|
+
y: -0.021918945014476776,
|
|
123
|
+
z: 0.00876464694738388
|
|
124
|
+
}, {
|
|
125
|
+
x: 5.013064878767182e-7,
|
|
126
|
+
y: -0.021918945014476776,
|
|
127
|
+
z: 0.00876464694738388
|
|
128
|
+
}, {
|
|
129
|
+
x: 5.014432531424973e-7,
|
|
130
|
+
y: -0.024213867262005806,
|
|
131
|
+
z: 0.00964355282485485
|
|
132
|
+
}, {
|
|
133
|
+
x: 5.014432531424973e-7,
|
|
134
|
+
y: -0.024213867262005806,
|
|
135
|
+
z: 0.00964355282485485
|
|
136
|
+
}, {
|
|
137
|
+
x: 5.015351121073763e-7,
|
|
138
|
+
y: -0.025754394009709358,
|
|
139
|
+
z: 0.010986325331032276
|
|
140
|
+
}, {
|
|
141
|
+
x: 5.015351121073763e-7,
|
|
142
|
+
y: -0.025754394009709358,
|
|
143
|
+
z: 0.010986325331032276
|
|
144
|
+
}, {
|
|
145
|
+
x: 5.015816668674233e-7,
|
|
146
|
+
y: -0.0265356432646513,
|
|
147
|
+
z: 0.013276364654302597
|
|
148
|
+
}, {
|
|
149
|
+
x: 5.015816668674233e-7,
|
|
150
|
+
y: -0.0265356432646513,
|
|
151
|
+
z: 0.013276364654302597
|
|
152
|
+
}, {
|
|
153
|
+
x: 5.017531066187075e-7,
|
|
154
|
+
y: -0.029411619529128075,
|
|
155
|
+
z: 0.013491208665072918
|
|
156
|
+
}, {
|
|
157
|
+
x: 5.017531066187075e-7,
|
|
158
|
+
y: -0.029411619529128075,
|
|
159
|
+
z: 0.013491208665072918
|
|
160
|
+
}, {
|
|
161
|
+
x: 5.01913007155963e-7,
|
|
162
|
+
y: -0.03209472820162773,
|
|
163
|
+
z: 0.014560543932020664
|
|
164
|
+
}, {
|
|
165
|
+
x: 5.01913007155963e-7,
|
|
166
|
+
y: -0.03209472820162773,
|
|
167
|
+
z: 0.014560543932020664
|
|
168
|
+
}, {
|
|
169
|
+
x: 5.021640276936523e-7,
|
|
170
|
+
y: -0.03630615025758743,
|
|
171
|
+
z: 0.018413081765174866
|
|
172
|
+
}, {
|
|
173
|
+
x: 5.021640276936523e-7,
|
|
174
|
+
y: -0.03630615025758743,
|
|
175
|
+
z: 0.018413081765174866
|
|
176
|
+
}, {
|
|
177
|
+
x: 5.022149593969516e-7,
|
|
178
|
+
y: -0.03716064244508743,
|
|
179
|
+
z: 0.018754879012703896
|
|
180
|
+
}, {
|
|
181
|
+
x: 5.022149593969516e-7,
|
|
182
|
+
y: -0.03716064244508743,
|
|
183
|
+
z: 0.018754879012703896
|
|
184
|
+
}, {
|
|
185
|
+
x: 5.022939717491681e-7,
|
|
186
|
+
y: -0.03848632797598839,
|
|
187
|
+
z: 0.01900390163064003
|
|
188
|
+
}, {
|
|
189
|
+
x: 5.022939717491681e-7,
|
|
190
|
+
y: -0.03848632797598839,
|
|
191
|
+
z: 0.01900390163064003
|
|
192
|
+
}, {
|
|
193
|
+
x: 5.024111260354402e-7,
|
|
194
|
+
y: -0.04045166075229645,
|
|
195
|
+
z: 0.019672848284244537
|
|
196
|
+
}, {
|
|
197
|
+
x: 5.024111260354402e-7,
|
|
198
|
+
y: -0.04045166075229645,
|
|
199
|
+
z: 0.019672848284244537
|
|
200
|
+
}, {
|
|
201
|
+
x: 5.025297014071839e-7,
|
|
202
|
+
y: -0.04244140535593033,
|
|
203
|
+
z: 0.019672848284244537
|
|
204
|
+
}, {
|
|
205
|
+
x: 5.025297014071839e-7,
|
|
206
|
+
y: -0.04244140535593033,
|
|
207
|
+
z: 0.019672848284244537
|
|
208
|
+
}, {
|
|
209
|
+
x: 5.025297014071839e-7,
|
|
210
|
+
y: -0.04244140535593033,
|
|
211
|
+
z: 0.019672848284244537
|
|
212
|
+
}, {
|
|
213
|
+
x: 5.01138288200309e-7,
|
|
214
|
+
y: -0.019096679985523224,
|
|
215
|
+
z: 0.02544921264052391
|
|
216
|
+
}, {
|
|
217
|
+
x: 5.025297014071839e-7,
|
|
218
|
+
y: -0.04244140535593033,
|
|
219
|
+
z: 0.02544921264052391
|
|
220
|
+
}, {
|
|
221
|
+
x: 5.024111260354402e-7,
|
|
222
|
+
y: -0.04045166075229645,
|
|
223
|
+
z: 0.019672848284244537
|
|
224
|
+
}, {
|
|
225
|
+
x: 5.022939717491681e-7,
|
|
226
|
+
y: -0.03848632797598839,
|
|
227
|
+
z: 0.01900390163064003
|
|
228
|
+
}, {
|
|
229
|
+
x: 5.022149593969516e-7,
|
|
230
|
+
y: -0.03716064244508743,
|
|
231
|
+
z: 0.018754879012703896
|
|
232
|
+
}, {
|
|
233
|
+
x: 5.021640276936523e-7,
|
|
234
|
+
y: -0.03630615025758743,
|
|
235
|
+
z: 0.018413081765174866
|
|
236
|
+
}, {
|
|
237
|
+
x: 5.01913007155963e-7,
|
|
238
|
+
y: -0.03209472820162773,
|
|
239
|
+
z: 0.014560543932020664
|
|
240
|
+
}, {
|
|
241
|
+
x: 5.017531066187075e-7,
|
|
242
|
+
y: -0.029411619529128075,
|
|
243
|
+
z: 0.013491208665072918
|
|
244
|
+
}, {
|
|
245
|
+
x: 5.015816668674233e-7,
|
|
246
|
+
y: -0.0265356432646513,
|
|
247
|
+
z: 0.013276364654302597
|
|
248
|
+
}, {
|
|
249
|
+
x: 4.974702960680588e-7,
|
|
250
|
+
y: 0.04244140535593033,
|
|
251
|
+
z: -0.010380856692790985
|
|
252
|
+
}, {
|
|
253
|
+
x: 4.979304435437371e-7,
|
|
254
|
+
y: 0.034721679985523224,
|
|
255
|
+
z: -0.025449218228459358
|
|
256
|
+
}, {
|
|
257
|
+
x: 4.974702960680588e-7,
|
|
258
|
+
y: 0.04244140535593033,
|
|
259
|
+
z: -0.02544921264052391
|
|
260
|
+
}, {
|
|
261
|
+
x: 4.980603875992529e-7,
|
|
262
|
+
y: 0.03254150226712227,
|
|
263
|
+
z: -0.020332030951976776
|
|
264
|
+
}, {
|
|
265
|
+
x: 4.9825962378236e-7,
|
|
266
|
+
y: 0.02919921837747097,
|
|
267
|
+
z: -0.016215818002820015
|
|
268
|
+
}, {
|
|
269
|
+
x: 4.985129749002226e-7,
|
|
270
|
+
y: 0.0249487292021513,
|
|
271
|
+
z: -0.013159179128706455
|
|
272
|
+
}, {
|
|
273
|
+
x: 4.988066280020576e-7,
|
|
274
|
+
y: 0.020021971315145493,
|
|
275
|
+
z: -0.011381834745407104
|
|
276
|
+
}, {
|
|
277
|
+
x: 5.000998157811409e-7,
|
|
278
|
+
y: -0.0016748040216043591,
|
|
279
|
+
z: -0.006762695033103228
|
|
280
|
+
}, {
|
|
281
|
+
x: 5.00444855333626e-7,
|
|
282
|
+
y: -0.007463378366082907,
|
|
283
|
+
z: -0.004116211552172899
|
|
284
|
+
}, {
|
|
285
|
+
x: 5.007092909181665e-7,
|
|
286
|
+
y: -0.011899413540959358,
|
|
287
|
+
z: -0.0012744145933538675
|
|
288
|
+
}, {
|
|
289
|
+
x: 5.009031269764819e-7,
|
|
290
|
+
y: -0.015151366591453552,
|
|
291
|
+
z: 0.002368162851780653
|
|
292
|
+
}, {
|
|
293
|
+
x: 5.010913923797489e-7,
|
|
294
|
+
y: -0.018310546875,
|
|
295
|
+
z: 0.008569334633648396
|
|
296
|
+
}, {
|
|
297
|
+
x: 5.013064878767182e-7,
|
|
298
|
+
y: -0.021918945014476776,
|
|
299
|
+
z: 0.00876464694738388
|
|
300
|
+
}, {
|
|
301
|
+
x: 5.014432531424973e-7,
|
|
302
|
+
y: -0.024213867262005806,
|
|
303
|
+
z: 0.00964355282485485
|
|
304
|
+
}, {
|
|
305
|
+
x: 5.015351121073763e-7,
|
|
306
|
+
y: -0.025754394009709358,
|
|
307
|
+
z: 0.010986325331032276
|
|
308
|
+
}, {
|
|
309
|
+
x: 5.025297014071839e-7,
|
|
310
|
+
y: -0.04244140535593033,
|
|
311
|
+
z: 0.019672848284244537
|
|
312
|
+
}, {
|
|
313
|
+
x: 5.025297014071839e-7,
|
|
314
|
+
y: -0.04244140535593033,
|
|
315
|
+
z: 0.02544921264052391
|
|
316
|
+
}, {
|
|
317
|
+
x: 5.01138288200309e-7,
|
|
318
|
+
y: -0.019096679985523224,
|
|
319
|
+
z: 0.02544921264052391
|
|
320
|
+
}, {
|
|
321
|
+
x: 5.024111260354402e-7,
|
|
322
|
+
y: -0.04045166075229645,
|
|
323
|
+
z: 0.019672848284244537
|
|
324
|
+
}, {
|
|
325
|
+
x: 5.022939717491681e-7,
|
|
326
|
+
y: -0.03848632797598839,
|
|
327
|
+
z: 0.01900390163064003
|
|
328
|
+
}, {
|
|
329
|
+
x: 5.022149593969516e-7,
|
|
330
|
+
y: -0.03716064244508743,
|
|
331
|
+
z: 0.018754879012703896
|
|
332
|
+
}, {
|
|
333
|
+
x: 5.021640276936523e-7,
|
|
334
|
+
y: -0.03630615025758743,
|
|
335
|
+
z: 0.018413081765174866
|
|
336
|
+
}, {
|
|
337
|
+
x: 5.01913007155963e-7,
|
|
338
|
+
y: -0.03209472820162773,
|
|
339
|
+
z: 0.014560543932020664
|
|
340
|
+
}, {
|
|
341
|
+
x: 5.017531066187075e-7,
|
|
342
|
+
y: -0.029411619529128075,
|
|
343
|
+
z: 0.013491208665072918
|
|
344
|
+
}, {
|
|
345
|
+
x: 5.015816668674233e-7,
|
|
346
|
+
y: -0.0265356432646513,
|
|
347
|
+
z: 0.013276364654302597
|
|
348
|
+
}, {
|
|
349
|
+
x: 4.974702960680588e-7,
|
|
350
|
+
y: 0.04244140535593033,
|
|
351
|
+
z: -0.010380856692790985
|
|
352
|
+
}, {
|
|
353
|
+
x: 4.974702960680588e-7,
|
|
354
|
+
y: 0.04244140535593033,
|
|
355
|
+
z: -0.02544921264052391
|
|
356
|
+
}, {
|
|
357
|
+
x: 4.979304435437371e-7,
|
|
358
|
+
y: 0.034721679985523224,
|
|
359
|
+
z: -0.025449218228459358
|
|
360
|
+
}, {
|
|
361
|
+
x: 4.980603875992529e-7,
|
|
362
|
+
y: 0.03254150226712227,
|
|
363
|
+
z: -0.020332030951976776
|
|
364
|
+
}, {
|
|
365
|
+
x: 4.9825962378236e-7,
|
|
366
|
+
y: 0.02919921837747097,
|
|
367
|
+
z: -0.016215818002820015
|
|
368
|
+
}, {
|
|
369
|
+
x: 4.985129749002226e-7,
|
|
370
|
+
y: 0.0249487292021513,
|
|
371
|
+
z: -0.013159179128706455
|
|
372
|
+
}, {
|
|
373
|
+
x: 4.988066280020576e-7,
|
|
374
|
+
y: 0.020021971315145493,
|
|
375
|
+
z: -0.011381834745407104
|
|
376
|
+
}, {
|
|
377
|
+
x: 5.000998157811409e-7,
|
|
378
|
+
y: -0.0016748040216043591,
|
|
379
|
+
z: -0.006762695033103228
|
|
380
|
+
}, {
|
|
381
|
+
x: 5.00444855333626e-7,
|
|
382
|
+
y: -0.007463378366082907,
|
|
383
|
+
z: -0.004116211552172899
|
|
384
|
+
}, {
|
|
385
|
+
x: 5.007092909181665e-7,
|
|
386
|
+
y: -0.011899413540959358,
|
|
387
|
+
z: -0.0012744145933538675
|
|
388
|
+
}, {
|
|
389
|
+
x: 5.009031269764819e-7,
|
|
390
|
+
y: -0.015151366591453552,
|
|
391
|
+
z: 0.002368162851780653
|
|
392
|
+
}, {
|
|
393
|
+
x: 5.010913923797489e-7,
|
|
394
|
+
y: -0.018310546875,
|
|
395
|
+
z: 0.008569334633648396
|
|
396
|
+
}, {
|
|
397
|
+
x: 5.013064878767182e-7,
|
|
398
|
+
y: -0.021918945014476776,
|
|
399
|
+
z: 0.00876464694738388
|
|
400
|
+
}, {
|
|
401
|
+
x: 5.014432531424973e-7,
|
|
402
|
+
y: -0.024213867262005806,
|
|
403
|
+
z: 0.00964355282485485
|
|
404
|
+
}, {
|
|
405
|
+
x: 5.015351121073763e-7,
|
|
406
|
+
y: -0.025754394009709358,
|
|
407
|
+
z: 0.010986325331032276
|
|
408
|
+
}],
|
|
409
|
+
lrm: [{
|
|
410
|
+
x: -0.0032958972733467817,
|
|
411
|
+
y: -4.999999987376214e-7,
|
|
412
|
+
z: 0.015050048939883709
|
|
413
|
+
}, {
|
|
414
|
+
x: -0.0032958972733467817,
|
|
415
|
+
y: -4.999999987376214e-7,
|
|
416
|
+
z: 0.007747802417725325
|
|
417
|
+
}, {
|
|
418
|
+
x: -0.0032958972733467817,
|
|
419
|
+
y: -4.999999987376214e-7,
|
|
420
|
+
z: 0.007747802417725325
|
|
421
|
+
}, {
|
|
422
|
+
x: -0.0032958972733467817,
|
|
423
|
+
y: -4.999999987376214e-7,
|
|
424
|
+
z: 0.015050048939883709
|
|
425
|
+
}, {
|
|
426
|
+
x: 0.019775390625,
|
|
427
|
+
y: -4.999999987376214e-7,
|
|
428
|
+
z: 0.007747803349047899
|
|
429
|
+
}, {
|
|
430
|
+
x: 0.019775390625,
|
|
431
|
+
y: -4.999999987376214e-7,
|
|
432
|
+
z: 0.007747803349047899
|
|
433
|
+
}, {
|
|
434
|
+
x: 0.019775390625,
|
|
435
|
+
y: -4.999999987376214e-7,
|
|
436
|
+
z: -0.015050048939883709
|
|
437
|
+
}, {
|
|
438
|
+
x: 0.019775390625,
|
|
439
|
+
y: -4.999999987376214e-7,
|
|
440
|
+
z: -0.015050048939883709
|
|
441
|
+
}, {
|
|
442
|
+
x: -0.011118163354694843,
|
|
443
|
+
y: -4.999999987376214e-7,
|
|
444
|
+
z: -0.015050048939883709
|
|
445
|
+
}, {
|
|
446
|
+
x: -0.011118163354694843,
|
|
447
|
+
y: -4.999999987376214e-7,
|
|
448
|
+
z: -0.015050048939883709
|
|
449
|
+
}, {
|
|
450
|
+
x: -0.014462890103459358,
|
|
451
|
+
y: -4.999999987376214e-7,
|
|
452
|
+
z: -0.014407958835363388
|
|
453
|
+
}, {
|
|
454
|
+
x: -0.014462890103459358,
|
|
455
|
+
y: -4.999999987376214e-7,
|
|
456
|
+
z: -0.014407958835363388
|
|
457
|
+
}, {
|
|
458
|
+
x: -0.017045898362994194,
|
|
459
|
+
y: -4.999999987376214e-7,
|
|
460
|
+
z: -0.012757567688822746
|
|
461
|
+
}, {
|
|
462
|
+
x: -0.017045898362994194,
|
|
463
|
+
y: -4.999999987376214e-7,
|
|
464
|
+
z: -0.012757567688822746
|
|
465
|
+
}, {
|
|
466
|
+
x: -0.01882324181497097,
|
|
467
|
+
y: -4.999999987376214e-7,
|
|
468
|
+
z: -0.010372314602136612
|
|
469
|
+
}, {
|
|
470
|
+
x: -0.01882324181497097,
|
|
471
|
+
y: -4.999999987376214e-7,
|
|
472
|
+
z: -0.010372314602136612
|
|
473
|
+
}, {
|
|
474
|
+
x: -0.019775390625,
|
|
475
|
+
y: -4.999999987376214e-7,
|
|
476
|
+
z: -0.0075134276412427425
|
|
477
|
+
}, {
|
|
478
|
+
x: -0.019775390625,
|
|
479
|
+
y: -4.999999987376214e-7,
|
|
480
|
+
z: -0.0075134276412427425
|
|
481
|
+
}, {
|
|
482
|
+
x: -0.01973632536828518,
|
|
483
|
+
y: -4.999999987376214e-7,
|
|
484
|
+
z: -0.0040295422077178955
|
|
485
|
+
}, {
|
|
486
|
+
x: -0.01973632536828518,
|
|
487
|
+
y: -4.999999987376214e-7,
|
|
488
|
+
z: -0.0040295422077178955
|
|
489
|
+
}, {
|
|
490
|
+
x: -0.01861327886581421,
|
|
491
|
+
y: -4.999999987376214e-7,
|
|
492
|
+
z: -0.0005285656079649925
|
|
493
|
+
}, {
|
|
494
|
+
x: -0.01861327886581421,
|
|
495
|
+
y: -4.999999987376214e-7,
|
|
496
|
+
z: -0.0005285656079649925
|
|
497
|
+
}, {
|
|
498
|
+
x: -0.01662597618997097,
|
|
499
|
+
y: -4.999999987376214e-7,
|
|
500
|
+
z: 0.001995848258957267
|
|
501
|
+
}, {
|
|
502
|
+
x: -0.01662597618997097,
|
|
503
|
+
y: -4.999999987376214e-7,
|
|
504
|
+
z: 0.001995848258957267
|
|
505
|
+
}, {
|
|
506
|
+
x: -0.013583984225988388,
|
|
507
|
+
y: -4.999999987376214e-7,
|
|
508
|
+
z: 0.003765868954360485
|
|
509
|
+
}, {
|
|
510
|
+
x: -0.013583984225988388,
|
|
511
|
+
y: -4.999999987376214e-7,
|
|
512
|
+
z: 0.003765868954360485
|
|
513
|
+
}, {
|
|
514
|
+
x: -0.013505859300494194,
|
|
515
|
+
y: -4.999999987376214e-7,
|
|
516
|
+
z: 0.0039611817337572575
|
|
517
|
+
}, {
|
|
518
|
+
x: -0.013505859300494194,
|
|
519
|
+
y: -4.999999987376214e-7,
|
|
520
|
+
z: 0.0039611817337572575
|
|
521
|
+
}, {
|
|
522
|
+
x: -0.013505859300494194,
|
|
523
|
+
y: -4.999999987376214e-7,
|
|
524
|
+
z: 0.007747801952064037
|
|
525
|
+
}, {
|
|
526
|
+
x: -0.013505859300494194,
|
|
527
|
+
y: -4.999999987376214e-7,
|
|
528
|
+
z: 0.007747801952064037
|
|
529
|
+
}, {
|
|
530
|
+
x: -0.01088867150247097,
|
|
531
|
+
y: -4.999999987376214e-7,
|
|
532
|
+
z: 0.008475340902805328
|
|
533
|
+
}, {
|
|
534
|
+
x: -0.01088867150247097,
|
|
535
|
+
y: -4.999999987376214e-7,
|
|
536
|
+
z: 0.008475340902805328
|
|
537
|
+
}, {
|
|
538
|
+
x: -0.009374999441206455,
|
|
539
|
+
y: -4.999999987376214e-7,
|
|
540
|
+
z: 0.009847410954535007
|
|
541
|
+
}, {
|
|
542
|
+
x: -0.009374999441206455,
|
|
543
|
+
y: -4.999999987376214e-7,
|
|
544
|
+
z: 0.009847410954535007
|
|
545
|
+
}, {
|
|
546
|
+
x: -0.008608397096395493,
|
|
547
|
+
y: -4.999999987376214e-7,
|
|
548
|
+
z: 0.011800536885857582
|
|
549
|
+
}, {
|
|
550
|
+
x: -0.008608397096395493,
|
|
551
|
+
y: -4.999999987376214e-7,
|
|
552
|
+
z: 0.011800536885857582
|
|
553
|
+
}, {
|
|
554
|
+
x: -0.008471678011119366,
|
|
555
|
+
y: -4.999999987376214e-7,
|
|
556
|
+
z: 0.015050048939883709
|
|
557
|
+
}, {
|
|
558
|
+
x: -0.008471678011119366,
|
|
559
|
+
y: -4.999999987376214e-7,
|
|
560
|
+
z: 0.015050048939883709
|
|
561
|
+
}, {
|
|
562
|
+
x: -0.0032958972733467817,
|
|
563
|
+
y: -4.999999987376214e-7,
|
|
564
|
+
z: 0.007747802417725325
|
|
565
|
+
}, {
|
|
566
|
+
x: 0.019775390625,
|
|
567
|
+
y: -4.999999987376214e-7,
|
|
568
|
+
z: -0.015050048939883709
|
|
569
|
+
}, {
|
|
570
|
+
x: 0.019775390625,
|
|
571
|
+
y: -4.999999987376214e-7,
|
|
572
|
+
z: 0.007747803349047899
|
|
573
|
+
}, {
|
|
574
|
+
x: -0.011118163354694843,
|
|
575
|
+
y: -4.999999987376214e-7,
|
|
576
|
+
z: -0.015050048939883709
|
|
577
|
+
}, {
|
|
578
|
+
x: -0.008471678011119366,
|
|
579
|
+
y: -4.999999987376214e-7,
|
|
580
|
+
z: 0.015050048939883709
|
|
581
|
+
}, {
|
|
582
|
+
x: -0.0032958972733467817,
|
|
583
|
+
y: -4.999999987376214e-7,
|
|
584
|
+
z: 0.015050048939883709
|
|
585
|
+
}, {
|
|
586
|
+
x: -0.008608397096395493,
|
|
587
|
+
y: -4.999999987376214e-7,
|
|
588
|
+
z: 0.011800536885857582
|
|
589
|
+
}, {
|
|
590
|
+
x: -0.009374999441206455,
|
|
591
|
+
y: -4.999999987376214e-7,
|
|
592
|
+
z: 0.009847410954535007
|
|
593
|
+
}, {
|
|
594
|
+
x: -0.01088867150247097,
|
|
595
|
+
y: -4.999999987376214e-7,
|
|
596
|
+
z: 0.008475340902805328
|
|
597
|
+
}, {
|
|
598
|
+
x: -0.013505859300494194,
|
|
599
|
+
y: -4.999999987376214e-7,
|
|
600
|
+
z: 0.007747801952064037
|
|
601
|
+
}, {
|
|
602
|
+
x: -0.013505859300494194,
|
|
603
|
+
y: -4.999999987376214e-7,
|
|
604
|
+
z: 0.0039611817337572575
|
|
605
|
+
}, {
|
|
606
|
+
x: -0.013583984225988388,
|
|
607
|
+
y: -4.999999987376214e-7,
|
|
608
|
+
z: 0.003765868954360485
|
|
609
|
+
}, {
|
|
610
|
+
x: -0.01662597618997097,
|
|
611
|
+
y: -4.999999987376214e-7,
|
|
612
|
+
z: 0.001995848258957267
|
|
613
|
+
}, {
|
|
614
|
+
x: -0.01861327886581421,
|
|
615
|
+
y: -4.999999987376214e-7,
|
|
616
|
+
z: -0.0005285656079649925
|
|
617
|
+
}, {
|
|
618
|
+
x: -0.01973632536828518,
|
|
619
|
+
y: -4.999999987376214e-7,
|
|
620
|
+
z: -0.0040295422077178955
|
|
621
|
+
}, {
|
|
622
|
+
x: -0.019775390625,
|
|
623
|
+
y: -4.999999987376214e-7,
|
|
624
|
+
z: -0.0075134276412427425
|
|
625
|
+
}, {
|
|
626
|
+
x: -0.014462890103459358,
|
|
627
|
+
y: -4.999999987376214e-7,
|
|
628
|
+
z: -0.014407958835363388
|
|
629
|
+
}, {
|
|
630
|
+
x: -0.01882324181497097,
|
|
631
|
+
y: -4.999999987376214e-7,
|
|
632
|
+
z: -0.010372314602136612
|
|
633
|
+
}, {
|
|
634
|
+
x: -0.017045898362994194,
|
|
635
|
+
y: -4.999999987376214e-7,
|
|
636
|
+
z: -0.012757567688822746
|
|
637
|
+
}, {
|
|
638
|
+
x: -0.0032958972733467817,
|
|
639
|
+
y: -4.999999987376214e-7,
|
|
640
|
+
z: 0.007747802417725325
|
|
641
|
+
}, {
|
|
642
|
+
x: 0.019775390625,
|
|
643
|
+
y: -4.999999987376214e-7,
|
|
644
|
+
z: 0.007747803349047899
|
|
645
|
+
}, {
|
|
646
|
+
x: 0.019775390625,
|
|
647
|
+
y: -4.999999987376214e-7,
|
|
648
|
+
z: -0.015050048939883709
|
|
649
|
+
}, {
|
|
650
|
+
x: -0.011118163354694843,
|
|
651
|
+
y: -4.999999987376214e-7,
|
|
652
|
+
z: -0.015050048939883709
|
|
653
|
+
}, {
|
|
654
|
+
x: -0.008471678011119366,
|
|
655
|
+
y: -4.999999987376214e-7,
|
|
656
|
+
z: 0.015050048939883709
|
|
657
|
+
}, {
|
|
658
|
+
x: -0.0032958972733467817,
|
|
659
|
+
y: -4.999999987376214e-7,
|
|
660
|
+
z: 0.015050048939883709
|
|
661
|
+
}, {
|
|
662
|
+
x: -0.008608397096395493,
|
|
663
|
+
y: -4.999999987376214e-7,
|
|
664
|
+
z: 0.011800536885857582
|
|
665
|
+
}, {
|
|
666
|
+
x: -0.009374999441206455,
|
|
667
|
+
y: -4.999999987376214e-7,
|
|
668
|
+
z: 0.009847410954535007
|
|
669
|
+
}, {
|
|
670
|
+
x: -0.01088867150247097,
|
|
671
|
+
y: -4.999999987376214e-7,
|
|
672
|
+
z: 0.008475340902805328
|
|
673
|
+
}, {
|
|
674
|
+
x: -0.013505859300494194,
|
|
675
|
+
y: -4.999999987376214e-7,
|
|
676
|
+
z: 0.007747801952064037
|
|
677
|
+
}, {
|
|
678
|
+
x: -0.013505859300494194,
|
|
679
|
+
y: -4.999999987376214e-7,
|
|
680
|
+
z: 0.0039611817337572575
|
|
681
|
+
}, {
|
|
682
|
+
x: -0.013583984225988388,
|
|
683
|
+
y: -4.999999987376214e-7,
|
|
684
|
+
z: 0.003765868954360485
|
|
685
|
+
}, {
|
|
686
|
+
x: -0.01662597618997097,
|
|
687
|
+
y: -4.999999987376214e-7,
|
|
688
|
+
z: 0.001995848258957267
|
|
689
|
+
}, {
|
|
690
|
+
x: -0.01861327886581421,
|
|
691
|
+
y: -4.999999987376214e-7,
|
|
692
|
+
z: -0.0005285656079649925
|
|
693
|
+
}, {
|
|
694
|
+
x: -0.01973632536828518,
|
|
695
|
+
y: -4.999999987376214e-7,
|
|
696
|
+
z: -0.0040295422077178955
|
|
697
|
+
}, {
|
|
698
|
+
x: -0.019775390625,
|
|
699
|
+
y: -4.999999987376214e-7,
|
|
700
|
+
z: -0.0075134276412427425
|
|
701
|
+
}, {
|
|
702
|
+
x: -0.014462890103459358,
|
|
703
|
+
y: -4.999999987376214e-7,
|
|
704
|
+
z: -0.014407958835363388
|
|
705
|
+
}, {
|
|
706
|
+
x: -0.01882324181497097,
|
|
707
|
+
y: -4.999999987376214e-7,
|
|
708
|
+
z: -0.010372314602136612
|
|
709
|
+
}, {
|
|
710
|
+
x: -0.017045898362994194,
|
|
711
|
+
y: -4.999999987376214e-7,
|
|
712
|
+
z: -0.012757567688822746
|
|
713
|
+
}]
|
|
714
|
+
};
|