BEPUphysics.Constraints.TwoEntity.Motors.AngularMotor.GetAngularJacobianB C# (CSharp) Метод

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

Gets the angular jacobian entry for the second connected entity.
public GetAngularJacobianB ( System.Vector3 &jacobianX, System.Vector3 &jacobianY, System.Vector3 &jacobianZ ) : void
jacobianX System.Vector3 First angular jacobian entry for the second connected entity.
jacobianY System.Vector3 Second angular jacobian entry for the second connected entity.
jacobianZ System.Vector3 Third angular jacobian entry for the second connected entity.
Результат void
        public void GetAngularJacobianB(out Vector3 jacobianX, out Vector3 jacobianY, out Vector3 jacobianZ)
        {
            jacobianX = Toolbox.RightVector;
            jacobianY = Toolbox.UpVector;
            jacobianZ = Toolbox.BackVector;
        }