Package nu3a.math

Examples of nu3a.math.N3Matrix4D.scale()


  public void update() {
    if (needScale || needRotation || needTranslation) {
      lastMatrix.setData(matrix);
      if (needScale) {
        N3Matrix4D scaleMatrix = new N3Matrix4D();
        scaleMatrix.scale(scale);
        matrix.mult(scaleMatrix);
        needScale = false;
      }
      if (needRotation) {
        N3Matrix4D rotationMatrix = new N3Matrix4D();
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.