コード例 #1
0
ファイル: BWCad12.cs プロジェクト: anielii/Acommands
 private Point3d GetInsertionPointBasedOnBarsLineCoordinates()
 {
     Line spanConstructionLine = new Line(spanPoint1, spanPoint2);
     Point3d closestPoint = spanConstructionLine.GetClosestPointTo(barPoint1, true);
     return closestPoint;
 }