ReviewHelperGetVertexByBoundBox Method |
Namespace: VIZCore3D.NET.Utility
public static List<Vertex3D> GetVertexByBoundBox( ReviewItem item )
// VIZCore3D.NET Control private VIZCore3D.NET.VIZCore3DControl vizcore3d; private void Example() { List<int> nodeIndex = new List<int>(0); int id = vizcore3d.Review.Measure.AddCustomBoundBox(nodeIndex); Data.ReviewItem item = vizcore3d.Review.GetItem(id); // [바운드박스] Review 의 Vertex 값 반환 List<Data.Vertex3D> vertices = Utility.ReviewHelper.GetVertexByBoundBox(item); // Some code here... }