shirazbj 发表于 2013-6-8 21:02:00

sieben 发表于 2013-6-8 18:17 static/image/common/back.gif
多少段都一样,不过要看具体情况的,假如中间点比两端点还靠外,就不适用了。
方法3比较稳妥,但要求曲线是 ...

比如顶角打开的三角形。不适用。

方法3得想想怎么编。

目前用手工pedit结果比较满意。desk的论坛里有人介绍了用发送字串的方法让程序自动执行pedit. 还有个什么geometryextend.dll可用。需要研究一下。

sieben 发表于 2013-6-8 22:46:56

方法3
Point3dCoolection pClt1
foreach (ObjectId tId in SeclectIds)
{
open tId as Curve tCur
pClt1.Add(tCur.StartPoint)
pClt1.Add(tCur.EndPoint)
}

Point3dCoolection pClt2
for(int i = 0 ; i < pClt1.Count ; i ++)
{
bool isEndPoint = true;
for(int j = i+1 ; j < pClt1.Count ; j ++)
{
if ( pClt1.IsEqualTo( pClt1))
{
isEndPoint = false; break;
}

}

if ( isEndPoint)
{
pClt2.Add(pClt1);
}
}
pClt2 里面的就是线头点
页: 1 [2]
查看完整版本: 如何找线头?