[求助]怎样画正余弦曲线?
我想用AutoCAD画出一段正余弦曲线,已知幅值是0.8mm,波长是4500mm。请问该怎么画呢? 本帖最后由 作者 于 2009-6-8 14:21:01 编辑 <br /><br /> <p>绘制函数曲线的vb程序</p><p></p><p></p><p>有问题请随时提出。</p> 有两种办法:1:编个LISP/VBA程序
2:用EXCEL生成点坐标,在ACAD中画线 你的幅值太小了,看起来可能向直线.
下面这个是用EXCEL+ACAD做的
谢谢指点!
我是初学AutoCAD,你教的方法我还不会,好学吗? <p>excel+CAD我会……</p><p>list怎样做到呢?</p><p>能不能给个例子呀</p><p>先多谢了</p><p></p> <p>以sinx为例,lisp程序如下:</p><p>(defun C:Psin() ;其中d是函数的步长<br/> (setq os(getvar "osmode"))<br/> (setvar "osmode" 0)<br/> (arxload "geomcal.arx")<br/> (setq s (getreal "\n输入初值:"))<br/> (setq e (getreal "\n输入终值:"))<br/> (setq d (getreal "\n输入步长:"))<br/> (setq i s)<br/> (while (<= i e)<br/> (setq x i)<br/> (setq y (cal "sin(x*180/pi)"))<br/> (if (= i s) (setq p1 (list x y))<br/> (progn (setq p2 (list x y))<br/> (command "_line" p1 p2 "")<br/> (setq p1 p2))<br/> )<br/> (setq i (+ i d))<br/> )<br/> (setvar "osmode" os)<br/>)</p> <p>厉害哦</p> <p>好,不错。</p><p></p>
页:
[1]