본문으로 건너뛰기

GetModelBoundBox

Overloads

NameDescription
GetModelBoundBox(string path)VIZ 파일의 BoundBox를 반환

GetModelBoundBox(string path)

public static BoundBox3D GetModelBoundBox(string path)

VIZ 파일의 BoundBox를 반환

Parameters

NameTypeDescription
pathstringVIZ 파일

Returns

TypeDescription
BoundBox3DBoundBox

Examples

// VIZCore3D.NET Control
private VIZCore3D.NET.VIZCore3DControl vizcore3d;

private void BoundBoxFromFile()
{
string path = "C:\\Model\\BLOCK.viz";

VIZCore3D.NET.Data.BoundBox3D boundBox
= VIZCore3D.NET.Manager.ModelManager.GetModelBoundBox(path);
}