码迷,mamicode.com
首页 > 其他好文 > 详细

数学图形(2.2)N叶结

时间:2014-07-14 09:47:28      阅读:358      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   2014   

上一节讲的三叶结,举一反三,由三可到无穷,这一节讲N叶结

再次看下三叶结的公式:

x = sin(t) + 2*sin(2*t)
y = cos(t) - 2*cos(2*t)

将其改为:

x = sin(t) + 2*sin((n-1)*t)
y = cos(t) - 2*cos((n-1)*t)

就变成了N叶结了,如此简单.

N叶结:

vertices = 12000

t = from 0 to (20*PI)

n = rand_int2(2, 24)

x = sin(t) + 2*sin(n*t - t)
y = cos(t) - 2*cos(n*t - t)
z = -sin(n*t)

r = 5;
x = x*r
y = y*r
z = z*r

bubuko.com,布布扣

另一种写法:

vertices = 12000

t = from 0 to (20*PI)

n = rand_int2(2, 24)

x = (2 + cos(n*t))*cos((n - 1)*t)
y = (2 + cos(n*t))*sin((n - 1)*t)
z = sin(n*t)

r = 5
x = x*r
y = y*r
z = z*r

bubuko.com,布布扣

 

四叶结

#http://www.mathcurve.com/courbes3d/noeuds/noeuddetrefle.shtml

vertices = 1000

t = from 0 to (2*PI)

r = 10;
x = r*(cos(t) + 2*cos(3*t))
z = r*(sin(t) - 2*sin(3*t))
y = r*sin(4*t)

bubuko.com,布布扣

 

数学图形(2.2)N叶结,布布扣,bubuko.com

数学图形(2.2)N叶结

标签:style   blog   http   color   os   2014   

原文地址:http://www.cnblogs.com/WhyEngine/p/3839982.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!