BEPUphysics.Constraints.SolverGroups.PlaneSliderJoint.PlaneSliderJoint C# (CSharp) Method

PlaneSliderJoint() public method

Constructs a new constraint which restricts one linear degree of freedom between two entities. This constructs the internal constraints, but does not configure them. Before using a constraint constructed in this manner, ensure that its active constituent constraints are properly configured. The entire group as well as all internal constraints are initially inactive (IsActive = false).
public PlaneSliderJoint ( ) : BEPUphysics.Constraints.TwoEntity
return BEPUphysics.Constraints.TwoEntity
        public PlaneSliderJoint()
        {
            IsActive = false;
            PointOnPlaneJoint = new PointOnPlaneJoint();
            LimitX = new LinearAxisLimit();
            MotorX = new LinearAxisMotor();
            LimitY = new LinearAxisLimit();
            MotorY = new LinearAxisMotor();

            Add(PointOnPlaneJoint);
            Add(LimitX);
            Add(MotorX);
            Add(LimitY);
            Add(MotorY);
        }

Same methods

PlaneSliderJoint::PlaneSliderJoint ( Entity connectionA, Entity connectionB, Microsoft.Xna.Framework.Vector3 planeAnchor, Microsoft.Xna.Framework.Vector3 planeNormal, Microsoft.Xna.Framework.Vector3 xAxis, Microsoft.Xna.Framework.Vector3 yAxis, Microsoft.Xna.Framework.Vector3 pointAnchor ) : BEPUphysics.Constraints.TwoEntity
PlaneSliderJoint