Skip to content

Commit 510df38

Browse files
committed
Added point count to curveToPoints recursive call
Reported on our forums
1 parent 92b802d commit 510df38

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/jsm/loaders/3DMLoader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1253,7 +1253,7 @@ Rhino3dmLoader.Rhino3dmWorker = function () {
12531253
for ( var i = 0; i < segmentCount; i ++ ) {
12541254

12551255
var segment = curve.segmentCurve( i );
1256-
var segmentArray = curveToPoints( segment );
1256+
var segmentArray = curveToPoints( segment, pointCount );
12571257
rc = rc.concat( segmentArray );
12581258
segment.delete();
12591259

0 commit comments

Comments
 (0)