Package cofh.repack.codechicken.lib.vec

Examples of cofh.repack.codechicken.lib.vec.RedundantTransformation


   * @throws IOException
   */
  public static Map<String, CCModel> parseObjModels(InputStream input, int vertexMode, Transformation coordSystem) throws IOException {

    if (coordSystem == null) {
      coordSystem = new RedundantTransformation();
    }
    int vp = vertexMode == 7 ? 4 : 3;

    HashMap<String, CCModel> modelMap = new HashMap<String, CCModel>();
    ArrayList<Vector3> verts = new ArrayList<Vector3>();
View Full Code Here

TOP

Related Classes of cofh.repack.codechicken.lib.vec.RedundantTransformation

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.