- 积分
- 55950
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2011-6-21
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
脚本程序:
- # Snack Jack pumpkin
- [X,Y,Z] = sphere(160)
- R = 1+(-(1-mod(arange(0,16.1,.1).reshape(1,-1),2))**2)/40+ \
- (-(1-mod(arange(0,32.1,.2).reshape(1,-1),2))**2)/40
- axes3d(aspect='equal', axis=None, axes_zoom=True)
- lighting()
- material([0.6,0.7,0.2,100,0.5])
- surf(R*X, R*Y, (.8+(0-arange(1,-1.01,-.0125).reshape(1,-1).T**4)*.3)*Z*R*1.2,
- facecolor='#e60', edgecolor=None)
-
- # Recycle the sphere coords for the stem.
- surf(X/15, Y/15, Z/2+.6, facecolor='#040', edgecolor=None)
|
|