-
Notifications
You must be signed in to change notification settings - Fork 250
Closed
Labels
Description
DynamicGeometry renders different results in Web Workers.
👎 Triangles with 3 vertices
new DynamicGeometry()
.setVertexPositions([
-1, 0, 0,
1, 0, 0,
0, 1, 0,
]);👍 Triangles with 4 vertices
new DynamicGeometry()
.setVertexPositions([
-1, 0, 0,
1, 0, 0,
0, 1, 0,
0, -1, 0,
]);👎 Lines with 0 vertices
new DynamicGeometry()
.setDrawType('lines');👎 Lines with 2 vertices
new DynamicGeometry()
.setDrawType('lines')
.setVertexPositions([
-1, 0, 0,
1, 0, 0,
]);👎 Lines with 3 vertices
new DynamicGeometry()
.setDrawType('lines')
.setVertexPositions([
-1, 0, 0,
1, 0, 0,
0, 1, 0,
]);👎 Lines with 4 vertices
new DynamicGeometry()
.setDrawType('lines')
.setVertexPositions([
-1, 0, 0,
1, 0, 0,
0, 1, 0,
0, -1, 0,
]);




