Ejemplo n.º 1
0
 private void GetLocalPointsInCuboid(BoundingCuboid cuboid, ref List <Point3Int <T> > points)
 {
     for (int i = 0; i < Points.Length; i++)
     {
         if (cuboid.ContainsPoint(Points[i].Point))
         {
             points.Add(Points[i]);
         }
     }
 }