Jolt Physics
A multi core friendly Game Physics Engine
|
Collision detection helper that collides a convex object vs one or more triangles. More...
#include <CollideConvexVsTriangles.h>
Public Member Functions | |
CollideConvexVsTriangles (const ConvexShape *inShape1, Vec3Arg inScale1, Vec3Arg inScale2, Mat44Arg inCenterOfMassTransform1, Mat44Arg inCenterOfMassTransform2, const SubShapeID &inSubShapeID1, const CollideShapeSettings &inCollideShapeSettings, CollideShapeCollector &ioCollector) | |
void | Collide (Vec3Arg inV0, Vec3Arg inV1, Vec3Arg inV2, uint8 inActiveEdges, const SubShapeID &inSubShapeID2) |
Protected Attributes | |
const CollideShapeSettings & | mCollideShapeSettings |
Settings for this collision operation. More... | |
CollideShapeCollector & | mCollector |
The collector that will receive the results. More... | |
const ConvexShape * | mShape1 |
The shape that we're colliding with. More... | |
Vec3 | mScale1 |
The scale of the shape (in shape local space) of the shape we're colliding with. More... | |
Vec3 | mScale2 |
The scale of the shape (in shape local space) of the shape we're colliding against. More... | |
Mat44 | mTransform1 |
Transform of the shape we're colliding with. More... | |
Mat44 | mTransform2To1 |
Transform that takes a point in space of the colliding shape to the shape we're colliding with. More... | |
AABox | mBoundsOf1 |
Bounds of the colliding shape in local space. More... | |
AABox | mBoundsOf1InSpaceOf2 |
Bounds of the colliding shape in space of shape we're colliding with. More... | |
SubShapeID | mSubShapeID1 |
Sub shape ID of colliding shape. More... | |
float | mScaleSign2 |
Sign of the scale of object 2, -1 if object is inside out, 1 if not. More... | |
ConvexShape::SupportBuffer | mBufferExCvxRadius |
Buffer that holds the support function data excluding convex radius. More... | |
ConvexShape::SupportBuffer | mBufferIncCvxRadius |
Buffer that holds the support function data including convex radius. More... | |
const ConvexShape::Support * | mShape1ExCvxRadius = nullptr |
Actual support function object excluding convex radius. More... | |
const ConvexShape::Support * | mShape1IncCvxRadius = nullptr |
Actual support function object including convex radius. More... | |
Collision detection helper that collides a convex object vs one or more triangles.
JPH_NAMESPACE_BEGIN CollideConvexVsTriangles::CollideConvexVsTriangles | ( | const ConvexShape * | inShape1, |
Vec3Arg | inScale1, | ||
Vec3Arg | inScale2, | ||
Mat44Arg | inCenterOfMassTransform1, | ||
Mat44Arg | inCenterOfMassTransform2, | ||
const SubShapeID & | inSubShapeID1, | ||
const CollideShapeSettings & | inCollideShapeSettings, | ||
CollideShapeCollector & | ioCollector | ||
) |
Constructor
inShape1 | The convex shape to collide against triangles |
inScale1 | Local space scale for the convex object |
inScale2 | Local space scale for the triangles |
inCenterOfMassTransform1 | Transform that takes the center of mass of 1 into world space |
inCenterOfMassTransform2 | Transform that takes the center of mass of 2 into world space |
inSubShapeID1 | Sub shape ID of the convex object |
inCollideShapeSettings | Settings for the collide shape query |
ioCollector | The collector that will receive the results |
void CollideConvexVsTriangles::Collide | ( | Vec3Arg | inV0, |
Vec3Arg | inV1, | ||
Vec3Arg | inV2, | ||
uint8 | inActiveEdges, | ||
const SubShapeID & | inSubShapeID2 | ||
) |
Collide convex object with a single triangle
inV0,inV1,inV2 | CCW triangle vertices |
inActiveEdges | bit 0 = edge v0..v1 is active, bit 1 = edge v1..v2 is active, bit 2 = edge v2..v0 is active An active edge is an edge that is not connected to another triangle in such a way that it is impossible to collide with the edge |
inSubShapeID2 | The sub shape ID for the triangle |
|
protected |
Bounds of the colliding shape in local space.
|
protected |
Bounds of the colliding shape in space of shape we're colliding with.
|
protected |
Buffer that holds the support function data excluding convex radius.
|
protected |
Buffer that holds the support function data including convex radius.
|
protected |
The collector that will receive the results.
|
protected |
Settings for this collision operation.
|
protected |
The scale of the shape (in shape local space) of the shape we're colliding with.
|
protected |
The scale of the shape (in shape local space) of the shape we're colliding against.
|
protected |
Sign of the scale of object 2, -1 if object is inside out, 1 if not.
|
protected |
The shape that we're colliding with.
|
protected |
Actual support function object excluding convex radius.
|
protected |
Actual support function object including convex radius.
|
protected |
Sub shape ID of colliding shape.
|
protected |
Transform of the shape we're colliding with.
|
protected |
Transform that takes a point in space of the colliding shape to the shape we're colliding with.