BEPUphysics.Constraints.SolverGroups.LineSliderJoint.LineSliderJoint C# (CSharp) Метод

LineSliderJoint() публичный Метод

Constructs a new constraint which restricts two degrees of linear freedom and two degrees of angular 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 LineSliderJoint ( ) : BEPUphysics.Constraints.TwoEntity
Результат BEPUphysics.Constraints.TwoEntity
        public LineSliderJoint()
        {
            IsActive = false;
            PointOnLineJoint = new PointOnLineJoint();
            AngularJoint = new RevoluteAngularJoint();
            Limit = new LinearAxisLimit();
            Motor = new LinearAxisMotor();
            Add(PointOnLineJoint);
            Add(AngularJoint);
            Add(Limit);
            Add(Motor);
        }

Same methods

LineSliderJoint::LineSliderJoint ( Entity connectionA, Entity connectionB, Microsoft.Xna.Framework.Vector3 lineAnchor, Microsoft.Xna.Framework.Vector3 lineDirection, Microsoft.Xna.Framework.Vector3 pointAnchor ) : BEPUphysics.Constraints.TwoEntity
LineSliderJoint