SectionGetObject3D Method |
Namespace: VIZCore3D.NET.Data
public List<Node> GetObject3D( BoundBoxSearchOption option )
// VIZCore3D.NET Control private VIZCore3D.NET.VIZCore3DControl vizcore3d; private void Example() { Data.Section section = vizcore3d.Section.SelectedItem; if (section == null) return; List<Data.Node> items = section.GetObject3D(Data.BoundBoxSearchOption.FullyContained); } private void Example2() { Data.Section section = vizcore3d.Section.SelectedItem; if (section == null) return; if (section.SectionType != Manager.SectionManager.SectionTypes.SECTION_BOX) return; Data.BoundBox3D box = section.BoundBox; if (box == null) return; List<Data.Node> items = vizcore3d.Object3D.FromZone(box, Data.BoundBoxSearchOption.FullyContained); }