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

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

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