GetOutsidePart
Overloads
| Name | Description |
|---|---|
| GetOutsidePart(bool selection) | 외형 검색 |
GetOutsidePart(bool selection)
public List<Node> GetOutsidePart(bool selection)
외형 검색
Parameters
| Name | Type | Description |
|---|---|---|
| selection | bool | 검색 후 개체 선택 여부 |
Returns
| Type | Description |
|---|---|
| List<Node> | 외형 검색 결과 노드 목록 |
Examples
private VIZCore3D.NET.VIZCore3DControl vizcore3d;
private void ExportOutside()
{
if (vizcore3d.Model.IsOpen() == false) return;
List<VIZCore3D.NET.Data.Node> items =
vizcore3d.Object3D.Find.GetOutsidePart(true);
string path = "C:\\Model\\Outside.viz";
bool result = vizcore3d.Model.ExportVIZ(path, items);
if (result == false) return;
VIZCore3D.NET.Utility.ExplorerHelper.Show(path);
}