Skip to content

Commit 44a8b60

Browse files
committed
fix(front): apply model coordination to edges
1 parent 974e254 commit 44a8b60

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

packages/front/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@thatopen/components-front",
33
"description": "Collection of frontend tools to author BIM apps.",
4-
"version": "2.1.14",
4+
"version": "2.1.15",
55
"author": "That Open Company",
66
"contributors": [
77
"Antonio Gonzalez Viegas (https://github.com/agviegas)",

packages/front/src/core/ClipEdges/src/clipping-edges.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ export class ClippingEdges
228228
const tempMatrix = new THREE.Matrix4();
229229
instanced.getMatrixAt(i, tempMatrix);
230230
tempMesh.applyMatrix4(tempMatrix);
231-
tempMesh.applyMatrix4(mesh.matrix);
231+
tempMesh.applyMatrix4(mesh.matrixWorld);
232232
tempMesh.updateMatrix();
233233
tempMesh.updateMatrixWorld();
234234

0 commit comments

Comments
 (0)