c# navisworks api 단면처리 사용하기(박스,평면)
①단면처리 박스 사용하기 //CenterPoint3D = 단면처리를 사용할 중심점. //meter = 현재 단면처리를 사용할 단면의 중심점에서 박스 크기의 1/2크기 //Enabled = 단면처리 사용 여부 //currView = 뷰포인트 publicvoid SetPlaneSectioningItem(Point3D CenterPoint3D, double meter, bool Enabled = true, Viewpoint currView = null) { currView.InternalClipPlanes.SetMode(API.Interop.LcOaClipPlaneSetMode.eMODE_BOX); //InternalClipPlanes는 숨겨진 프로퍼티이다. 모드를 박스 모드로 바꿔준다. Point3D min..