SectionBoundBox Property |
Namespace: VIZCore3D.NET.Data
// VIZCore3D.NET Control private VIZCore3D.NET.VIZCore3DControl vizcore3d; private void Example() { Data.Section section = vizcore3d.Section.SelectedItem; if (section == null) return; Data.BoundBox3D box = section.BoundBox; if (box == null) return; List<Data.Node> items = vizcore3d.Object3D.FromZone( box , Data.BoundBoxSearchOption.FullyContained ); }