-
Notifications
You must be signed in to change notification settings - Fork 14
/
IKRS.PathDirectedExtrudeGeometry.js
828 lines (626 loc) · 27 KB
/
IKRS.PathDirectedExtrudeGeometry.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
/**
* @author Ikaros Kappler
* @date 2013-08-26
* @modified 2014-03-30 Ikaros Kappler (options.meshHullType added).
* @version 1.0.1
**/
/**
* The constructor.
*
* @param shape
* @param path
* @param shapedPath
* @param options [optional]
* Supports following members:
* - ...
*
* @param vectorFactory [optional]
* If passed must have following function member:
* createVector3( x, y, z ) : Vector3
**/
IKRS.PathDirectedExtrudeGeometry = function( shape,
path,
shapedPath,
options,
vectorFactory
) {
//window.alert( "typeof vectorFactory=" + (typeof vectorFactory) + ", " + JSON.stringify(vectorFactory) );
// Call super 'constructor'
THREE.Geometry.call( this );
if( options.hollow && !options.perpendicularHullStrength )
options.perpendicularHullStrength = 50;
if( typeof options.closeShape === "undefined" )
options.closeShape = true;
if( typeof options.meshOffset === "undefined" )
options.meshOffset = new THREE.Vector2( 0, 0 );
if( typeof vectorFactory === "undefined" )
vectorFactory = new IKRS.VectorFactory();
//window.alert( JSON.stringify(vectorFactory.createVector3(1,2,3)) );
var shapedPathBounds = shapedPath.computeBoundingBox();
// An object with
// - minX
// - minY
// - maxX
// - maxY
var pathBounds = path.getBoundingBox();
// Iterate through path elements in n steps
var vertexCount = 0;
// Used to determine the 'tangent' along the path
//var lastPathPoint = null;
//var pathTangent = null;
//var pathTangentSlope = 0.0;
var old_closePathEnd = options.closePathEnd;
var old_closePathBegin = options.closePathBegin;
var old_meshHullType = options.meshHullType;
if( options.hollow ) {
options.closePathEnd = false;
options.closePathBegin = false;
options.meshHullType = false; // The default value is "perpendicular"
}
options.buildPerpendicularHull = true;
var innerPathResult = this.buildPathExtrusion( shape,
path,
shapedPath,
options,
pathBounds,
shapedPathBounds,
vertexCount,
vectorFactory
);
// Restore old closePathEnd option?
//window.alert( options.closePathEnd );
if( options.hollow ) {
options.meshHullType = old_meshHullType; // DEFAULT (the inner shape is ALWAYS the shape itself)
// Fetch the points from the shape
var shapePoints = shape.extractAllPoints().shape;
// This is new
var shapeBounds = IKRS.BoundingBox2.computeFromPoints( shapePoints );
// Scale shape
var shapeScaleX = (shapeBounds.getWidth() + options.perpendicularHullStrength) / shapeBounds.getWidth(); // 1.2
var shapeScaleY = (shapeBounds.getHeight() + options.perpendicularHullStrength) / shapeBounds.getHeight(); // 1.2
// MHMMM ... this only works if the cicular shape angle is PI (half arc)
if( !options.closeShape )
shapeScaleY = (shapeBounds.getHeight() + options.perpendicularHullStrength/2) / shapeBounds.getHeight();
//shapeScaleY /= 2.0;
var scaledShapePoints = [];
for( var i = 0; i < shapePoints.length; i++ ) {
/*
var scaledPoint = vectorFactory.createVector2( shapePoints[ i ].x * shapeScaleX,
shapePoints[ i ].y * shapeScaleY
);
*/
var scaledPoint = new THREE.Vector2( shapePoints[ i ].x * shapeScaleX,
shapePoints[ i ].y * shapeScaleY
);
scaledShapePoints.push( scaledPoint );
}
var scaledShape = new THREE.Shape( scaledShapePoints );
// Build the outer hull
var outerHullPath = new THREE.Path( innerPathResult.perpendicularHullPoints );
// THERE IS A BUG IN THREE.js INSIDE THE PATH.getBounds() computation!
// Don't use it.
var outerHullPathBounds = IKRS.BoundingBox2.computeFromPoints( innerPathResult.perpendicularHullPoints );
//window.alert( "shapedPathBounds=" + shapedPathBounds.toString() + ", outerHullPathBounds=" + outerHullPathBounds.toString() );
var extendedExtrusionPath = new THREE.Path( innerPathResult.extendedExtrusionPathPoints );
var extendedExtrusionPathBounds = IKRS.BoundingBox2.computeFromPoints( innerPathResult.extendedExtrusionPathPoints );
options.hollow = false; // in-place
options.buildPerpendicularHull = false;
var outerPathResult = this.buildPathExtrusion( scaledShape, // shape,
extendedExtrusionPath,
outerHullPath,
options,
extendedExtrusionPathBounds,
outerHullPathBounds,
innerPathResult.vertexCount,
vectorFactory
);
// Build connection between outer and inner hull?
if( old_closePathEnd ) { // options.closePathEnd ) {
//window.alert( "Closing path end ..." );
// Note: outerPathResult.outerPointIndices.begin and innerPathResult.outerPointIndices.end
// have the same length!
for( var i = 1; i < outerPathResult.outerPointIndices.begin.length; i++ ) {
// if( triangulate )
this.faces.push( new THREE.Face3( innerPathResult.outerPointIndices.begin[i-1],
outerPathResult.outerPointIndices.begin[i-1],
outerPathResult.outerPointIndices.begin[i]
) );
this.faces.push( new THREE.Face3( innerPathResult.outerPointIndices.begin[i],
innerPathResult.outerPointIndices.begin[i-1],
outerPathResult.outerPointIndices.begin[i]
) );
}
// Connect first with last shape index ONLY if the shape is closed.
if( options.closeShape ) {
// triangulate yes or no?
this.faces.push( new THREE.Face3( innerPathResult.outerPointIndices.begin[ outerPathResult.outerPointIndices.begin.length-1 ],
outerPathResult.outerPointIndices.begin[ outerPathResult.outerPointIndices.begin.length-1 ],
outerPathResult.outerPointIndices.begin[ 0 ]
) );
this.faces.push( new THREE.Face3( innerPathResult.outerPointIndices.begin[0],
innerPathResult.outerPointIndices.begin[ innerPathResult.outerPointIndices.begin.length-1 ],
outerPathResult.outerPointIndices.begin[0]
) );
}
} // END if [options.closePathEnd]
// Connect inner and outer hull?
// (Only if shape is not closed)
// Note: outerPathResult.outerPointIndices.left and outerPathResult.outerPointIndices.right
// have the same length!
if( !options.closeShape ) {
//window.alert( outerPathResult.outerPointIndices.left.length );
for( var i = 1; i < outerPathResult.outerPointIndices.left.length; i++ ) {
// Triangulate yes or no?
// ... on the left side ...
this.faces.push( new THREE.Face3( innerPathResult.outerPointIndices.left[i-1],
outerPathResult.outerPointIndices.left[i-1],
outerPathResult.outerPointIndices.left[i]
) );
this.faces.push( new THREE.Face3( innerPathResult.outerPointIndices.left[i],
innerPathResult.outerPointIndices.left[i-1],
outerPathResult.outerPointIndices.left[i]
) );
this.faces.push( new THREE.Face3( innerPathResult.outerPointIndices.right[i-1],
outerPathResult.outerPointIndices.right[i],
outerPathResult.outerPointIndices.right[i-1]
) );
this.faces.push( new THREE.Face3( innerPathResult.outerPointIndices.right[i-1],
innerPathResult.outerPointIndices.right[i],
outerPathResult.outerPointIndices.right[i]
) );
}
} // END if [options.closeShape]
} // END if [options.hollow]
else if( !options.closeShape ) {
// The shape is NOT closed, but the mesh isn't hollow.
// -> Make a plane of faces along the cut to close the mesh.
// NOTE: THIS ALGORITHM HAS TO BE OPTIMIZED, BECAUSE THIS IS _NOT_
// A PROPER SHAPE TRIANGULATION.
// (on non-convex bezier shapes this algorithm heavily fails on the
// concave parts!).
// Note 2: there is no outer path result, as there is no outer path.
for( var i = 1; i < innerPathResult.outerPointIndices.left.length; i++ ) {
// Triangulate yes or no?
// Connect the left with the right side.
this.faces.push( new THREE.Face3( innerPathResult.outerPointIndices.left[i-1],
innerPathResult.outerPointIndices.left[i],
innerPathResult.outerPointIndices.right[i]
) );
this.faces.push( new THREE.Face3( innerPathResult.outerPointIndices.right[i],
innerPathResult.outerPointIndices.right[i-1],
innerPathResult.outerPointIndices.left[i-1]
) );
}
} else // END else [not hollow but closeShape]
if( old_closePathBegin ) {
// Close path Begin
for( var i = 2; i < innerPathResult.outerPointIndices.begin.length; i++ ) {
// Triangulate yes or no?
// Connect the left with the right side.
this.faces.push( new THREE.Face3( innerPathResult.outerPointIndices.end[0],
innerPathResult.outerPointIndices.end[i],
innerPathResult.outerPointIndices.end[i-1]
) );
}
}
this.computeCentroids();
this.computeFaceNormals();
}
IKRS.PathDirectedExtrudeGeometry.prototype = new THREE.Geometry();
IKRS.PathDirectedExtrudeGeometry.prototype.constructor = IKRS.PathDirectedExtrudeGeometry;
/**
* This function creates one single path extrusion along the given path.
**/
IKRS.PathDirectedExtrudeGeometry.prototype.buildPathExtrusion = function( shape,
path,
shapedPath,
options,
pathBounds,
shapedPathBounds,
vertexCount,
vectorFactory
) {
var shapePoints = shape.extractAllPoints();
shape = shapePoints.shape;
var shapeBounds = IKRS.BoundingBox2.computeFromPoints( shape );
//window.alert( "shapeBounds=" + shapeBounds );
//window.alert(
var result_perpendicularPathPoints = [];
var result_outerPointIndices_left = [];
var result_outerPointIndices_right = [];
var result_outerPointIndices_begin = [];
var result_outerPointIndices_end = [];
// Store the perpendicular shaped path for the case the mesh should be hollow
// (required for the outer mesh)
var result_extendedExtrusionPathPoints = [];
if( !options.meshHullType )
options.meshHullType = "perpendicular";
// Extend the extrusion path at begin and end.
// Reason: otherwise the distance between inner and outer mesh at the path begin
// and -end would be 0 (zero).
var pathBeginTangent = path.getTangent( 0.0 );
// Normalize tangent
pathBeginTangent.normalize();
var lastPathPoint = null;
var pathTangent = null;
var pathTangentSlope = 0.0;
// for( var i = 0; i <= options.curveSegments; i++ ) {
var lastPerpendicularHullPoint = null;
for( var i = options.curveSegments; i >= 0; i-- ) {
var tSegment = i / options.curveSegments;
// This is a Vector2 (x,y)
var pathPoint = path.getPointAt( tSegment );
var shapedPathPoint = shapedPath.getPoint( tSegment );
var tHeight = Math.min( 1.0,
(shapedPathBounds.getYMax() - shapedPathPoint.y) / shapedPathBounds.getHeight()
);
//window.alert( "options.perpendicularHullStrength=" + options.perpendicularHullStrength );
// This only works with bezier curves!!!
// (other paths have no perpendicular calculation implemented)
if( options.buildPerpendicularHull ) {
// Remember perpendicular path points.
var shapedPathPerpendicular = shapedPath.getPerpendicular( 1-tSegment );
// Normalize directive vector
shapedPathPerpendicular.normalize();
// And set to the default hull size
shapedPathPerpendicular.multiplyScalar( options.perpendicularHullStrength );
var perpendicularHullPoint = shapedPath.getPoint( 1-tSegment );
perpendicularHullPoint.add( shapedPathPerpendicular );
result_perpendicularPathPoints.push( perpendicularHullPoint );
} // END if [buildPerpendicularHull]
// Store path-point in extended path
result_extendedExtrusionPathPoints.push( path.getPoint(1-tSegment) ); // pathPoint );
/*
if( i == options.curveSegments ) pathTangent = vectorFactory.createVector2( 0, 0 ); // No slope at first level?
else pathTangent = vectorFactory.createVector2( pathPoint.x-lastPathPoint.x, pathPoint.y-lastPathPoint.y );
*/
if( i == options.curveSegments ) pathTangent = new THREE.Vector2( 0, 0 ); // No slope at first level?
else pathTangent = new THREE.Vector2( pathPoint.x-lastPathPoint.x, pathPoint.y-lastPathPoint.y );
// Calculate slope from tangent
if( pathTangent.x == 0 ) pathTangentSlope = -Math.PI/2.0; // -90 deg
else pathTangentSlope = Math.atan( pathTangent.y/pathTangent.x );
var radiusFactor = (shapedPathBounds.getXMax() - shapedPathPoint.x) / shapedPathBounds.getWidth();
var heightFactor = (shapedPathBounds.getYMax() - shapedPathPoint.y) / shapedPathBounds.getHeight();
var firstShapePointIndex = vertexCount;
for( var s in shape ) {
//window.alert( "s=" + s + ", len=" + shape.length + ", s+1=" + (s+1) + ", s+1 < len: " + (s+1 < shape.length) );
var shapePoint2 = shapePoints.shape[s];
/*
var shapePoint3 = vectorFactory.createVector3( Math.sin(-pathTangentSlope) * shapePoint2.x,
shapePoint2.y,
Math.cos(-pathTangentSlope) * shapePoint2.x
);
*/
var shapePoint3 = new THREE.Vector3( Math.sin(-pathTangentSlope) * shapePoint2.x,
shapePoint2.y,
Math.cos(-pathTangentSlope) * shapePoint2.x
);
shapePoint3.multiplyScalar( radiusFactor );
// Translate along path
var pathHeightPoint = path.getPoint( tHeight );
/*
shapePoint3.add( vectorFactory.createVector3( pathHeightPoint.x,
0,
pathHeightPoint.y
)
); // addSelf instead of add?!
*/
shapePoint3.add( new THREE.Vector3( pathHeightPoint.x,
0,
pathHeightPoint.y
)
); // addSelf instead of add?!
// Add the passed mesh offset before adding.
/*
shapePoint3.add( vectorFactory.createVector3( options.meshOffset.z, // 0, // options.meshOffset.x,
options.meshOffset.y,
options.meshOffset.x
)
);
*/
shapePoint3.add( new THREE.Vector3( options.meshOffset.z, // 0, // options.meshOffset.x,
options.meshOffset.y,
options.meshOffset.x
)
);
// window.alert( options.meshHullType );
if( options.meshHullType == "perpendicular" ) {
// NOOP
} else if( options.meshHullType == "prism" ) {
//window.alert( "shapeBounds.getHeight()=" + shapeBounds.getHeight() + ", options.perpendicularHullStrength=" + options.perpendicularHullStrength );
var maxHeight = shapedPathBounds.getWidth(); //shapeBounds.getHeight(); // + options.perpendicularHullStrength/10.0;
//window.alert( maxHeight );
// The direction of the prism only depends on the split 2D-shape! As it is split
// on the x axis, the (-y,+y) range defines the prism sign.
var prismDirection = Math.sign( Math.round( shapeBounds.getYMax() + shapeBounds.getYMin() ) );
if( s != 0 && parseInt(s)+1 < shape.length ) {
var tmp = vectorFactory.createVector3( maxHeight, maxHeight, maxHeight );
//if( Math.sign(vectorFactory.signX * vectorFactory.signY * vectorFactory.signZ) == -1 )
shapePoint3.y = maxHeight * prismDirection; //tmp.y * vectorFactory.signY; //Math.sign(tmp.y*tmp.z*tmp.x) * vectorFactory.signZ * vectorFactory.signZ; //(-tmp.y); //-tmp.z; //tmp.x;
//else
// shapePoint3.y = maxHeight * vectorFactory.signY * vectorFactory.signZ; //Math.sign(tmp.y); // * Math.sign(tmp.y*tmp.z*tmp.x); ;
}
} else {
var errmsg = "[IKRS.PathDirectedExtrudeGeometry.buildPathExtrusion() Illegal value for options.meshHullType: " + options.meshHullType;
console.log( errmsg );
throw errmsg;
}
// Add path point?
// ... Vertex was replaced by Vector3 (Vertex is DEPRECATED!)
this.vertices.push( vectorFactory.createVector3( shapePoint3.x,
shapePoint3.y,
shapePoint3.z
)
);
// Connect previous shape/level with current?
if( i < options.curveSegments ) { // > 0 ) {
var soffset = (s==0) ? shape.length-1 : -1;
// Triangulate?
if( !options.triangulate ) {
if( options.hollow ) {
// Do not close shape if not permitted.
if( s != 0 || options.closeShape ) {
// Make hollow (inside out) by reversing the face indices.
this.faces.push( new THREE.Face4( vertexCount + soffset,
vertexCount,
vertexCount-shape.length,
vertexCount-shape.length + soffset
) );
}
} else {
// Do not close shape if not permitted.
if( s != 0 || options.closeShape ) {
this.faces.push( new THREE.Face4( vertexCount-shape.length + soffset,
vertexCount-shape.length,
vertexCount,
vertexCount + soffset
) );
}
}
} else {
// Triangulation=on
// -> add two Face3 facets instead of Face4!
// (Otherwise the STL export will fail as it only recognizes Face3)
if( options.hollow ) {
// Make hollow (inside out) by reversing the face indices
// Do not close shape if not permitted.
if( s != 0 || options.closeShape ) {
this.faces.push( new THREE.Face3( vertexCount + soffset,
vertexCount,
vertexCount-shape.length
) );
this.faces.push( new THREE.Face3( vertexCount-shape.length,
vertexCount-shape.length + soffset,
vertexCount + soffset
) );
}
} else {
// Do not close shape if not permitted.
if( s != 0 || options.closeShape ) {
this.faces.push( new THREE.Face3( vertexCount-shape.length,
vertexCount,
vertexCount + soffset
) );
this.faces.push( new THREE.Face3( vertexCount + soffset,
vertexCount-shape.length + soffset,
vertexCount-shape.length
) );
}
}
} // END else [triangulate]
}
// Close first and last shape/level (if at least 3 vertices are present: s > 1)
if( s > 1 || options.closeShape ) {
// If the mesh should be build hollow this is not yet the last segment
if( i == options.curveSegments && options.closePathBegin ) {
// Last segment
// ??? !!!
/*
this.faces.push( new THREE.Face3( vertexCount,
vertexCount-1,
firstShapePointIndex
)
);
*/
} else if( i == 0 && options.closePathEnd ) {
// !!! The respective checkbox is currently disabled, so review this !!!
// First segment
this.faces.push( new THREE.Face3( firstShapePointIndex,
vertexCount-1,
vertexCount
)
);
}
}
// Remember plane's outer point indices
if( i == 0 ) {
// At path begin
result_outerPointIndices_begin.push( vertexCount );
} else if( i == options.curveSegments ) {
// At path end
result_outerPointIndices_end.push( vertexCount );
}
if( s == 0 ) {
// At shape path begin
result_outerPointIndices_left.push( vertexCount );
} else if( s == shape.length-1 ) {
// At shape path end
result_outerPointIndices_right.push( vertexCount );
}
vertexCount++;
lastPathPoint = pathPoint;
lastPerpendicularHullPoint = perpendicularHullPoint;
} // END for [shape points]
}
// PROBLEM: the THREE.js Path implementation does not calculate the path tangent
// in a proper way at t=0 :(
// SOLUTION: Add an additional path point with one pixel difference ;)
// ???
//var additionalPerpendicularHullPoint = lastPerpendicularHullPoint.clone();
//additionalPerpendicularHullPoint.add( new THREE.Vector2(1,1) );
//result_perpendicularPathPoints.push( additionalPerpendicularHullPoint );
//result_perpendicularPathPoints.push( shapedPath.getPoint(0) );
// Extend the extrusion path at begin and end.
// Reason: otherwise the distance between inner and outer mesh at the path begin
// and -end would be 0 (zero).
// Note: the begin-point was already added before the for-loop.
var pathEndTangent = path.getTangent( 1.0 );
// Normalize tangent
pathEndTangent.normalize();
// Set the hull-strength
pathEndTangent.multiplyScalar( options.perpendicularHullStrength/2 );
// Fetch old extrusion path point (at begin)
var pathEndPoint = path.getPoint( 1.0 );
// Extend path by hull-strength (along the tangent)
pathEndPoint.add( pathEndTangent );
// And store as first path point :)
result_extendedExtrusionPathPoints.push( pathEndPoint );
//result_perpendicularPathPoints.push( shapedPath.getPoint(0) );
return { perpendicularHullPoints: result_perpendicularPathPoints,
vertexCount: vertexCount,
outerPointIndices: { begin: result_outerPointIndices_begin,
end: result_outerPointIndices_end,
left: result_outerPointIndices_left,
right: result_outerPointIndices_right
},
extendedExtrusionPathPoints: result_extendedExtrusionPathPoints
};
//this.computeCentroids();
//this.computeFaceNormals();
};
/**
* This function creates one single path extrusion (here: from the perpendiculars!) along the given path.
**/
IKRS.PathDirectedExtrudeGeometry.prototype.buildPerpendicularHull = function( shape,
path,
shapedPath,
options,
pathBounds,
shapedPathBounds,
vertexCount,
vectorfactory
) {
var shapePoints = shape.extractAllPoints();
shape = shapePoints.shape;
if( !options.pathBend )
options.pathBend = Math.PI/4.0; // 45 degrees for testing:)
var lastPathPoint = null;
var pathTangent = null;
var pathTangentSlope = 0.0;
for( var i = options.curveSegments; i >= 0; i-- ) {
var tSegment = i / options.curveSegments;
// This is a Vector2 (x,y)
var pathPoint = path.getPointAt( tSegment );
var shapedPathPoint = shapedPath.getPoint( tSegment );
var tHeight = Math.min( 1.0,
(shapedPathBounds.getYMax() - shapedPathPoint.y) / shapedPathBounds.getHeight()
);
if( i == options.curveSegments ) pathTangent = new THREE.Vector2( 0, 0 ); // No slope at first level
else pathTangent = new THREE.Vector2( pathPoint.x-lastPathPoint.x, pathPoint.y-lastPathPoint.y );
/*
if( i == options.curveSegments ) pathTangent = vectorFactory.createVector2( 0, 0 ); // No slope at first level
else pathTangent = vectorFactory.createVector2( pathPoint.x-lastPathPoint.x, pathPoint.y-lastPathPoint.y );
*/
// Calculate slope from tangent
if( pathTangent.x == 0 ) pathTangentSlope = -Math.PI/2.0; // 90 deg
else pathTangentSlope = Math.atan( pathTangent.y/pathTangent.x );
var radiusFactor = (shapedPathBounds.getXMax() - shapedPathPoint.x) / shapedPathBounds.getWidth();
var heightFactor = (shapedPathBounds.getYMax() - shapedPathPoint.y) / shapedPathBounds.getHeight();
var firstShapePointIndex = vertexCount;
for( var s in shape ) {
var shapePoint2 = shapePoints.shape[s];
/*
var shapePoint3 = new THREE.Vector3( Math.sin(-pathTangentSlope) * shapePoint2.x,
shapePoint2.y,
Math.cos(-pathTangentSlope) * shapePoint2.x
);
*/
var shapePoint3 = vectorfactory.createVector3( Math.sin(-pathTangentSlope) * shapePoint2.x,
shapePoint2.y,
Math.cos(-pathTangentSlope) * shapePoint2.x
);
shapePoint3.multiplyScalar( radiusFactor );
// Translate along path
var pathHeightPoint = path.getPoint( tHeight );
/*
shapePoint3.add( new THREE.Vector3( pathHeightPoint.x,
0,
pathHeightPoint.y
)
); // addSelf instead of add?!
*/
shapePoint3.add( vectorFactory.createVector3( pathHeightPoint.x,
0,
pathHeightPoint.y
)
); // addSelf instead of add?!
// Add path point?
// ... Vertex was replaced by Vector3 (Vertex is DEPRECATED!)
/*
this.vertices.push( new THREE.Vector3( shapePoint3.x,
shapePoint3.y,
shapePoint3.z
)
);
*/
this.vertices.push( vectorFactory.createVector3( shapePoint3.x,
shapePoint3.y,
shapePoint3.z
)
);
// Connect previous shape/level with current?
if( i < options.curveSegments ) { // > 0 ) {
var soffset = (s==0) ? shape.length-1 : -1;
// Triangulate?
if( !options.triangulate ) {
if( options.hollow ) {
// Make hollow (inside out) by reversing the face indices
this.faces.push( new THREE.Face4( vertexCount + soffset,
vertexCount,
vertexCount-shape.length,
vertexCount-shape.length + soffset
) );
} else {
this.faces.push( new THREE.Face4( vertexCount-shape.length + soffset,
vertexCount-shape.length,
vertexCount,
vertexCount + soffset
) );
}
} else {
// Triangulation=on
// -> add two Face3 facets instead of Face4!
// (Otherwise the STL export will fail as it only recognizes Face3)
if( options.hollow ) {
// Make hollow (inside out) by reversing the face indices
this.faces.push( new THREE.Face3( vertexCount + soffset,
vertexCount,
vertexCount-shape.length
) );
this.faces.push( new THREE.Face3( vertexCount-shape.length,
vertexCount-shape.length + soffset,
vertexCount + soffset
) );
} else {
this.faces.push( new THREE.Face3( vertexCount-shape.length,
vertexCount,
vertexCount + soffset
) );
this.faces.push( new THREE.Face3( vertexCount + soffset,
vertexCount-shape.length + soffset,
vertexCount-shape.length
) );
}
} // END else [triangulate]
}
vertexCount++;
lastPathPoint = pathPoint;
} // END for [shape points]
}
//this.computeCentroids();
//this.computeFaceNormals();
};
//IKRS.PathDirectedExtrudeGeometry.prototype = new THREE.Geometry();
//IKRS.PathDirectedExtrudeGeometry.prototype.constructor = IKRS.PathDirectedExtrudeGeometry;
//IKRS.PathDirectedExtrudeGeometry.prototype.computePathBounds
// window.alert( "IKRS.ShapedPathGeometry=" + IKRS.ShapedPathGeometry );