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;
        }