Package jmt.engine.jaba.Hull

Examples of jmt.engine.jaba.Hull.Vertex


    for (int i = 0; i < lin.size(); i++) {

      coord = lin.get(i).getCoords();

      lout.addElement(new Vertex(coord[0], coord[1], coord[2])); //x,y,z
      lout.addElement(new Vertex(coord[0], 0, 0)); //x,0,0
      lout.addElement(new Vertex(coord[0], coord[1], 0)); //x,y,0
      lout.addElement(new Vertex(coord[0], 0, coord[2])); //x,0,z
      lout.addElement(new Vertex(0, coord[1], 0)); //0,y,0
      lout.addElement(new Vertex(0, coord[1], coord[2])); //0,y,z
      lout.addElement(new Vertex(0, 0, coord[2])); //0,0,z

    }

    return lout;
  }
View Full Code Here

TOP

Related Classes of jmt.engine.jaba.Hull.Vertex

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.