Package nu3a.math

Examples of nu3a.math.N3Matrix4D.translate()


        matrix.mult(rotationMatrix);
        needRotation = false;
      }
      if (needTranslation) {
        N3Matrix4D translationMatrix = new N3Matrix4D();
        translationMatrix.translate(translation);
        matrix.mult(translationMatrix);
        needTranslation = false;
      }
      setDirty();
    }
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.