明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 2439|回复: 6

[基础] 怎样获取多段线的点坐标并保存在数组里

[复制链接]
发表于 2015-5-8 15:24:16 | 显示全部楼层 |阅读模式
10明经币

发表于 2015-5-9 14:46:51 | 显示全部楼层
http://through-the-interface.typ ... terating_throu.html

另外,多段线有个coordinations属性查找一下
回复

使用道具 举报

 楼主| 发表于 2015-5-9 15:30:17 | 显示全部楼层
vectra 发表于 2015-5-9 14:46
http://through-the-interface.typepad.com/through_the_interface/2007/04/iterating_throu.html

另外, ...

网页不能看呀,怎么回事?
回复

使用道具 举报

 楼主| 发表于 2015-5-11 09:33:16 | 显示全部楼层
vectra 发表于 2015-5-9 14:46
http://through-the-interface.typepad.com/through_the_interface/2007/04/iterating_throu.html

另外, ...

学习了,谢谢
回复

使用道具 举报

 楼主| 发表于 2015-5-11 09:37:34 | 显示全部楼层
请问怎么设置最佳答案呀
回复

使用道具 举报

发表于 2015-5-11 12:09:54 | 显示全部楼层
  1. /// <summary>
  2.         /// 获取多段线的顶点
  3.         /// </summary>
  4.         /// <param name="pline">多段线对象</param>

  5.         public static Point3dCollection GetPolyPoints(this Polyline pline)
  6.         {
  7.             Point3dCollection pts = new Point3dCollection();
  8.             int i;
  9.             for (i = 0; i < pline.NumberOfVertices; i++)
  10.             {
  11.                 Point3d pt = pline.GetPoint3dAt(i);
  12.                 pts.Add(pt);
  13.             }
  14.             return pts;
  15.         }
复制代码
回复

使用道具 举报

 楼主| 发表于 2015-5-11 15:51:06 | 显示全部楼层
j15tty 发表于 2015-5-11 12:09

谢谢霍,知道了
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 11:44 , Processed in 0.156431 second(s), 20 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表