inters除了这个函数还有其他可代替的吗?
我最近经常用 inters 这个函数
(setq xxx (inters 点1 点2 点3 点4))
但是发现个问题 检查4个点 都有座标 但有的时候不知道因为什么 xxx=nil 就会导致有问题
请问 求交点的函数 还有别的吗? vlisp 也行
Examples
(setq a '(1.0 1.0) b '(9.0 9.0))
(setq c '(4.0 1.0) d '(4.0 2.0))
Command: (inters a b c d)
nil
Command: (inters a b c d T)
nil
Command: (inters a b c d nil)
(4.0 4.0)
个人建议
类似《AutoLisp Vlisp 函数.chm》这样的函数帮助文件
楼主一定要准备至少一个
有问题就先查帮助文件
没问题有时间就逐个函数阅读
学问学问
学了再问
页:
[1]