public void ProjSliceTo2d() { foreach (MyVector3 vert in slicePoints3d) { MyVector3 point = frame.GetPointLocalCoord(vert); slicePoints2d.Add(point.XY()); } }
public void ProjCornerTo2d() { foreach (MyVector3 vert in cornerPoints3d) { MyVector3 point = frame.GetPointLocalCoord(vert); cornerPoints2d.Add(point.XY()); } }
public void ProjCenterTo2d() { MyVector3 tmp = frame.GetPointLocalCoord(center); center2d = tmp.XY(); }