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
- CollidableStackCollidableStack
- PenetrationDirectionVector3
- Direction the test shape as to move towards for it to exit out of this particular manifold 
- PenetrationLengthfloat
- Distance 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; }