BEPUphysics.Constraints.TwoEntity.JointLimits.LinearAxisLimit.LinearAxisLimit C# (CSharp) Method

LinearAxisLimit() public method

Constructs a constraint which tries to keep anchors on two entities within a certain distance of each other along an axis. To finish the initialization, specify the connections (ConnectionA and ConnectionB) as well as the AnchorA, AnchorB, and Axis (or their entity-local versions), and the Minimum and Maximum. This constructor sets the constraint's IsActive property to false by default.
public LinearAxisLimit ( ) : System
return System
        public LinearAxisLimit()
        {
            IsActive = false;
        }

Same methods

LinearAxisLimit::LinearAxisLimit ( Entity connectionA, Entity connectionB, System.Vector3 anchorA, System.Vector3 anchorB, System.Vector3 axis, float minimum, float maximum ) : System