dipenghao 发表于 2011-9-21 09:07:58

如何遍历PolyLine多段线顶点坐标????

如题 得到多段线的顶点坐标

chengw 发表于 2011-9-21 10:01:16

                     Point3dCollection pts = new Point3dCollection();
                        int vn = lwp.NumberOfVertices;//lwp已知的多段线
                        for (int i = 0; i < vn; i++)
                        {
                           Point2d pt = lwp.GetPoint2dAt(i);
                              pts.Add(new Point3d(pt.X, pt.Y, 0));//将顶点坐标放入集合中
                        }
      希望能帮到你。。。

lyq999999 发表于 2011-9-21 11:27:42

二楼的方法应该可以。。回头试试

dipenghao 发表于 2011-9-21 11:46:21

多谢 已经找到
页: [1]
查看完整版本: 如何遍历PolyLine多段线顶点坐标????