沿现有边界创建参考多段线(AutoCAD.NET API)
问候上一种获取多段线到点集合距离的方法:
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) < 20)
{
if (roadLines.Angle == lotline.Angle)
{
bocPolyline.AddVertexAt(i, foundIntPoints.Convert2d(plane), 0.0, 0.0, 0.0);
}
}
}
return bocPolyline;
}
顺便说一句-我知道.Angle调用不是真的,为了简单起见,我将其包括在内<我将非常感谢任何人在这方面的帮助。如果我的问题有一部分需要更多的背景,请告诉我。谢谢。
**** Hidden Message *****
页:
[1]