AutoCAD绘图中的各种曲线参数方程
- 文件介绍:
- 该文件为 doc 格式,下载需要 1 积分
- AutoCAD绘图中的各种曲线参数方程
1.碟形弹簧
(柱坐标)
方程:r = 5
theta = t*3600
z =(sin(3.5*theta-90))+24*t
2.葉形线.
方程:a=10
x=3*a*t/(1+(t^3))
y=3*a*(t^2)/(1+(t^3))
3.锥形螺旋线(Helical curve)
方程: r=t
theta=10+t*(20*360)
z=t*3
4. 蝴蝶曲线
(球坐标)
方程:rho = 8 * t
theta = 360 * t * 4
phi = -360 * t * 8
5.渐开线
方程:r=1
ang=360*t
s=2*pi*r*t
x0=s*cos(ang)
y0=s*sin(ang)
x=x0+s*sin(ang)
y=y0-s*cos(ang)
z=0
(相似形:69、78)
...