博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数学图形(1.44)超圆
阅读量:5013 次
发布时间:2019-06-12

本文共 1163 字,大约阅读时间需要 3 分钟。

超圆是什么?

找了很久也没找到其正式中文定义.

维基上的定义为:

那我用自己的话说吧,

超圆就是方程式x^a+y^b= c所生成的图形.当a==b==2时,为一个圆.

超椭圆是m*x^a+n*y^b= c所生成的图形.当a==b==2时,为一个椭圆.

前面写的就是一种超圆.

 

超圆脚本代码1

vertices = 1000r = 10.0t = from 0 to (2*PI)s = rand2(0.1, 10)x = r*pow_sign(sin(t), s)y = r*pow_sign(cos(t), s)

超圆脚本代码2

vertices = 1000r = 10.0t = from 0 to (2*PI)a = rand2(0.1, 10)b = rand2(0.1, 10)x = r*pow_sign(sin(t), a)y = r*pow_sign(cos(t), b)

超椭圆脚本代码1

vertices = 1000r = 10.0t = from 0 to (2*PI)s = rand2(0.1, 10)w = rand2(0.2, 5)x = r*pow_sign(sin(t), s)y = r*w*pow_sign(cos(t), s)

超椭圆脚本代码2

vertices = 1000r = 10.0t = from 0 to (2*PI)a = rand2(0.1, 10)b = rand2(0.1, 10)w = rand2(0.2, 5)x = r*pow_sign(sin(t), a)y = r*w*pow_sign(cos(t), b)

 

超圆面

vertices = D1:1000 D2:100u = from 0 to (2*PI) D1v = from 0 to (10) D2r = 10.0x = r*pow_sign(sin(u), v)y = r*pow_sign(cos(u), v)

超椭圆面

vertices = D1:1000 D2:100u = from 0 to (2*PI) D1v = from 0 to (10) D2r = 10.0w = rand2(0.2, 5)x = r*pow_sign(sin(u), v)y = r*w*pow_sign(cos(u), v)

 

有种曲线名为kiss curve也是超圆的一种:

#http://www.2dcurves.com/sextic/sextick.htmlvertices = 2000t = from 0 to (2*PI)x = sin(t)y = pow(cos(t), 3)

转载于:https://www.cnblogs.com/WhyEngine/p/3844138.html

你可能感兴趣的文章
Apache2.4使用require指令进行访问控制
查看>>
冗余关系_并查集
查看>>
做最好的自己(Be Your Personal Best)
查看>>
如何搭建github+hexo博客-转
查看>>
HW2.2
查看>>
将Windows Server 2016 打造成工作站(20161030更新)
查看>>
5大主浏览器css3和html5兼容性大比拼
查看>>
hdu-5894 hannnnah_j’s Biological Test(组合数学)
查看>>
scss常规用法
查看>>
css定位position属性深究
查看>>
android中不同版本兼容包的区别
查看>>
Static 与 new 的问题【待解决】
查看>>
xml
查看>>
在 mvc4 WebApi 中 json 的 跨域访问
查看>>
敏捷开发文章读后感
查看>>
xposed获取context 的方法
查看>>
html5 canvas 图像处理
查看>>
He who hesitates is Lost
查看>>
php中引用&的真正理解-变量引用、函数引用、对象引用
查看>>
关于<form> autocomplete 属性
查看>>