作者sjgau (sjgau)
看板Cad_Cae
标题叫AutoCAD画sin- 函数图形的程式
时间Wed Oct 12 16:19:09 2005
; for theta=0 to 360 step dt do
(setq no 100)
(setq theta 0.0 dt (/ 360.0 no))
(setq dt (+ dt (/ dt 10.0)))
(setvar "cmdEcho" 0)
(command "pline")
(while (<= theta 360.0)
(setq t1 (* (/ theta 180.0) pi))
(setq y1 (sin t1))
(command (list t1 y1))
(setq theta (+ theta dt))
); end of while()
(command "")
(princ)
; 後面是注解
我的部落格 破 5000纪念
http://myblog.pchome.com.tw/sjgau/
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 210.243.238.233