BEPUphysics.Constraints.TwoEntity.Joints.PointOnLineJoint.GetAngularJacobianA C# (CSharp) 메소드

GetAngularJacobianA() 공개 메소드

Gets the angular jacobian entry for the first connected entity.
public GetAngularJacobianA ( Vector3 &jacobianX, Vector3 &jacobianY ) : void
jacobianX Vector3 First angular jacobian entry for the first connected entity.
jacobianY Vector3 Second angular jacobian entry for the first connected entity.
리턴 void
        public void GetAngularJacobianA(out Vector3 jacobianX, out Vector3 jacobianY)
        {
            jacobianX = angularA1;
            jacobianY = angularA2;
        }