贝壳形曲线

#http://curvebank.calstatela.edu/naturalcurves/slide7.jpg

vertices = 12000

t = from 0 to (2*PI)

r = 10*(0.7 + 2.6*cos(t) + 1.3*pow(sin(90*t), 3))

x = r*sin(t)
y = r*cos(t)

数学图形(1.43)贝壳形曲线与鱼形曲线

鱼形曲线

#http://www.2dcurves.com/quartic/quarticfi.html
vertices = 1000
t = from 0 to (2*PI)
x = cos(t) - sin(t)^2/sqrt(2)
y = 0.5*sin(2*t)
a = 10
x = x*a
y = y*a

数学图形(1.43)贝壳形曲线与鱼形曲线

 

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-28
  • 2022-12-23
  • 2021-12-11
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案