Package edu.cmu.cs.stage3.math

Examples of edu.cmu.cs.stage3.math.Matrix44.rotate()


  public void rotate( javax.vecmath.Vector3d axis, double amount, ReferenceFrame asSeenBy ) {
    if( asSeenBy==null ) {
      asSeenBy = this;
    }
    Matrix44 m = getTransformation( asSeenBy );
    m.rotate( axis, amount );
    setTransformation( m, asSeenBy );
  }
  public void scale( javax.vecmath.Vector3d axis, ReferenceFrame asSeenBy ) {
    if( asSeenBy==null ) {
      asSeenBy = this;
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.