问候
上一种获取多段线到点集合距离的方法:
- protected Polyline createBOCReferencePolyline(Polyline roadLines, Polyline lotline, Point3dCollection foundIntPoints)
- {
- Polyline bocPolyline = new Polyline();
- var plane = new Plane(Point3d.Origin, Vector3d.ZAxis);
-
- for (int i = 0; i < foundIntPoints.Count; i++)
- {
- if (roadLines.(foundIntPoints[i]) < 20)
- {
- if (roadLines.Angle == lotline.Angle)
- {
- bocPolyline.AddVertexAt(i, foundIntPoints[i].Convert2d(plane), 0.0, 0.0, 0.0);
- }
- }
- }
- return bocPolyline;
- }
顺便说一句-我知道.Angle调用不是真的,为了简单起见,我将其包括在内<我将非常感谢任何人在这方面的帮助。如果我的问题有一部分需要更多的背景,请告诉我。谢谢。
本帖以下内容被隐藏保护;需要你回复后,才能看到! 游客,如果您要查看本帖隐藏内容请 回复 |