Package quickhull3d

Examples of quickhull3d.QuickHull3D.build()


      vectors[i+2] = v.z;
      i = i+3;
    }
   
    // build the hull
    hull.build(vectors);
       
    // extract faces from the QuickHull3D implementation
    Point3d[] points = hull.getVertices();
    int[][] faceIndices = hull.getFaces();
   
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.