@combeenation/3d-viewer 9.3.0 → 10.0.0-alpha3
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/README.md +9 -111
- package/dist/lib-cjs/api/classes/animationInterface.d.ts +8 -8
- package/dist/lib-cjs/api/classes/animationInterface.js +2 -2
- package/dist/lib-cjs/api/classes/dottedPath.d.ts +79 -79
- package/dist/lib-cjs/api/classes/dottedPath.js +166 -166
- package/dist/lib-cjs/api/classes/element.d.ts +153 -153
- package/dist/lib-cjs/api/classes/element.js +666 -667
- package/dist/lib-cjs/api/classes/element.js.map +1 -1
- package/dist/lib-cjs/api/classes/event.d.ts +401 -401
- package/dist/lib-cjs/api/classes/event.js +424 -424
- package/dist/lib-cjs/api/classes/eventBroadcaster.d.ts +26 -26
- package/dist/lib-cjs/api/classes/eventBroadcaster.js +49 -49
- package/dist/lib-cjs/api/classes/fuzzyMap.d.ts +7 -7
- package/dist/lib-cjs/api/classes/fuzzyMap.js +21 -21
- package/dist/lib-cjs/api/classes/parameter.d.ts +410 -410
- package/dist/lib-cjs/api/classes/parameter.js +642 -642
- package/dist/lib-cjs/api/classes/parameterObservable.d.ts +36 -36
- package/dist/lib-cjs/api/classes/parameterObservable.js +72 -72
- package/dist/lib-cjs/api/classes/parameterizable.d.ts +15 -15
- package/dist/lib-cjs/api/classes/parameterizable.js +102 -102
- package/dist/lib-cjs/api/classes/placementAnimation.d.ts +45 -45
- package/dist/lib-cjs/api/classes/placementAnimation.js +176 -176
- package/dist/lib-cjs/api/classes/variant.d.ts +261 -261
- package/dist/lib-cjs/api/classes/variant.js +871 -871
- package/dist/lib-cjs/api/classes/variantInstance.d.ts +53 -53
- package/dist/lib-cjs/api/classes/variantInstance.js +125 -125
- package/dist/lib-cjs/api/classes/variantParameterizable.d.ts +17 -17
- package/dist/lib-cjs/api/classes/variantParameterizable.js +86 -86
- package/dist/lib-cjs/api/classes/viewer.d.ts +211 -213
- package/dist/lib-cjs/api/classes/viewer.js +736 -717
- package/dist/lib-cjs/api/classes/viewer.js.map +1 -1
- package/dist/lib-cjs/api/classes/viewerError.d.ts +43 -43
- package/dist/lib-cjs/api/classes/viewerError.js +55 -55
- package/dist/lib-cjs/api/classes/viewerLight.d.ts +66 -66
- package/dist/lib-cjs/api/classes/viewerLight.js +344 -348
- package/dist/lib-cjs/api/classes/viewerLight.js.map +1 -1
- package/dist/lib-cjs/api/internal/lensRendering.d.ts +8 -8
- package/dist/lib-cjs/api/internal/lensRendering.js +11 -11
- package/dist/lib-cjs/api/internal/sceneSetup.d.ts +13 -13
- package/dist/lib-cjs/api/internal/sceneSetup.js +224 -226
- package/dist/lib-cjs/api/internal/sceneSetup.js.map +1 -1
- package/dist/lib-cjs/api/manager/animationManager.d.ts +30 -30
- package/dist/lib-cjs/api/manager/animationManager.js +126 -126
- package/dist/lib-cjs/api/manager/gltfExportManager.d.ts +102 -102
- package/dist/lib-cjs/api/manager/gltfExportManager.js +322 -322
- package/dist/lib-cjs/api/manager/sceneManager.d.ts +33 -33
- package/dist/lib-cjs/api/manager/sceneManager.js +128 -128
- package/dist/lib-cjs/api/manager/tagManager.d.ts +118 -118
- package/dist/lib-cjs/api/manager/tagManager.js +535 -535
- package/dist/lib-cjs/api/manager/textureLoadManager.d.ts +22 -22
- package/dist/lib-cjs/api/manager/textureLoadManager.js +98 -98
- package/dist/lib-cjs/api/manager/variantInstanceManager.d.ts +106 -106
- package/dist/lib-cjs/api/manager/variantInstanceManager.js +290 -290
- package/dist/lib-cjs/api/store/specStorage.d.ts +32 -32
- package/dist/lib-cjs/api/store/specStorage.js +65 -65
- package/dist/lib-cjs/api/util/babylonHelper.d.ts +238 -238
- package/dist/lib-cjs/api/util/babylonHelper.js +826 -826
- package/dist/lib-cjs/api/util/geometryHelper.d.ts +7 -7
- package/dist/lib-cjs/api/util/geometryHelper.js +115 -115
- package/dist/lib-cjs/api/util/globalTypes.d.ts +484 -484
- package/dist/lib-cjs/api/util/globalTypes.js +1 -1
- package/dist/lib-cjs/api/util/resourceHelper.d.ts +58 -58
- package/dist/lib-cjs/api/util/resourceHelper.js +214 -214
- package/dist/lib-cjs/api/util/sceneLoaderHelper.d.ts +44 -44
- package/dist/lib-cjs/api/util/sceneLoaderHelper.js +175 -175
- package/dist/lib-cjs/api/util/stringHelper.d.ts +13 -13
- package/dist/lib-cjs/api/util/stringHelper.js +32 -32
- package/dist/lib-cjs/api/util/structureHelper.d.ts +9 -9
- package/dist/lib-cjs/api/util/structureHelper.js +64 -64
- package/dist/lib-cjs/buildinfo.json +3 -3
- package/dist/lib-cjs/commonjs.tsconfig.tsbuildinfo +1 -1
- package/dist/lib-cjs/index.d.ts +54 -54
- package/dist/lib-cjs/index.js +117 -117
- package/package.json +84 -82
- package/src/api/classes/animationInterface.ts +10 -10
- package/src/api/classes/dottedPath.ts +181 -181
- package/src/api/classes/element.ts +723 -723
- package/src/api/classes/event.ts +457 -457
- package/src/api/classes/eventBroadcaster.ts +52 -52
- package/src/api/classes/fuzzyMap.ts +21 -21
- package/src/api/classes/parameter.ts +686 -686
- package/src/api/classes/parameterObservable.ts +73 -73
- package/src/api/classes/parameterizable.ts +87 -87
- package/src/api/classes/placementAnimation.ts +162 -162
- package/src/api/classes/variant.ts +964 -964
- package/src/api/classes/variantInstance.ts +123 -123
- package/src/api/classes/variantParameterizable.ts +83 -83
- package/src/api/classes/viewer.ts +786 -770
- package/src/api/classes/viewerError.ts +63 -63
- package/src/api/classes/viewerLight.ts +335 -339
- package/src/api/internal/debugViewer.ts +90 -90
- package/src/api/internal/lensRendering.ts +9 -9
- package/src/api/internal/sceneSetup.ts +203 -205
- package/src/api/manager/animationManager.ts +143 -143
- package/src/api/manager/gltfExportManager.ts +312 -312
- package/src/api/manager/sceneManager.ts +134 -134
- package/src/api/manager/tagManager.ts +576 -576
- package/src/api/manager/textureLoadManager.ts +96 -96
- package/src/api/manager/variantInstanceManager.ts +306 -306
- package/src/api/store/specStorage.ts +68 -68
- package/src/api/util/babylonHelper.ts +915 -915
- package/src/api/util/geometryHelper.ts +140 -140
- package/src/api/util/globalTypes.ts +560 -560
- package/src/api/util/resourceHelper.ts +201 -201
- package/src/api/util/sceneLoaderHelper.ts +170 -170
- package/src/api/util/stringHelper.ts +30 -30
- package/src/api/util/structureHelper.ts +63 -63
- package/src/buildinfo.json +3 -3
- package/src/dev.ts +70 -62
- package/src/index.ts +103 -103
- package/src/types.d.ts +49 -38
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Removes morph targets and sets transformation values back to their default values.
|
|
3
|
-
* The effects from morph targets and tranformation values will be "baked" in the geometry, so that the final appearance
|
|
4
|
-
* of the meshes stay the same.
|
|
5
|
-
*/
|
|
6
|
-
declare const bakeGeometryOfAllMeshes: (scene: Scene) => void;
|
|
7
|
-
export { bakeGeometryOfAllMeshes };
|
|
1
|
+
/**
|
|
2
|
+
* Removes morph targets and sets transformation values back to their default values.
|
|
3
|
+
* The effects from morph targets and tranformation values will be "baked" in the geometry, so that the final appearance
|
|
4
|
+
* of the meshes stay the same.
|
|
5
|
+
*/
|
|
6
|
+
declare const bakeGeometryOfAllMeshes: (scene: Scene) => void;
|
|
7
|
+
export { bakeGeometryOfAllMeshes };
|
|
@@ -1,116 +1,116 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.bakeGeometryOfAllMeshes = void 0;
|
|
4
|
-
const buffer_1 = require("@babylonjs/core/Buffers/buffer");
|
|
5
|
-
const math_vector_1 = require("@babylonjs/core/Maths/math.vector");
|
|
6
|
-
const instancedMesh_1 = require("@babylonjs/core/Meshes/instancedMesh");
|
|
7
|
-
const mesh_1 = require("@babylonjs/core/Meshes/mesh");
|
|
8
|
-
const transformNode_1 = require("@babylonjs/core/Meshes/transformNode");
|
|
9
|
-
/**
|
|
10
|
-
* Removes morph targets and sets transformation values back to their default values.
|
|
11
|
-
* The effects from morph targets and tranformation values will be "baked" in the geometry, so that the final appearance
|
|
12
|
-
* of the meshes stay the same.
|
|
13
|
-
*/
|
|
14
|
-
const bakeGeometryOfAllMeshes = function (scene) {
|
|
15
|
-
// instanced meshes have to be converted, since they share the geometry of the source mesh, which would lead to issues
|
|
16
|
-
// when baking the transformation values
|
|
17
|
-
scene.meshes.forEach(mesh => {
|
|
18
|
-
if (mesh instanceof instancedMesh_1.InstancedMesh) {
|
|
19
|
-
convertInstancedMeshToMesh(mesh);
|
|
20
|
-
}
|
|
21
|
-
});
|
|
22
|
-
// do the geometry baking for all meshes in the scene
|
|
23
|
-
scene.meshes.forEach(mesh => {
|
|
24
|
-
if (mesh instanceof mesh_1.Mesh) {
|
|
25
|
-
bakeGeometryOfMesh(mesh);
|
|
26
|
-
}
|
|
27
|
-
});
|
|
28
|
-
// some nodes (mostly transform nodes), are not affected by the baking algorithm since they have no geometry
|
|
29
|
-
// => reset their transformation manually
|
|
30
|
-
const allNodes = scene.getNodes().filter(node => node instanceof transformNode_1.TransformNode);
|
|
31
|
-
allNodes.forEach(node => {
|
|
32
|
-
resetTransformation(node);
|
|
33
|
-
});
|
|
34
|
-
};
|
|
35
|
-
exports.bakeGeometryOfAllMeshes = bakeGeometryOfAllMeshes;
|
|
36
|
-
const convertInstancedMeshToMesh = function (instancedMesh) {
|
|
37
|
-
// first create a clone of the source mesh
|
|
38
|
-
const newMesh = instancedMesh.sourceMesh.clone(`${instancedMesh.name}`, instancedMesh.parent);
|
|
39
|
-
// apply the transformation data
|
|
40
|
-
newMesh.position = instancedMesh.position;
|
|
41
|
-
newMesh.rotation = instancedMesh.rotation;
|
|
42
|
-
newMesh.rotationQuaternion = instancedMesh.rotationQuaternion;
|
|
43
|
-
newMesh.scaling = instancedMesh.scaling;
|
|
44
|
-
// also sync the enabled state from the original instanced mesh
|
|
45
|
-
newMesh.setEnabled(instancedMesh.isEnabled(false));
|
|
46
|
-
// re-assign children of the original mesh, since that one won't be used anymore
|
|
47
|
-
instancedMesh.getChildren(undefined).forEach(childNode => (childNode.parent = newMesh));
|
|
48
|
-
// finally delete the original instanced mesh
|
|
49
|
-
instancedMesh.dispose();
|
|
50
|
-
};
|
|
51
|
-
const bakeGeometryOfMesh = function (mesh) {
|
|
52
|
-
if (!mesh.geometry) {
|
|
53
|
-
// no geometry available, nothing to do
|
|
54
|
-
return;
|
|
55
|
-
}
|
|
56
|
-
// geometries can be shared across multiple meshes, first make them unique to avoid side-effects
|
|
57
|
-
mesh.makeGeometryUnique();
|
|
58
|
-
const morphTargetManager = mesh.morphTargetManager;
|
|
59
|
-
const geometry = mesh.geometry;
|
|
60
|
-
if (morphTargetManager === null || morphTargetManager === void 0 ? void 0 : morphTargetManager.numTargets) {
|
|
61
|
-
// apply morph target vertices data to mesh geometry
|
|
62
|
-
// mostly only the "PositionKind" is implemented
|
|
63
|
-
bakeMorphTargetManagerIntoVertices(buffer_1.VertexBuffer.PositionKind, morphTargetManager, geometry);
|
|
64
|
-
bakeMorphTargetManagerIntoVertices(buffer_1.VertexBuffer.NormalKind, morphTargetManager, geometry);
|
|
65
|
-
bakeMorphTargetManagerIntoVertices(buffer_1.VertexBuffer.TangentKind, morphTargetManager, geometry);
|
|
66
|
-
bakeMorphTargetManagerIntoVertices(buffer_1.VertexBuffer.UVKind, morphTargetManager, geometry);
|
|
67
|
-
// remove morph target manager with all it's morph targets
|
|
68
|
-
mesh.morphTargetManager = null;
|
|
69
|
-
}
|
|
70
|
-
// bake the transformation data in the mesh geometry, fortunately there is already a help function from Babylon.js
|
|
71
|
-
mesh.bakeCurrentTransformIntoVertices();
|
|
72
|
-
};
|
|
73
|
-
/**
|
|
74
|
-
* @param kind morph targets can affect various vertices kinds, whereas "position" is the most common one
|
|
75
|
-
* still other kinds (like normals or tangents) can be affected as well and can be provided on this input
|
|
76
|
-
*/
|
|
77
|
-
const bakeMorphTargetManagerIntoVertices = function (kind, morphTargetManager, geometry) {
|
|
78
|
-
const origVerticesData = geometry.getVerticesData(kind);
|
|
79
|
-
if (!origVerticesData) {
|
|
80
|
-
// no vertices data for this kind availabe on the mesh geometry
|
|
81
|
-
return;
|
|
82
|
-
}
|
|
83
|
-
let verticesData = [...origVerticesData];
|
|
84
|
-
for (let i = 0; i < morphTargetManager.numTargets; i++) {
|
|
85
|
-
const target = morphTargetManager.getTarget(i);
|
|
86
|
-
const targetVerticesData = getVerticesDataFromMorphTarget(kind, target);
|
|
87
|
-
if (targetVerticesData) {
|
|
88
|
-
// vertices data of this kind are implemented on the morph target
|
|
89
|
-
// add the influence of this morph target to the vertices data
|
|
90
|
-
// formula is taken from: https://doc.babylonjs.com/features/featuresDeepDive/mesh/morphTargets#basics
|
|
91
|
-
verticesData = verticesData.map((oldVal, idx) => oldVal + (targetVerticesData[idx] - origVerticesData[idx]) * target.influence);
|
|
92
|
-
}
|
|
93
|
-
}
|
|
94
|
-
// apply the updated vertices data
|
|
95
|
-
geometry.setVerticesData(kind, verticesData);
|
|
96
|
-
};
|
|
97
|
-
const getVerticesDataFromMorphTarget = function (kind, morphTarget) {
|
|
98
|
-
switch (kind) {
|
|
99
|
-
case buffer_1.VertexBuffer.PositionKind:
|
|
100
|
-
return morphTarget.getPositions();
|
|
101
|
-
case buffer_1.VertexBuffer.NormalKind:
|
|
102
|
-
return morphTarget.getNormals();
|
|
103
|
-
case buffer_1.VertexBuffer.TangentKind:
|
|
104
|
-
return morphTarget.getTangents();
|
|
105
|
-
case buffer_1.VertexBuffer.UVKind:
|
|
106
|
-
return morphTarget.getUVs();
|
|
107
|
-
}
|
|
108
|
-
return null;
|
|
109
|
-
};
|
|
110
|
-
const resetTransformation = function (node) {
|
|
111
|
-
node.position = new math_vector_1.Vector3(0, 0, 0);
|
|
112
|
-
node.rotation = new math_vector_1.Vector3(0, 0, 0);
|
|
113
|
-
node.rotationQuaternion = null;
|
|
114
|
-
node.scaling = new math_vector_1.Vector3(1, 1, 1);
|
|
115
|
-
};
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.bakeGeometryOfAllMeshes = void 0;
|
|
4
|
+
const buffer_1 = require("@babylonjs/core/Buffers/buffer");
|
|
5
|
+
const math_vector_1 = require("@babylonjs/core/Maths/math.vector");
|
|
6
|
+
const instancedMesh_1 = require("@babylonjs/core/Meshes/instancedMesh");
|
|
7
|
+
const mesh_1 = require("@babylonjs/core/Meshes/mesh");
|
|
8
|
+
const transformNode_1 = require("@babylonjs/core/Meshes/transformNode");
|
|
9
|
+
/**
|
|
10
|
+
* Removes morph targets and sets transformation values back to their default values.
|
|
11
|
+
* The effects from morph targets and tranformation values will be "baked" in the geometry, so that the final appearance
|
|
12
|
+
* of the meshes stay the same.
|
|
13
|
+
*/
|
|
14
|
+
const bakeGeometryOfAllMeshes = function (scene) {
|
|
15
|
+
// instanced meshes have to be converted, since they share the geometry of the source mesh, which would lead to issues
|
|
16
|
+
// when baking the transformation values
|
|
17
|
+
scene.meshes.forEach(mesh => {
|
|
18
|
+
if (mesh instanceof instancedMesh_1.InstancedMesh) {
|
|
19
|
+
convertInstancedMeshToMesh(mesh);
|
|
20
|
+
}
|
|
21
|
+
});
|
|
22
|
+
// do the geometry baking for all meshes in the scene
|
|
23
|
+
scene.meshes.forEach(mesh => {
|
|
24
|
+
if (mesh instanceof mesh_1.Mesh) {
|
|
25
|
+
bakeGeometryOfMesh(mesh);
|
|
26
|
+
}
|
|
27
|
+
});
|
|
28
|
+
// some nodes (mostly transform nodes), are not affected by the baking algorithm since they have no geometry
|
|
29
|
+
// => reset their transformation manually
|
|
30
|
+
const allNodes = scene.getNodes().filter(node => node instanceof transformNode_1.TransformNode);
|
|
31
|
+
allNodes.forEach(node => {
|
|
32
|
+
resetTransformation(node);
|
|
33
|
+
});
|
|
34
|
+
};
|
|
35
|
+
exports.bakeGeometryOfAllMeshes = bakeGeometryOfAllMeshes;
|
|
36
|
+
const convertInstancedMeshToMesh = function (instancedMesh) {
|
|
37
|
+
// first create a clone of the source mesh
|
|
38
|
+
const newMesh = instancedMesh.sourceMesh.clone(`${instancedMesh.name}`, instancedMesh.parent);
|
|
39
|
+
// apply the transformation data
|
|
40
|
+
newMesh.position = instancedMesh.position;
|
|
41
|
+
newMesh.rotation = instancedMesh.rotation;
|
|
42
|
+
newMesh.rotationQuaternion = instancedMesh.rotationQuaternion;
|
|
43
|
+
newMesh.scaling = instancedMesh.scaling;
|
|
44
|
+
// also sync the enabled state from the original instanced mesh
|
|
45
|
+
newMesh.setEnabled(instancedMesh.isEnabled(false));
|
|
46
|
+
// re-assign children of the original mesh, since that one won't be used anymore
|
|
47
|
+
instancedMesh.getChildren(undefined).forEach(childNode => (childNode.parent = newMesh));
|
|
48
|
+
// finally delete the original instanced mesh
|
|
49
|
+
instancedMesh.dispose();
|
|
50
|
+
};
|
|
51
|
+
const bakeGeometryOfMesh = function (mesh) {
|
|
52
|
+
if (!mesh.geometry) {
|
|
53
|
+
// no geometry available, nothing to do
|
|
54
|
+
return;
|
|
55
|
+
}
|
|
56
|
+
// geometries can be shared across multiple meshes, first make them unique to avoid side-effects
|
|
57
|
+
mesh.makeGeometryUnique();
|
|
58
|
+
const morphTargetManager = mesh.morphTargetManager;
|
|
59
|
+
const geometry = mesh.geometry;
|
|
60
|
+
if (morphTargetManager === null || morphTargetManager === void 0 ? void 0 : morphTargetManager.numTargets) {
|
|
61
|
+
// apply morph target vertices data to mesh geometry
|
|
62
|
+
// mostly only the "PositionKind" is implemented
|
|
63
|
+
bakeMorphTargetManagerIntoVertices(buffer_1.VertexBuffer.PositionKind, morphTargetManager, geometry);
|
|
64
|
+
bakeMorphTargetManagerIntoVertices(buffer_1.VertexBuffer.NormalKind, morphTargetManager, geometry);
|
|
65
|
+
bakeMorphTargetManagerIntoVertices(buffer_1.VertexBuffer.TangentKind, morphTargetManager, geometry);
|
|
66
|
+
bakeMorphTargetManagerIntoVertices(buffer_1.VertexBuffer.UVKind, morphTargetManager, geometry);
|
|
67
|
+
// remove morph target manager with all it's morph targets
|
|
68
|
+
mesh.morphTargetManager = null;
|
|
69
|
+
}
|
|
70
|
+
// bake the transformation data in the mesh geometry, fortunately there is already a help function from Babylon.js
|
|
71
|
+
mesh.bakeCurrentTransformIntoVertices();
|
|
72
|
+
};
|
|
73
|
+
/**
|
|
74
|
+
* @param kind morph targets can affect various vertices kinds, whereas "position" is the most common one
|
|
75
|
+
* still other kinds (like normals or tangents) can be affected as well and can be provided on this input
|
|
76
|
+
*/
|
|
77
|
+
const bakeMorphTargetManagerIntoVertices = function (kind, morphTargetManager, geometry) {
|
|
78
|
+
const origVerticesData = geometry.getVerticesData(kind);
|
|
79
|
+
if (!origVerticesData) {
|
|
80
|
+
// no vertices data for this kind availabe on the mesh geometry
|
|
81
|
+
return;
|
|
82
|
+
}
|
|
83
|
+
let verticesData = [...origVerticesData];
|
|
84
|
+
for (let i = 0; i < morphTargetManager.numTargets; i++) {
|
|
85
|
+
const target = morphTargetManager.getTarget(i);
|
|
86
|
+
const targetVerticesData = getVerticesDataFromMorphTarget(kind, target);
|
|
87
|
+
if (targetVerticesData) {
|
|
88
|
+
// vertices data of this kind are implemented on the morph target
|
|
89
|
+
// add the influence of this morph target to the vertices data
|
|
90
|
+
// formula is taken from: https://doc.babylonjs.com/features/featuresDeepDive/mesh/morphTargets#basics
|
|
91
|
+
verticesData = verticesData.map((oldVal, idx) => oldVal + (targetVerticesData[idx] - origVerticesData[idx]) * target.influence);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
// apply the updated vertices data
|
|
95
|
+
geometry.setVerticesData(kind, verticesData);
|
|
96
|
+
};
|
|
97
|
+
const getVerticesDataFromMorphTarget = function (kind, morphTarget) {
|
|
98
|
+
switch (kind) {
|
|
99
|
+
case buffer_1.VertexBuffer.PositionKind:
|
|
100
|
+
return morphTarget.getPositions();
|
|
101
|
+
case buffer_1.VertexBuffer.NormalKind:
|
|
102
|
+
return morphTarget.getNormals();
|
|
103
|
+
case buffer_1.VertexBuffer.TangentKind:
|
|
104
|
+
return morphTarget.getTangents();
|
|
105
|
+
case buffer_1.VertexBuffer.UVKind:
|
|
106
|
+
return morphTarget.getUVs();
|
|
107
|
+
}
|
|
108
|
+
return null;
|
|
109
|
+
};
|
|
110
|
+
const resetTransformation = function (node) {
|
|
111
|
+
node.position = new math_vector_1.Vector3(0, 0, 0);
|
|
112
|
+
node.rotation = new math_vector_1.Vector3(0, 0, 0);
|
|
113
|
+
node.rotationQuaternion = null;
|
|
114
|
+
node.scaling = new math_vector_1.Vector3(1, 1, 1);
|
|
115
|
+
};
|
|
116
116
|
//# sourceMappingURL=geometryHelper.js.map
|