示例#1
0
 public QuickHull(PointsArray3 points)
 {
     mPoints = points;
     mPoints.Distinct();
     mVertexCount         = mPoints.Size();
     mTrianglePlanePoints = new List <QHullTrianglePlanePoints>();
 }
示例#2
0
 public void BuildHull()
 {
     if (mPoints.Size() < 4)
     {
         return;
     }
     Build();
     CleanTrianglePlaneList();
 }