明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 822|回复: 0

求大神帮忙polyline顶点问题

[复制链接]
发表于 2015-7-21 18:49:24 | 显示全部楼层 |阅读模式
我想对polyline进行操作,目的是重新绘制polyline。给一个长度为n的Point3dCollection,polyline的顶点个数为l,当n>l时,增加polyline的顶点并重画,当n<l时,移除polyline顶点并重画。求大神指点错误,或是提供更好办法,感激不尽啊!!!!!!


if (t.GetObject(id, OpenMode.ForWrite) as Polyline != null)
                {
                    Polyline po = t.GetObject(id,OpenMode.ForWrite ) as Polyline;
                    int l = po.NumberOfVertices;
                    double bul = po.GetBulgeAt(1);
                    double str = po.GetStartWidthAt(1);
                    double end = po.GetEndWidthAt(1);
                    for (int i = 0; i < l; i++)
                    {
                        if (i < n)
                        {
                            Point2d p = new Point2d(arr.X, arr.Y);
                            po.SetPointAt(i, p);
                        }
                        else
                        {
                            po.RemoveVertexAt(i);
                        }
                    }
                    for (int i = l - 1; i < n; i++)
                    {
                        Point2d p = new Point2d(arr.X, arr.Y);
                        po.AddVertexAt(i, p, bul, str, end);
                    }
                }
t.Commit();
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 10:58 , Processed in 0.167670 second(s), 23 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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