Package nu3a.math

Examples of nu3a.math.N3Matrix4D.rotate()


        matrix.mult(scaleMatrix);
        needScale = false;
      }
      if (needRotation) {
        N3Matrix4D rotationMatrix = new N3Matrix4D();
        rotationMatrix.rotate(angle, rotation);
        matrix.mult(rotationMatrix);
        needRotation = false;
      }
      if (needTranslation) {
        N3Matrix4D translationMatrix = 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.