Package fcagnin.jglsdk.glm

Examples of fcagnin.jglsdk.glm.Mat4.clear()


  }
 
  public void scale(float x, float y, float z) {
    Mat4 mat = new Mat4();
   
    mat.clear(0);
    mat.set(0, x);
    mat.set(5, y);
    mat.set(10, z);
    mat.set(15, 1);
View Full Code Here


 
  public void translate(float x, float y, float z) {
    Mat4 mat = new Mat4();

    mat.clear(1);
    mat.set(12, x);
    mat.set(13, y);
    mat.set(14, z);

    currentMatrix.mul(mat);
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.