Struct OverlapInfoStack
- Namespace
- Stride.BepuPhysics
- Assembly
- Stride.BepuPhysics.dll
Unmanaged low level information about an overlap test
public readonly record struct OverlapInfoStack : IEquatable<OverlapInfoStack>
- Implements
- Inherited Members
Constructors
OverlapInfoStack(CollidableStack, Vector3, float)
Unmanaged low level information about an overlap test
public OverlapInfoStack(CollidableStack CollidableStack, Vector3 PenetrationDirection, float PenetrationLength)
Parameters
CollidableStack
CollidableStackPenetrationDirection
Vector3Direction the test shape as to move towards for it to exit out of this particular manifold
PenetrationLength
floatDistance the test shape as to move towards for it to exit out of this particular manifold
Properties
CollidableStack
public CollidableStack CollidableStack { get; init; }
Property Value
PenetrationDirection
Direction the test shape as to move towards for it to exit out of this particular manifold
public Vector3 PenetrationDirection { get; init; }
Property Value
PenetrationLength
Distance the test shape as to move towards for it to exit out of this particular manifold
public float PenetrationLength { get; init; }