Package math

Examples of math.Vector4


  public javax.vecmath.Vector4d transformTo( javax.vecmath.Vector4d xyzw, ReferenceFrame to ) {
    return MathUtilities.multiply( xyzw, getTransformation( to ) );
  }
  public javax.vecmath.Vector3d transformTo( javax.vecmath.Vector3d xyz, ReferenceFrame to ) {
    return new Vector3( transformTo( new Vector4( xyz, 1 ), to ) );
  }
View Full Code Here

TOP

Related Classes of math.Vector4

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.