明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
12
返回列表 发新帖
楼主: torcky

[原创]比较两多义线图元是否相同

  [复制链接]
发表于 2005-10-30 00:07:00 | 显示全部楼层
比较两个多义线是否“相同”,包括旋转或者镜像后的
  1. (defun sampl (e1 e2 / getinfo getdis)
  2.   (defun getinfo (lst)
  3.     (vl-remove-if-not
  4.       (function
  5.     (lambda (x) (vl-position (car x) '(39 40 41 42 43)))
  6.       )
  7.       lst
  8.     )
  9.   )
  10.   (defun getdis    (e / n m dl)
  11.     (setq n (fix (vlax-curve-getendparam e))
  12.       m 0.
  13.     )
  14.     (repeat n
  15.       (setq dl (cons (vlax-curve-getdistatparam e m) dl)
  16.         m  (1+ m)
  17.       )
  18.     )
  19.     dl
  20.   )
  21.   (if (and (= (vlax-curve-getendparam e1) (vlax-curve-getendparam e2))
  22.        (= (vlax-curve-isclosed e1) (vlax-curve-isclosed e2))
  23.       )
  24.     (and (equal (getinfo (entget e1)) (getinfo (entget e2)) 1e-10)
  25.      (equal (getdis e1) (getdis e2) 1e-7)
  26.     )
  27.   )
  28. )
发表于 2007-1-18 10:38:00 | 显示全部楼层
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

GMT+8, 2024-11-25 10:12 , Processed in 0.151582 second(s), 17 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

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