-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathshape.ts
1531 lines (1338 loc) · 41.5 KB
/
shape.ts
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
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import {Vector, VectorOps, Rotation, RotationOps} from "../math";
import {RawColliderSet, RawCompoundShapePart, RawShape, RawShapeType} from "../raw";
import {ShapeContact} from "./contact";
import {PointProjection} from "./point";
import {Ray, RayIntersection} from "./ray";
import {ShapeCastHit} from "./toi";
import {ColliderHandle} from "./collider";
export abstract class Shape {
public abstract intoRaw(): RawShape;
/**
* The concrete type of this shape.
*/
public abstract get type(): ShapeType;
/**
* instant mode without cache
*/
public static fromRaw(
rawSet: RawColliderSet,
handle: ColliderHandle,
): Shape {
const rawType = rawSet.coShapeType(handle);
let extents: Vector;
let borderRadius: number;
let vs: Float32Array;
let indices: Uint32Array;
let halfHeight: number;
let radius: number;
let normal: Vector;
switch (rawType) {
case RawShapeType.Ball:
return new Ball(rawSet.coRadius(handle));
case RawShapeType.Cuboid:
extents = rawSet.coHalfExtents(handle);
// #if DIM2
return new Cuboid(extents.x, extents.y);
// #endif
// #if DIM3
return new Cuboid(extents.x, extents.y, extents.z);
// #endif
case RawShapeType.RoundCuboid:
extents = rawSet.coHalfExtents(handle);
borderRadius = rawSet.coRoundRadius(handle);
// #if DIM2
return new RoundCuboid(extents.x, extents.y, borderRadius);
// #endif
// #if DIM3
return new RoundCuboid(
extents.x,
extents.y,
extents.z,
borderRadius,
);
// #endif
case RawShapeType.Capsule:
halfHeight = rawSet.coHalfHeight(handle);
radius = rawSet.coRadius(handle);
return new Capsule(halfHeight, radius);
case RawShapeType.Segment:
vs = rawSet.coVertices(handle);
// #if DIM2
return new Segment(
VectorOps.new(vs[0], vs[1]),
VectorOps.new(vs[2], vs[3]),
);
// #endif
// #if DIM3
return new Segment(
VectorOps.new(vs[0], vs[1], vs[2]),
VectorOps.new(vs[3], vs[4], vs[5]),
);
// #endif
case RawShapeType.Polyline:
vs = rawSet.coVertices(handle);
indices = rawSet.coIndices(handle);
return new Polyline(vs, indices);
case RawShapeType.Triangle:
vs = rawSet.coVertices(handle);
// #if DIM2
return new Triangle(
VectorOps.new(vs[0], vs[1]),
VectorOps.new(vs[2], vs[3]),
VectorOps.new(vs[4], vs[5]),
);
// #endif
// #if DIM3
return new Triangle(
VectorOps.new(vs[0], vs[1], vs[2]),
VectorOps.new(vs[3], vs[4], vs[5]),
VectorOps.new(vs[6], vs[7], vs[8]),
);
// #endif
case RawShapeType.RoundTriangle:
vs = rawSet.coVertices(handle);
borderRadius = rawSet.coRoundRadius(handle);
// #if DIM2
return new RoundTriangle(
VectorOps.new(vs[0], vs[1]),
VectorOps.new(vs[2], vs[3]),
VectorOps.new(vs[4], vs[5]),
borderRadius,
);
// #endif
// #if DIM3
return new RoundTriangle(
VectorOps.new(vs[0], vs[1], vs[2]),
VectorOps.new(vs[3], vs[4], vs[5]),
VectorOps.new(vs[6], vs[7], vs[8]),
borderRadius,
);
// #endif
case RawShapeType.HalfSpace:
normal = VectorOps.fromRaw(rawSet.coHalfspaceNormal(handle));
return new HalfSpace(normal);
case RawShapeType.TriMesh:
vs = rawSet.coVertices(handle);
indices = rawSet.coIndices(handle);
const tri_flags = rawSet.coTriMeshFlags(handle);
return new TriMesh(vs, indices, tri_flags);
case RawShapeType.HeightField:
const scale = rawSet.coHeightfieldScale(handle);
const heights = rawSet.coHeightfieldHeights(handle);
// #if DIM2
return new Heightfield(heights, scale);
// #endif
// #if DIM3
const nrows = rawSet.coHeightfieldNRows(handle);
const ncols = rawSet.coHeightfieldNCols(handle);
const hf_flags = rawSet.coHeightFieldFlags(handle);
return new Heightfield(nrows, ncols, heights, scale, hf_flags);
// #endif
// #if DIM2
case RawShapeType.ConvexPolygon:
vs = rawSet.coVertices(handle);
return new ConvexPolygon(vs, false);
case RawShapeType.RoundConvexPolygon:
vs = rawSet.coVertices(handle);
borderRadius = rawSet.coRoundRadius(handle);
return new RoundConvexPolygon(vs, borderRadius, false);
// #endif
// #if DIM3
case RawShapeType.ConvexPolyhedron:
vs = rawSet.coVertices(handle);
indices = rawSet.coIndices(handle);
return new ConvexPolyhedron(vs, indices);
case RawShapeType.RoundConvexPolyhedron:
vs = rawSet.coVertices(handle);
indices = rawSet.coIndices(handle);
borderRadius = rawSet.coRoundRadius(handle);
return new RoundConvexPolyhedron(vs, indices, borderRadius);
case RawShapeType.Cylinder:
halfHeight = rawSet.coHalfHeight(handle);
radius = rawSet.coRadius(handle);
return new Cylinder(halfHeight, radius);
case RawShapeType.RoundCylinder:
halfHeight = rawSet.coHalfHeight(handle);
radius = rawSet.coRadius(handle);
borderRadius = rawSet.coRoundRadius(handle);
return new RoundCylinder(halfHeight, radius, borderRadius);
case RawShapeType.Cone:
halfHeight = rawSet.coHalfHeight(handle);
radius = rawSet.coRadius(handle);
return new Cone(halfHeight, radius);
case RawShapeType.RoundCone:
halfHeight = rawSet.coHalfHeight(handle);
radius = rawSet.coRadius(handle);
borderRadius = rawSet.coRoundRadius(handle);
return new RoundCone(halfHeight, radius, borderRadius);
// #endif
default:
throw new Error("unknown shape type: " + rawType);
}
}
/**
* Computes the time of impact between two moving shapes.
* @param shapePos1 - The initial position of this sahpe.
* @param shapeRot1 - The rotation of this shape.
* @param shapeVel1 - The velocity of this shape.
* @param shape2 - The second moving shape.
* @param shapePos2 - The initial position of the second shape.
* @param shapeRot2 - The rotation of the second shape.
* @param shapeVel2 - The velocity of the second shape.
* @param targetDistance − If the shape moves closer to this distance from a collider, a hit
* will be returned.
* @param maxToi - The maximum time when the impact can happen.
* @param stopAtPenetration - If set to `false`, the linear shape-cast won’t immediately stop if
* the shape is penetrating another shape at its starting point **and** its trajectory is such
* that it’s on a path to exit that penetration state.
* @returns If the two moving shapes collider at some point along their trajectories, this returns the
* time at which the two shape collider as well as the contact information during the impact. Returns
* `null`if the two shapes never collide along their paths.
*/
public castShape(
shapePos1: Vector,
shapeRot1: Rotation,
shapeVel1: Vector,
shape2: Shape,
shapePos2: Vector,
shapeRot2: Rotation,
shapeVel2: Vector,
targetDistance: number,
maxToi: number,
stopAtPenetration: boolean,
): ShapeCastHit | null {
let rawPos1 = VectorOps.intoRaw(shapePos1);
let rawRot1 = RotationOps.intoRaw(shapeRot1);
let rawVel1 = VectorOps.intoRaw(shapeVel1);
let rawPos2 = VectorOps.intoRaw(shapePos2);
let rawRot2 = RotationOps.intoRaw(shapeRot2);
let rawVel2 = VectorOps.intoRaw(shapeVel2);
let rawShape1 = this.intoRaw();
let rawShape2 = shape2.intoRaw();
let result = ShapeCastHit.fromRaw(
null,
rawShape1.castShape(
rawPos1,
rawRot1,
rawVel1,
rawShape2,
rawPos2,
rawRot2,
rawVel2,
targetDistance,
maxToi,
stopAtPenetration,
),
);
rawPos1.free();
rawRot1.free();
rawVel1.free();
rawPos2.free();
rawRot2.free();
rawVel2.free();
rawShape1.free();
rawShape2.free();
return result;
}
/**
* Tests if this shape intersects another shape.
*
* @param shapePos1 - The position of this shape.
* @param shapeRot1 - The rotation of this shape.
* @param shape2 - The second shape to test.
* @param shapePos2 - The position of the second shape.
* @param shapeRot2 - The rotation of the second shape.
* @returns `true` if the two shapes intersect, `false` if they don’t.
*/
public intersectsShape(
shapePos1: Vector,
shapeRot1: Rotation,
shape2: Shape,
shapePos2: Vector,
shapeRot2: Rotation,
): boolean {
let rawPos1 = VectorOps.intoRaw(shapePos1);
let rawRot1 = RotationOps.intoRaw(shapeRot1);
let rawPos2 = VectorOps.intoRaw(shapePos2);
let rawRot2 = RotationOps.intoRaw(shapeRot2);
let rawShape1 = this.intoRaw();
let rawShape2 = shape2.intoRaw();
let result = rawShape1.intersectsShape(
rawPos1,
rawRot1,
rawShape2,
rawPos2,
rawRot2,
);
rawPos1.free();
rawRot1.free();
rawPos2.free();
rawRot2.free();
rawShape1.free();
rawShape2.free();
return result;
}
/**
* Computes one pair of contact points between two shapes.
*
* @param shapePos1 - The initial position of this sahpe.
* @param shapeRot1 - The rotation of this shape.
* @param shape2 - The second shape.
* @param shapePos2 - The initial position of the second shape.
* @param shapeRot2 - The rotation of the second shape.
* @param prediction - The prediction value, if the shapes are separated by a distance greater than this value, test will fail.
* @returns `null` if the shapes are separated by a distance greater than prediction, otherwise contact details. The result is given in world-space.
*/
contactShape(
shapePos1: Vector,
shapeRot1: Rotation,
shape2: Shape,
shapePos2: Vector,
shapeRot2: Rotation,
prediction: number,
): ShapeContact | null {
let rawPos1 = VectorOps.intoRaw(shapePos1);
let rawRot1 = RotationOps.intoRaw(shapeRot1);
let rawPos2 = VectorOps.intoRaw(shapePos2);
let rawRot2 = RotationOps.intoRaw(shapeRot2);
let rawShape1 = this.intoRaw();
let rawShape2 = shape2.intoRaw();
let result = ShapeContact.fromRaw(
rawShape1.contactShape(
rawPos1,
rawRot1,
rawShape2,
rawPos2,
rawRot2,
prediction,
),
);
rawPos1.free();
rawRot1.free();
rawPos2.free();
rawRot2.free();
rawShape1.free();
rawShape2.free();
return result;
}
containsPoint(
shapePos: Vector,
shapeRot: Rotation,
point: Vector,
): boolean {
let rawPos = VectorOps.intoRaw(shapePos);
let rawRot = RotationOps.intoRaw(shapeRot);
let rawPoint = VectorOps.intoRaw(point);
let rawShape = this.intoRaw();
let result = rawShape.containsPoint(rawPos, rawRot, rawPoint);
rawPos.free();
rawRot.free();
rawPoint.free();
rawShape.free();
return result;
}
projectPoint(
shapePos: Vector,
shapeRot: Rotation,
point: Vector,
solid: boolean,
): PointProjection {
let rawPos = VectorOps.intoRaw(shapePos);
let rawRot = RotationOps.intoRaw(shapeRot);
let rawPoint = VectorOps.intoRaw(point);
let rawShape = this.intoRaw();
let result = PointProjection.fromRaw(
rawShape.projectPoint(rawPos, rawRot, rawPoint, solid),
);
rawPos.free();
rawRot.free();
rawPoint.free();
rawShape.free();
return result;
}
intersectsRay(
ray: Ray,
shapePos: Vector,
shapeRot: Rotation,
maxToi: number,
): boolean {
let rawPos = VectorOps.intoRaw(shapePos);
let rawRot = RotationOps.intoRaw(shapeRot);
let rawRayOrig = VectorOps.intoRaw(ray.origin);
let rawRayDir = VectorOps.intoRaw(ray.dir);
let rawShape = this.intoRaw();
let result = rawShape.intersectsRay(
rawPos,
rawRot,
rawRayOrig,
rawRayDir,
maxToi,
);
rawPos.free();
rawRot.free();
rawRayOrig.free();
rawRayDir.free();
rawShape.free();
return result;
}
castRay(
ray: Ray,
shapePos: Vector,
shapeRot: Rotation,
maxToi: number,
solid: boolean,
): number {
let rawPos = VectorOps.intoRaw(shapePos);
let rawRot = RotationOps.intoRaw(shapeRot);
let rawRayOrig = VectorOps.intoRaw(ray.origin);
let rawRayDir = VectorOps.intoRaw(ray.dir);
let rawShape = this.intoRaw();
let result = rawShape.castRay(
rawPos,
rawRot,
rawRayOrig,
rawRayDir,
maxToi,
solid,
);
rawPos.free();
rawRot.free();
rawRayOrig.free();
rawRayDir.free();
rawShape.free();
return result;
}
castRayAndGetNormal(
ray: Ray,
shapePos: Vector,
shapeRot: Rotation,
maxToi: number,
solid: boolean,
): RayIntersection {
let rawPos = VectorOps.intoRaw(shapePos);
let rawRot = RotationOps.intoRaw(shapeRot);
let rawRayOrig = VectorOps.intoRaw(ray.origin);
let rawRayDir = VectorOps.intoRaw(ray.dir);
let rawShape = this.intoRaw();
let result = RayIntersection.fromRaw(
rawShape.castRayAndGetNormal(
rawPos,
rawRot,
rawRayOrig,
rawRayDir,
maxToi,
solid,
),
);
rawPos.free();
rawRot.free();
rawRayOrig.free();
rawRayDir.free();
rawShape.free();
return result;
}
}
// #if DIM2
/**
* An enumeration representing the type of a shape.
*/
export enum ShapeType {
Ball = 0,
Cuboid = 1,
Capsule = 2,
Segment = 3,
Polyline = 4,
Triangle = 5,
TriMesh = 6,
HeightField = 7,
Compound = 8,
ConvexPolygon = 9,
RoundCuboid = 10,
RoundTriangle = 11,
RoundConvexPolygon = 12,
HalfSpace = 13,
}
// #endif
// #if DIM3
/**
* An enumeration representing the type of a shape.
*/
export enum ShapeType {
Ball = 0,
Cuboid = 1,
Capsule = 2,
Segment = 3,
Polyline = 4,
Triangle = 5,
TriMesh = 6,
HeightField = 7,
Compound = 8,
ConvexPolyhedron = 9,
Cylinder = 10,
Cone = 11,
RoundCuboid = 12,
RoundTriangle = 13,
RoundCylinder = 14,
RoundCone = 15,
RoundConvexPolyhedron = 16,
HalfSpace = 17,
}
// NOTE: this **must** match the bits in the HeightFieldFlags on the rust side.
/**
* Flags controlling the behavior of some operations involving heightfields.
*/
export enum HeightFieldFlags {
/**
* If set, a special treatment will be applied to contact manifold calculation to eliminate
* or fix contacts normals that could lead to incorrect bumps in physics simulation (especially
* on flat surfaces).
*
* This is achieved by taking into account adjacent triangle normals when computing contact
* points for a given triangle.
*/
FIX_INTERNAL_EDGES = 0b0000_0001,
}
// #endif
// NOTE: this **must** match the TriMeshFlags on the rust side.
/**
* Flags controlling the behavior of the triangle mesh creation and of some
* operations involving triangle meshes.
*/
export enum TriMeshFlags {
// NOTE: these two flags are not really useful in JS.
//
// /**
// * If set, the half-edge topology of the trimesh will be computed if possible.
// */
// HALF_EDGE_TOPOLOGY = 0b0000_0001,
// /** If set, the half-edge topology and connected components of the trimesh will be computed if possible.
// *
// * Because of the way it is currently implemented, connected components can only be computed on
// * a mesh where the half-edge topology computation succeeds. It will no longer be the case in the
// * future once we decouple the computations.
// */
// CONNECTED_COMPONENTS = 0b0000_0010,
/**
* If set, any triangle that results in a failing half-hedge topology computation will be deleted.
*/
DELETE_BAD_TOPOLOGY_TRIANGLES = 0b0000_0100,
/**
* If set, the trimesh will be assumed to be oriented (with outward normals).
*
* The pseudo-normals of its vertices and edges will be computed.
*/
ORIENTED = 0b0000_1000,
/**
* If set, the duplicate vertices of the trimesh will be merged.
*
* Two vertices with the exact same coordinates will share the same entry on the
* vertex buffer and the index buffer is adjusted accordingly.
*/
MERGE_DUPLICATE_VERTICES = 0b0001_0000,
/**
* If set, the triangles sharing two vertices with identical index values will be removed.
*
* Because of the way it is currently implemented, this methods implies that duplicate
* vertices will be merged. It will no longer be the case in the future once we decouple
* the computations.
*/
DELETE_DEGENERATE_TRIANGLES = 0b0010_0000,
/**
* If set, two triangles sharing three vertices with identical index values (in any order)
* will be removed.
*
* Because of the way it is currently implemented, this methods implies that duplicate
* vertices will be merged. It will no longer be the case in the future once we decouple
* the computations.
*/
DELETE_DUPLICATE_TRIANGLES = 0b0100_0000,
/**
* If set, a special treatment will be applied to contact manifold calculation to eliminate
* or fix contacts normals that could lead to incorrect bumps in physics simulation
* (especially on flat surfaces).
*
* This is achieved by taking into account adjacent triangle normals when computing contact
* points for a given triangle.
*
* /!\ NOT SUPPORTED IN THE 2D VERSION OF RAPIER.
*/
FIX_INTERNAL_EDGES = 0b1000_0000 |
TriMeshFlags.ORIENTED |
TriMeshFlags.MERGE_DUPLICATE_VERTICES,
}
/**
* A shape that is a sphere in 3D and a circle in 2D.
*/
export class Ball extends Shape {
readonly type = ShapeType.Ball;
/**
* The balls radius.
*/
radius: number;
/**
* Creates a new ball with the given radius.
* @param radius - The balls radius.
*/
constructor(radius: number) {
super();
this.radius = radius;
}
public intoRaw(): RawShape {
return RawShape.ball(this.radius);
}
}
export class HalfSpace extends Shape {
readonly type = ShapeType.HalfSpace;
/**
* The outward normal of the half-space.
*/
normal: Vector;
/**
* Creates a new halfspace delimited by an infinite plane.
*
* @param normal - The outward normal of the plane.
*/
constructor(normal: Vector) {
super();
this.normal = normal;
}
public intoRaw(): RawShape {
let n = VectorOps.intoRaw(this.normal);
let result = RawShape.halfspace(n);
n.free();
return result;
}
}
/**
* A shape that is a box in 3D and a rectangle in 2D.
*/
export class Cuboid extends Shape {
readonly type = ShapeType.Cuboid;
/**
* The half extent of the cuboid along each coordinate axis.
*/
halfExtents: Vector;
// #if DIM2
/**
* Creates a new 2D rectangle.
* @param hx - The half width of the rectangle.
* @param hy - The helf height of the rectangle.
*/
constructor(hx: number, hy: number) {
super();
this.halfExtents = VectorOps.new(hx, hy);
}
// #endif
// #if DIM3
/**
* Creates a new 3D cuboid.
* @param hx - The half width of the cuboid.
* @param hy - The half height of the cuboid.
* @param hz - The half depth of the cuboid.
*/
constructor(hx: number, hy: number, hz: number) {
super();
this.halfExtents = VectorOps.new(hx, hy, hz);
}
// #endif
public intoRaw(): RawShape {
// #if DIM2
return RawShape.cuboid(this.halfExtents.x, this.halfExtents.y);
// #endif
// #if DIM3
return RawShape.cuboid(
this.halfExtents.x,
this.halfExtents.y,
this.halfExtents.z,
);
// #endif
}
}
/**
* A shape that is a box in 3D and a rectangle in 2D, with round corners.
*/
export class RoundCuboid extends Shape {
readonly type = ShapeType.RoundCuboid;
/**
* The half extent of the cuboid along each coordinate axis.
*/
halfExtents: Vector;
/**
* The radius of the cuboid's round border.
*/
borderRadius: number;
// #if DIM2
/**
* Creates a new 2D rectangle.
* @param hx - The half width of the rectangle.
* @param hy - The helf height of the rectangle.
* @param borderRadius - The radius of the borders of this cuboid. This will
* effectively increase the half-extents of the cuboid by this radius.
*/
constructor(hx: number, hy: number, borderRadius: number) {
super();
this.halfExtents = VectorOps.new(hx, hy);
this.borderRadius = borderRadius;
}
// #endif
// #if DIM3
/**
* Creates a new 3D cuboid.
* @param hx - The half width of the cuboid.
* @param hy - The half height of the cuboid.
* @param hz - The half depth of the cuboid.
* @param borderRadius - The radius of the borders of this cuboid. This will
* effectively increase the half-extents of the cuboid by this radius.
*/
constructor(hx: number, hy: number, hz: number, borderRadius: number) {
super();
this.halfExtents = VectorOps.new(hx, hy, hz);
this.borderRadius = borderRadius;
}
// #endif
public intoRaw(): RawShape {
// #if DIM2
return RawShape.roundCuboid(
this.halfExtents.x,
this.halfExtents.y,
this.borderRadius,
);
// #endif
// #if DIM3
return RawShape.roundCuboid(
this.halfExtents.x,
this.halfExtents.y,
this.halfExtents.z,
this.borderRadius,
);
// #endif
}
}
/**
* A shape that is a capsule.
*/
export class Capsule extends Shape {
readonly type = ShapeType.Capsule;
/**
* The radius of the capsule's basis.
*/
radius: number;
/**
* The capsule's half height, along the `y` axis.
*/
halfHeight: number;
/**
* Creates a new capsule with the given radius and half-height.
* @param halfHeight - The balls half-height along the `y` axis.
* @param radius - The balls radius.
*/
constructor(halfHeight: number, radius: number) {
super();
this.halfHeight = halfHeight;
this.radius = radius;
}
public intoRaw(): RawShape {
return RawShape.capsule(this.halfHeight, this.radius);
}
}
/**
* A shape that is a segment.
*/
export class Segment extends Shape {
readonly type = ShapeType.Segment;
/**
* The first point of the segment.
*/
a: Vector;
/**
* The second point of the segment.
*/
b: Vector;
/**
* Creates a new segment shape.
* @param a - The first point of the segment.
* @param b - The second point of the segment.
*/
constructor(a: Vector, b: Vector) {
super();
this.a = a;
this.b = b;
}
public intoRaw(): RawShape {
let ra = VectorOps.intoRaw(this.a);
let rb = VectorOps.intoRaw(this.b);
let result = RawShape.segment(ra, rb);
ra.free();
rb.free();
return result;
}
}
/**
* A shape that is a segment.
*/
export class Triangle extends Shape {
readonly type = ShapeType.Triangle;
/**
* The first point of the triangle.
*/
a: Vector;
/**
* The second point of the triangle.
*/
b: Vector;
/**
* The second point of the triangle.
*/
c: Vector;
/**
* Creates a new triangle shape.
*
* @param a - The first point of the triangle.
* @param b - The second point of the triangle.
* @param c - The third point of the triangle.
*/
constructor(a: Vector, b: Vector, c: Vector) {
super();
this.a = a;
this.b = b;
this.c = c;
}
public intoRaw(): RawShape {
let ra = VectorOps.intoRaw(this.a);
let rb = VectorOps.intoRaw(this.b);
let rc = VectorOps.intoRaw(this.c);
let result = RawShape.triangle(ra, rb, rc);
ra.free();
rb.free();
rc.free();
return result;
}
}
/**
* A shape that is a triangle with round borders and a non-zero thickness.
*/
export class RoundTriangle extends Shape {
readonly type = ShapeType.RoundTriangle;
/**
* The first point of the triangle.
*/
a: Vector;
/**
* The second point of the triangle.
*/
b: Vector;
/**
* The second point of the triangle.
*/
c: Vector;
/**
* The radius of the triangles's rounded edges and vertices.
* In 3D, this is also equal to half the thickness of the round triangle.
*/
borderRadius: number;
/**
* Creates a new triangle shape with round corners.
*
* @param a - The first point of the triangle.
* @param b - The second point of the triangle.
* @param c - The third point of the triangle.
* @param borderRadius - The radius of the borders of this triangle. In 3D,
* this is also equal to half the thickness of the triangle.
*/
constructor(a: Vector, b: Vector, c: Vector, borderRadius: number) {
super();
this.a = a;
this.b = b;
this.c = c;
this.borderRadius = borderRadius;
}
public intoRaw(): RawShape {
let ra = VectorOps.intoRaw(this.a);
let rb = VectorOps.intoRaw(this.b);
let rc = VectorOps.intoRaw(this.c);
let result = RawShape.roundTriangle(ra, rb, rc, this.borderRadius);
ra.free();
rb.free();
rc.free();
return result;
}
}
/**
* A shape that is a triangle mesh.
*/
export class Polyline extends Shape {
readonly type = ShapeType.Polyline;
/**
* The vertices of the polyline.
*/
vertices: Float32Array;
/**
* The indices of the segments.
*/
indices: Uint32Array;
/**
* Creates a new polyline shape.
*
* @param vertices - The coordinates of the polyline's vertices.
* @param indices - The indices of the polyline's segments. If this is `null` or not provided, then