摘要: http://www.objectarx.net/forum.php?mod=forumdisplay&fid=18&page=2 阅读全文
posted @ 2012-09-13 15:47 晴天有时下鱼 阅读(4166) 评论(0) 推荐(0) 编辑
摘要: 我自己写了一个判断两条多段线重叠的算法。希望大家给点意见或建议。以下为源码:// 判断两条多段线是否重叠//// 返回值:-1——(pl1<pl2)// 0——(pl1=pl2)// 1——(pl1>pl2)int PlineOverlap(AcDbPolyline* pl1, AcDbPolyline* pl2){ int rtn1(1), rtn2(1); Acad::ErrorStatus es1, es2; AcGePoint3d pt1, pt2; double param1(0), param2(0); int i,j;... 阅读全文
posted @ 2012-09-13 15:40 晴天有时下鱼 阅读(1057) 评论(0) 推荐(0) 编辑
摘要: http://blog.sina.com.cn/gmywelcome 阅读全文
posted @ 2012-09-13 15:31 晴天有时下鱼 阅读(132) 评论(0) 推荐(0) 编辑