Package cofh.repack.codechicken.lib.render.uv

Examples of cofh.repack.codechicken.lib.render.uv.UVTranslation


    return this;
  }

  public void render(double x, double y, double z, double u, double v) {

    render(new Vector3(x, y, z).translation(), new UVTranslation(u, v));
  }
View Full Code Here


    render(new Vector3(x, y, z).translation(), u);
  }

  public void render(Transformation t, double u, double v) {

    render(t, new UVTranslation(u, v));
  }
View Full Code Here

TOP

Related Classes of cofh.repack.codechicken.lib.render.uv.UVTranslation

Copyright © 2018 www.massapicom. 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.