-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathcollider.ts
1826 lines (1660 loc) · 59.9 KB
/
collider.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 {RawColliderSet, RawCompoundShapePart} from "../raw";
import {Rotation, RotationOps, Vector, VectorOps} from "../math";
import {
CoefficientCombineRule,
RigidBody,
RigidBodyHandle,
RigidBodySet,
} from "../dynamics";
import {ActiveHooks, ActiveEvents} from "../pipeline";
import {InteractionGroups} from "./interaction_groups";
import {
Shape,
Cuboid,
Ball,
ShapeType,
Capsule,
TriMesh,
Polyline,
Heightfield,
Segment,
Triangle,
RoundTriangle,
RoundCuboid,
HalfSpace,
TriMeshFlags,
// #if DIM2
ConvexPolygon,
RoundConvexPolygon,
// #endif
// #if DIM3
Cylinder,
RoundCylinder,
Cone,
RoundCone,
ConvexPolyhedron,
RoundConvexPolyhedron,
HeightFieldFlags,
// #endif
Compound,
} from "./shape";
import {Ray, RayIntersection} from "./ray";
import {PointProjection} from "./point";
import {ColliderShapeCastHit, ShapeCastHit} from "./toi";
import {ShapeContact} from "./contact";
import {ColliderSet} from "./collider_set";
/**
* Flags affecting whether collision-detection happens between two colliders
* depending on the type of rigid-bodies they are attached to.
*/
export enum ActiveCollisionTypes {
/**
* Enable collision-detection between a collider attached to a dynamic body
* and another collider attached to a dynamic body.
*/
DYNAMIC_DYNAMIC = 0b0000_0000_0000_0001,
/**
* Enable collision-detection between a collider attached to a dynamic body
* and another collider attached to a kinematic body.
*/
DYNAMIC_KINEMATIC = 0b0000_0000_0000_1100,
/**
* Enable collision-detection between a collider attached to a dynamic body
* and another collider attached to a fixed body (or not attached to any body).
*/
DYNAMIC_FIXED = 0b0000_0000_0000_0010,
/**
* Enable collision-detection between a collider attached to a kinematic body
* and another collider attached to a kinematic body.
*/
KINEMATIC_KINEMATIC = 0b1100_1100_0000_0000,
/**
* Enable collision-detection between a collider attached to a kinematic body
* and another collider attached to a fixed body (or not attached to any body).
*/
KINEMATIC_FIXED = 0b0010_0010_0000_0000,
/**
* Enable collision-detection between a collider attached to a fixed body (or
* not attached to any body) and another collider attached to a fixed body (or
* not attached to any body).
*/
FIXED_FIXED = 0b0000_0000_0010_0000,
/**
* The default active collision types, enabling collisions between a dynamic body
* and another body of any type, but not enabling collisions between two non-dynamic bodies.
*/
DEFAULT = DYNAMIC_KINEMATIC | DYNAMIC_DYNAMIC | DYNAMIC_FIXED,
/**
* Enable collisions between any kind of rigid-bodies (including between two non-dynamic bodies).
*/
ALL = DYNAMIC_KINEMATIC |
DYNAMIC_DYNAMIC |
DYNAMIC_FIXED |
KINEMATIC_KINEMATIC |
KINEMATIC_FIXED |
KINEMATIC_KINEMATIC,
}
/**
* The integer identifier of a collider added to a `ColliderSet`.
*/
export type ColliderHandle = number;
/**
* A geometric entity that can be attached to a body so it can be affected
* by contacts and proximity queries.
*/
export class Collider {
private colliderSet: ColliderSet; // The Collider won't need to free this.
readonly handle: ColliderHandle;
private _shape: Shape;
private _parent: RigidBody | null;
constructor(
colliderSet: ColliderSet,
handle: ColliderHandle,
parent: RigidBody | null,
shape?: Shape,
) {
this.colliderSet = colliderSet;
this.handle = handle;
this._parent = parent;
this._shape = shape;
}
/** @internal */
public finalizeDeserialization(bodies: RigidBodySet) {
if (this.handle != null) {
this._parent = bodies.get(
this.colliderSet.raw.coParent(this.handle),
);
}
}
private ensureShapeIsCached() {
if (!this._shape)
this._shape = Shape.fromRaw(this.colliderSet.raw, this.handle);
}
/**
* The shape of this collider.
*/
public get shape(): Shape {
this.ensureShapeIsCached();
return this._shape;
}
/**
* Checks if this collider is still valid (i.e. that it has
* not been deleted from the collider set yet).
*/
public isValid(): boolean {
return this.colliderSet.raw.contains(this.handle);
}
/**
* The world-space translation of this rigid-body.
*/
public translation(): Vector {
return VectorOps.fromRaw(
this.colliderSet.raw.coTranslation(this.handle),
);
}
/**
* The world-space orientation of this rigid-body.
*/
public rotation(): Rotation {
return RotationOps.fromRaw(
this.colliderSet.raw.coRotation(this.handle),
);
}
/**
* Is this collider a sensor?
*/
public isSensor(): boolean {
return this.colliderSet.raw.coIsSensor(this.handle);
}
/**
* Sets whether or not this collider is a sensor.
* @param isSensor - If `true`, the collider will be a sensor.
*/
public setSensor(isSensor: boolean) {
this.colliderSet.raw.coSetSensor(this.handle, isSensor);
}
/**
* Sets the new shape of the collider.
* @param shape - The collider’s new shape.
*/
public setShape(shape: Shape) {
let rawShape = shape.intoRaw();
this.colliderSet.raw.coSetShape(this.handle, rawShape);
rawShape.free();
this._shape = shape;
}
/**
* Sets whether this collider is enabled or not.
*
* @param enabled - Set to `false` to disable this collider (its parent rigid-body won’t be disabled automatically by this).
*/
public setEnabled(enabled: boolean) {
this.colliderSet.raw.coSetEnabled(this.handle, enabled);
}
/**
* Is this collider enabled?
*/
public isEnabled(): boolean {
return this.colliderSet.raw.coIsEnabled(this.handle);
}
/**
* Sets the restitution coefficient of the collider to be created.
*
* @param restitution - The restitution coefficient in `[0, 1]`. A value of 0 (the default) means no bouncing behavior
* while 1 means perfect bouncing (though energy may still be lost due to numerical errors of the
* constraints solver).
*/
public setRestitution(restitution: number) {
this.colliderSet.raw.coSetRestitution(this.handle, restitution);
}
/**
* Sets the friction coefficient of the collider to be created.
*
* @param friction - The friction coefficient. Must be greater or equal to 0. This is generally smaller than 1. The
* higher the coefficient, the stronger friction forces will be for contacts with the collider
* being built.
*/
public setFriction(friction: number) {
this.colliderSet.raw.coSetFriction(this.handle, friction);
}
/**
* Gets the rule used to combine the friction coefficients of two colliders
* colliders involved in a contact.
*/
public frictionCombineRule(): CoefficientCombineRule {
return this.colliderSet.raw.coFrictionCombineRule(this.handle);
}
/**
* Sets the rule used to combine the friction coefficients of two colliders
* colliders involved in a contact.
*
* @param rule − The combine rule to apply.
*/
public setFrictionCombineRule(rule: CoefficientCombineRule) {
this.colliderSet.raw.coSetFrictionCombineRule(this.handle, rule);
}
/**
* Gets the rule used to combine the restitution coefficients of two colliders
* colliders involved in a contact.
*/
public restitutionCombineRule(): CoefficientCombineRule {
return this.colliderSet.raw.coRestitutionCombineRule(this.handle);
}
/**
* Sets the rule used to combine the restitution coefficients of two colliders
* colliders involved in a contact.
*
* @param rule − The combine rule to apply.
*/
public setRestitutionCombineRule(rule: CoefficientCombineRule) {
this.colliderSet.raw.coSetRestitutionCombineRule(this.handle, rule);
}
/**
* Sets the collision groups used by this collider.
*
* Two colliders will interact iff. their collision groups are compatible.
* See the documentation of `InteractionGroups` for details on teh used bit pattern.
*
* @param groups - The collision groups used for the collider being built.
*/
public setCollisionGroups(groups: InteractionGroups) {
this.colliderSet.raw.coSetCollisionGroups(this.handle, groups);
}
/**
* Sets the solver groups used by this collider.
*
* Forces between two colliders in contact will be computed iff their solver
* groups are compatible.
* See the documentation of `InteractionGroups` for details on the used bit pattern.
*
* @param groups - The solver groups used for the collider being built.
*/
public setSolverGroups(groups: InteractionGroups) {
this.colliderSet.raw.coSetSolverGroups(this.handle, groups);
}
/**
* Sets the contact skin for this collider.
*
* See the documentation of `ColliderDesc.setContactSkin` for additional details.
*/
public contactSkin(): number {
return this.colliderSet.raw.coContactSkin(this.handle);
}
/**
* Sets the contact skin for this collider.
*
* See the documentation of `ColliderDesc.setContactSkin` for additional details.
*
* @param thickness - The contact skin thickness.
*/
public setContactSkin(thickness: number) {
return this.colliderSet.raw.coSetContactSkin(this.handle, thickness);
}
/**
* Get the physics hooks active for this collider.
*/
public activeHooks(): ActiveHooks {
return this.colliderSet.raw.coActiveHooks(this.handle);
}
/**
* Set the physics hooks active for this collider.
*
* Use this to enable custom filtering rules for contact/intersecstion pairs involving this collider.
*
* @param activeHooks - The hooks active for contact/intersection pairs involving this collider.
*/
public setActiveHooks(activeHooks: ActiveHooks) {
this.colliderSet.raw.coSetActiveHooks(this.handle, activeHooks);
}
/**
* The events active for this collider.
*/
public activeEvents(): ActiveEvents {
return this.colliderSet.raw.coActiveEvents(this.handle);
}
/**
* Set the events active for this collider.
*
* Use this to enable contact and/or intersection event reporting for this collider.
*
* @param activeEvents - The events active for contact/intersection pairs involving this collider.
*/
public setActiveEvents(activeEvents: ActiveEvents) {
this.colliderSet.raw.coSetActiveEvents(this.handle, activeEvents);
}
/**
* Gets the collision types active for this collider.
*/
public activeCollisionTypes(): ActiveCollisionTypes {
return this.colliderSet.raw.coActiveCollisionTypes(this.handle);
}
/**
* Sets the total force magnitude beyond which a contact force event can be emitted.
*
* @param threshold - The new force threshold.
*/
public setContactForceEventThreshold(threshold: number) {
return this.colliderSet.raw.coSetContactForceEventThreshold(
this.handle,
threshold,
);
}
/**
* The total force magnitude beyond which a contact force event can be emitted.
*/
public contactForceEventThreshold(): number {
return this.colliderSet.raw.coContactForceEventThreshold(this.handle);
}
/**
* Set the collision types active for this collider.
*
* @param activeCollisionTypes - The hooks active for contact/intersection pairs involving this collider.
*/
public setActiveCollisionTypes(activeCollisionTypes: ActiveCollisionTypes) {
this.colliderSet.raw.coSetActiveCollisionTypes(
this.handle,
activeCollisionTypes,
);
}
/**
* Sets the uniform density of this collider.
*
* This will override any previous mass-properties set by `this.setDensity`,
* `this.setMass`, `this.setMassProperties`, `ColliderDesc.density`,
* `ColliderDesc.mass`, or `ColliderDesc.massProperties` for this collider.
*
* The mass and angular inertia of this collider will be computed automatically based on its
* shape.
*/
public setDensity(density: number) {
this.colliderSet.raw.coSetDensity(this.handle, density);
}
/**
* Sets the mass of this collider.
*
* This will override any previous mass-properties set by `this.setDensity`,
* `this.setMass`, `this.setMassProperties`, `ColliderDesc.density`,
* `ColliderDesc.mass`, or `ColliderDesc.massProperties` for this collider.
*
* The angular inertia of this collider will be computed automatically based on its shape
* and this mass value.
*/
public setMass(mass: number) {
this.colliderSet.raw.coSetMass(this.handle, mass);
}
// #if DIM3
/**
* Sets the mass of this collider.
*
* This will override any previous mass-properties set by `this.setDensity`,
* `this.setMass`, `this.setMassProperties`, `ColliderDesc.density`,
* `ColliderDesc.mass`, or `ColliderDesc.massProperties` for this collider.
*/
public setMassProperties(
mass: number,
centerOfMass: Vector,
principalAngularInertia: Vector,
angularInertiaLocalFrame: Rotation,
) {
let rawCom = VectorOps.intoRaw(centerOfMass);
let rawPrincipalInertia = VectorOps.intoRaw(principalAngularInertia);
let rawInertiaFrame = RotationOps.intoRaw(angularInertiaLocalFrame);
this.colliderSet.raw.coSetMassProperties(
this.handle,
mass,
rawCom,
rawPrincipalInertia,
rawInertiaFrame,
);
rawCom.free();
rawPrincipalInertia.free();
rawInertiaFrame.free();
}
// #endif
// #if DIM2
/**
* Sets the mass of this collider.
*
* This will override any previous mass-properties set by `this.setDensity`,
* `this.setMass`, `this.setMassProperties`, `ColliderDesc.density`,
* `ColliderDesc.mass`, or `ColliderDesc.massProperties` for this collider.
*/
public setMassProperties(
mass: number,
centerOfMass: Vector,
principalAngularInertia: number,
) {
let rawCom = VectorOps.intoRaw(centerOfMass);
this.colliderSet.raw.coSetMassProperties(
this.handle,
mass,
rawCom,
principalAngularInertia,
);
rawCom.free();
}
// #endif
/**
* Sets the translation of this collider.
*
* @param tra - The world-space position of the collider.
*/
public setTranslation(tra: Vector) {
// #if DIM2
this.colliderSet.raw.coSetTranslation(this.handle, tra.x, tra.y);
// #endif
// #if DIM3
this.colliderSet.raw.coSetTranslation(this.handle, tra.x, tra.y, tra.z);
// #endif
}
/**
* Sets the translation of this collider relative to its parent rigid-body.
*
* Does nothing if this collider isn't attached to a rigid-body.
*
* @param tra - The new translation of the collider relative to its parent.
*/
public setTranslationWrtParent(tra: Vector) {
// #if DIM2
this.colliderSet.raw.coSetTranslationWrtParent(
this.handle,
tra.x,
tra.y,
);
// #endif
// #if DIM3
this.colliderSet.raw.coSetTranslationWrtParent(
this.handle,
tra.x,
tra.y,
tra.z,
);
// #endif
}
// #if DIM3
/**
* Sets the rotation quaternion of this collider.
*
* This does nothing if a zero quaternion is provided.
*
* @param rotation - The rotation to set.
*/
public setRotation(rot: Rotation) {
this.colliderSet.raw.coSetRotation(
this.handle,
rot.x,
rot.y,
rot.z,
rot.w,
);
}
/**
* Sets the rotation quaternion of this collider relative to its parent rigid-body.
*
* This does nothing if a zero quaternion is provided or if this collider isn't
* attached to a rigid-body.
*
* @param rotation - The rotation to set.
*/
public setRotationWrtParent(rot: Rotation) {
this.colliderSet.raw.coSetRotationWrtParent(
this.handle,
rot.x,
rot.y,
rot.z,
rot.w,
);
}
// #endif
// #if DIM2
/**
* Sets the rotation angle of this collider.
*
* @param angle - The rotation angle, in radians.
*/
public setRotation(angle: number) {
this.colliderSet.raw.coSetRotation(this.handle, angle);
}
/**
* Sets the rotation angle of this collider relative to its parent rigid-body.
*
* Does nothing if this collider isn't attached to a rigid-body.
*
* @param angle - The rotation angle, in radians.
*/
public setRotationWrtParent(angle: number) {
this.colliderSet.raw.coSetRotationWrtParent(this.handle, angle);
}
// #endif
/**
* The type of the shape of this collider.
* @deprecated this field will be removed in the future, please access this field on `shape` member instead.
*/
public shapeType(): ShapeType {
return this.colliderSet.raw.coShapeType(
this.handle,
) as number as ShapeType;
}
/**
* The half-extents of this collider if it is a cuboid shape.
* @deprecated this field will be removed in the future, please access this field on `shape` member instead.
*/
public halfExtents(): Vector {
return VectorOps.fromRaw(
this.colliderSet.raw.coHalfExtents(this.handle),
);
}
/**
* Sets the half-extents of this collider if it is a cuboid shape.
*
* @param newHalfExtents - desired half extents.
*/
public setHalfExtents(newHalfExtents: Vector) {
const rawPoint = VectorOps.intoRaw(newHalfExtents);
this.colliderSet.raw.coSetHalfExtents(this.handle, rawPoint);
}
/**
* The radius of this collider if it is a ball, cylinder, capsule, or cone shape.
* @deprecated this field will be removed in the future, please access this field on `shape` member instead.
*/
public radius(): number {
return this.colliderSet.raw.coRadius(this.handle);
}
/**
* Sets the radius of this collider if it is a ball, cylinder, capsule, or cone shape.
*
* @param newRadius - desired radius.
*/
public setRadius(newRadius: number): void {
this.colliderSet.raw.coSetRadius(this.handle, newRadius);
}
/**
* The radius of the round edges of this collider if it is a round cylinder.
* @deprecated this field will be removed in the future, please access this field on `shape` member instead.
*/
public roundRadius(): number {
return this.colliderSet.raw.coRoundRadius(this.handle);
}
/**
* Sets the radius of the round edges of this collider if it has round edges.
*
* @param newBorderRadius - desired round edge radius.
*/
public setRoundRadius(newBorderRadius: number) {
this.colliderSet.raw.coSetRoundRadius(this.handle, newBorderRadius);
}
/**
* The half height of this collider if it is a cylinder, capsule, or cone shape.
* @deprecated this field will be removed in the future, please access this field on `shape` member instead.
*/
public halfHeight(): number {
return this.colliderSet.raw.coHalfHeight(this.handle);
}
/**
* Sets the half height of this collider if it is a cylinder, capsule, or cone shape.
*
* @param newHalfheight - desired half height.
*/
public setHalfHeight(newHalfheight: number) {
this.colliderSet.raw.coSetHalfHeight(this.handle, newHalfheight);
}
/**
* If this collider has a triangle mesh, polyline, convex polygon, or convex polyhedron shape,
* this returns the vertex buffer of said shape.
* @deprecated this field will be removed in the future, please access this field on `shape` member instead.
*/
public vertices(): Float32Array {
return this.colliderSet.raw.coVertices(this.handle);
}
/**
* If this collider has a triangle mesh, polyline, or convex polyhedron shape,
* this returns the index buffer of said shape.
* @deprecated this field will be removed in the future, please access this field on `shape` member instead.
*/
public indices(): Uint32Array | undefined {
return this.colliderSet.raw.coIndices(this.handle);
}
/**
* If this collider has a heightfield shape, this returns the heights buffer of
* the heightfield.
* In 3D, the returned height matrix is provided in column-major order.
* @deprecated this field will be removed in the future, please access this field on `shape` member instead.
*/
public heightfieldHeights(): Float32Array {
return this.colliderSet.raw.coHeightfieldHeights(this.handle);
}
/**
* If this collider has a heightfield shape, this returns the scale
* applied to it.
* @deprecated this field will be removed in the future, please access this field on `shape` member instead.
*/
public heightfieldScale(): Vector {
let scale = this.colliderSet.raw.coHeightfieldScale(this.handle);
return VectorOps.fromRaw(scale);
}
// #if DIM3
/**
* If this collider has a heightfield shape, this returns the number of
* rows of its height matrix.
* @deprecated this field will be removed in the future, please access this field on `shape` member instead.
*/
public heightfieldNRows(): number {
return this.colliderSet.raw.coHeightfieldNRows(this.handle);
}
/**
* If this collider has a heightfield shape, this returns the number of
* columns of its height matrix.
* @deprecated this field will be removed in the future, please access this field on `shape` member instead.
*/
public heightfieldNCols(): number {
return this.colliderSet.raw.coHeightfieldNCols(this.handle);
}
// #endif
/**
* The rigid-body this collider is attached to.
*/
public parent(): RigidBody | null {
return this._parent;
}
/**
* The friction coefficient of this collider.
*/
public friction(): number {
return this.colliderSet.raw.coFriction(this.handle);
}
/**
* The restitution coefficient of this collider.
*/
public restitution(): number {
return this.colliderSet.raw.coRestitution(this.handle);
}
/**
* The density of this collider.
*/
public density(): number {
return this.colliderSet.raw.coDensity(this.handle);
}
/**
* The mass of this collider.
*/
public mass(): number {
return this.colliderSet.raw.coMass(this.handle);
}
/**
* The volume of this collider.
*/
public volume(): number {
return this.colliderSet.raw.coVolume(this.handle);
}
/**
* The collision groups of this collider.
*/
public collisionGroups(): InteractionGroups {
return this.colliderSet.raw.coCollisionGroups(this.handle);
}
/**
* The solver groups of this collider.
*/
public solverGroups(): InteractionGroups {
return this.colliderSet.raw.coSolverGroups(this.handle);
}
/**
* Tests if this collider contains a point.
*
* @param point - The point to test.
*/
public containsPoint(point: Vector): boolean {
let rawPoint = VectorOps.intoRaw(point);
let result = this.colliderSet.raw.coContainsPoint(
this.handle,
rawPoint,
);
rawPoint.free();
return result;
}
/**
* Find the projection of a point on this collider.
*
* @param point - The point to project.
* @param solid - If this is set to `true` then the collider shapes are considered to
* be plain (if the point is located inside of a plain shape, its projection is the point
* itself). If it is set to `false` the collider shapes are considered to be hollow
* (if the point is located inside of an hollow shape, it is projected on the shape's
* boundary).
*/
public projectPoint(point: Vector, solid: boolean): PointProjection | null {
let rawPoint = VectorOps.intoRaw(point);
let result = PointProjection.fromRaw(
this.colliderSet.raw.coProjectPoint(this.handle, rawPoint, solid),
);
rawPoint.free();
return result;
}
/**
* Tests if this collider intersects the given ray.
*
* @param ray - The ray to cast.
* @param maxToi - The maximum time-of-impact that can be reported by this cast. This effectively
* limits the length of the ray to `ray.dir.norm() * maxToi`.
*/
public intersectsRay(ray: Ray, maxToi: number): boolean {
let rawOrig = VectorOps.intoRaw(ray.origin);
let rawDir = VectorOps.intoRaw(ray.dir);
let result = this.colliderSet.raw.coIntersectsRay(
this.handle,
rawOrig,
rawDir,
maxToi,
);
rawOrig.free();
rawDir.free();
return result;
}
/*
* Computes the smallest time between this and the given shape under translational movement are separated by a distance smaller or equal to distance.
*
* @param collider1Vel - The constant velocity of the current shape to cast (i.e. the cast direction).
* @param shape2 - The shape to cast against.
* @param shape2Pos - The position of the second shape.
* @param shape2Rot - The rotation of the second shape.
* @param shape2Vel - The constant 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-of-impact that can be reported by this cast. This effectively
* limits the distance traveled by the shape to `collider1Vel.norm() * maxToi`.
* @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.
*/
public castShape(
collider1Vel: Vector,
shape2: Shape,
shape2Pos: Vector,
shape2Rot: Rotation,
shape2Vel: Vector,
targetDistance: number,
maxToi: number,
stopAtPenetration: boolean,
): ShapeCastHit | null {
let rawCollider1Vel = VectorOps.intoRaw(collider1Vel);
let rawShape2Pos = VectorOps.intoRaw(shape2Pos);
let rawShape2Rot = RotationOps.intoRaw(shape2Rot);
let rawShape2Vel = VectorOps.intoRaw(shape2Vel);
let rawShape2 = shape2.intoRaw();
let result = ShapeCastHit.fromRaw(
this.colliderSet,
this.colliderSet.raw.coCastShape(
this.handle,
rawCollider1Vel,
rawShape2,
rawShape2Pos,
rawShape2Rot,
rawShape2Vel,
targetDistance,
maxToi,
stopAtPenetration,
),
);
rawCollider1Vel.free();
rawShape2Pos.free();
rawShape2Rot.free();
rawShape2Vel.free();
rawShape2.free();
return result;
}
/*
* Computes the smallest time between this and the given collider under translational movement are separated by a distance smaller or equal to distance.
*
* @param collider1Vel - The constant velocity of the current collider to cast (i.e. the cast direction).
* @param collider2 - The collider to cast against.
* @param collider2Vel - The constant velocity of the second collider.
* @param targetDistance − If the shape moves closer to this distance from a collider, a hit
* will be returned.
* @param maxToi - The maximum time-of-impact that can be reported by this cast. This effectively
* limits the distance traveled by the shape to `shapeVel.norm() * maxToi`.
* @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.
*/
public castCollider(
collider1Vel: Vector,
collider2: Collider,
collider2Vel: Vector,
targetDistance: number,
maxToi: number,
stopAtPenetration: boolean,
): ColliderShapeCastHit | null {
let rawCollider1Vel = VectorOps.intoRaw(collider1Vel);
let rawCollider2Vel = VectorOps.intoRaw(collider2Vel);
let result = ColliderShapeCastHit.fromRaw(
this.colliderSet,
this.colliderSet.raw.coCastCollider(
this.handle,
rawCollider1Vel,
collider2.handle,
rawCollider2Vel,
targetDistance,
maxToi,
stopAtPenetration,
),
);
rawCollider1Vel.free();
rawCollider2Vel.free();
return result;
}
public intersectsShape(
shape2: Shape,
shapePos2: Vector,
shapeRot2: Rotation,
): boolean {
let rawPos2 = VectorOps.intoRaw(shapePos2);
let rawRot2 = RotationOps.intoRaw(shapeRot2);
let rawShape2 = shape2.intoRaw();
let result = this.colliderSet.raw.coIntersectsShape(
this.handle,
rawShape2,
rawPos2,
rawRot2,
);
rawPos2.free();
rawRot2.free();
rawShape2.free();
return result;
}
/**
* Computes one pair of contact points between the shape owned by this collider and the given shape.
*
* @param shape2 - The second shape.
* @param shape2Pos - The initial position of the second shape.
* @param shape2Rot - 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(
shape2: Shape,
shape2Pos: Vector,
shape2Rot: Rotation,
prediction: number,
): ShapeContact | null {
let rawPos2 = VectorOps.intoRaw(shape2Pos);
let rawRot2 = RotationOps.intoRaw(shape2Rot);
let rawShape2 = shape2.intoRaw();
let result = ShapeContact.fromRaw(
this.colliderSet.raw.coContactShape(
this.handle,
rawShape2,
rawPos2,
rawRot2,
prediction,
),
);
rawPos2.free();
rawRot2.free();
rawShape2.free();
return result;
}
/**
* Computes one pair of contact points between the collider and the given collider.
*
* @param collider2 - The second collider.
* @param prediction - The prediction value, if the shapes are separated by a distance greater than this value, test will fail.