数学图形(1.2)Sin曲线

相关软件参见:数学图形可视化工具,使用自己定义语法的脚本代码生成数学图形.该软件免费开源.QQ交流群: 367752815

Sin曲线

vertices = 3600
x = from (-8*PI) to (8*PI)
y = sin(x)

震荡sin曲线

vertices = 3600
x = from (-8*PI) to (8*PI)
y = exp(abs(x)/8)*sin(x)

极限震荡sin曲线

vertices = 12000
x = from (-1) to 1
y = x*sin(1/x)
x = x*10
y = y*10

 

 SIN曲线的变异

#http://www.mathcurve.com/courbes2d/abdank/abdank.shtml

vertices = 10000

t = from (-10*PI) to (10*PI)

r = 1

y = r*sin(t)
x = r*r/2*(t + sin(t)*cos(t))

 面的形式:

vertices = D1:360 D2:100
u = from (-PI) to (PI) D1
v = from -4 to 4 D2
x = u
y = v*sin(x)

 

 

 

 

posted on 2014-07-04 12:35  叶飞影  阅读(2340)  评论(0编辑  收藏  举报