Class ConeLimit
- Namespace
- Jitter2.Dynamics.Constraints
- Assembly
- Jitter2.dll
Limits the relative tilt between two bodies, removing one angular degree of freedom when active.
public class ConeLimit : Constraint<ConeLimit.ConeLimitData>, IDebugDrawable
- Inheritance
-
ConeLimit
- Implements
- Inherited Members
Properties
Angle
Gets the current angle between the two body axes.
public JAngle Angle { get; }
Property Value
AxisBody1
Gets or sets the reference axis of body 1 in world space.
public JVector AxisBody1 { get; set; }
Property Value
Exceptions
- ArgumentException
Thrown when the assigned value is zero or contains a non-finite value.
AxisBody2
Gets or sets the reference axis of body 2 in world space.
public JVector AxisBody2 { get; set; }
Property Value
Exceptions
- ArgumentException
Thrown when the assigned value is zero or contains a non-finite value.
Bias
Gets or sets the bias factor controlling how aggressively angular error is corrected.
public float Bias { get; set; }
Property Value
- float
Default is 0.2. Higher values correct errors faster but may cause instability.
Impulse
Gets the accumulated impulse applied by this constraint during the last step.
public float Impulse { get; }
Property Value
Limit
Gets or sets the angular limit of the cone.
public AngularLimit Limit { get; set; }
Property Value
Exceptions
- ArgumentOutOfRangeException
Thrown when the assigned limit is outside the range [0, pi], or when its upper value is smaller than its lower value.
Softness
Gets or sets the softness (compliance) of the constraint.
public float Softness { get; set; }
Property Value
- float
Default is 0.001. Higher values allow more angular error but improve stability.
Methods
Create()
Sets the solver dispatch id used by this instance. Override this in derived classes to assign the correct registered solver pair. The id is later written into the unmanaged header when the constraint is enabled.
protected override void Create()
DebugDraw(IDebugDrawer)
Draws a debug visualization of this constraint.
public override void DebugDraw(IDebugDrawer drawer)
Parameters
drawerIDebugDrawerThe debug drawer to receive visualization primitives.
Exceptions
- NotImplementedException
Thrown if the derived class does not override this method.
Initialize(JVector, AngularLimit)
Initializes the cone limit using a world-space axis and an angular range.
public void Initialize(JVector axis, AngularLimit limit)
Parameters
axisJVectorThe reference axis in world space for the initial pose.
limitAngularLimitThe minimum and maximum allowed tilt angles.
Remarks
Stores the axis as a local axis on each body. The constraint measures the angle between these axes and restricts it to the given range. Default values: Softness = DefaultAngularSoftness, Bias = DefaultAngularBias.
Exceptions
- ArgumentException
Thrown when
axisis zero or contains a non-finite value.- ArgumentOutOfRangeException
Thrown when
limitis outside the range [0, pi], or when its upper value is smaller than its lower value.
Initialize(JVector, JVector, AngularLimit)
Initializes the cone limit using two world-space axes and an angular range.
public void Initialize(JVector axisBody1, JVector axisBody2, AngularLimit limit)
Parameters
axisBody1JVectorThe reference axis for body 1 in world space.
axisBody2JVectorThe reference axis for body 2 in world space.
limitAngularLimitThe minimum and maximum allowed tilt angles.
Remarks
Each axis is stored as a local axis on the corresponding body. The constraint measures the angle between these axes and restricts it to the given range. Default values: Softness = DefaultAngularSoftness, Bias = DefaultAngularBias.
Exceptions
- ArgumentException
Thrown when
axisBody1oraxisBody2is zero or contains a non-finite value.- ArgumentOutOfRangeException
Thrown when
limitis outside the range [0, pi], or when its upper value is smaller than its lower value.
IterateConeLimit(ref ConstraintData, float)
public static void IterateConeLimit(ref ConstraintData constraint, float idt)
Parameters
constraintConstraintDataidtfloat
PrepareForIterationConeLimit(ref ConstraintData, float)
public static void PrepareForIterationConeLimit(ref ConstraintData constraint, float idt)
Parameters
constraintConstraintDataidtfloat
ResetWarmStart()
Resets the cached warm-start state used by the solver for this constraint.
public override void ResetWarmStart()
Remarks
This clears only persistent solver impulses. Constraint configuration remains unchanged. Useful after restoring snapshots or other discontinuous state changes where preserving warm-starting is undesirable.