博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
数学图形(1.10) 双曲线
阅读量:5112 次
发布时间:2019-06-13

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

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

双曲线有点麻烦,因为它是两条线,而我的程序逻辑中对于渲染只是处理一条线,所以在图形中会有多余的线出现,这不太漂亮,容我以后解决.而且双曲线上的顶点容易过大,造成无效的浮点数,这也要特殊处理.

双曲线(东西开口)

vertices = 12000t = from 0 to (2*PI)a = rand2(0.1, 10)b = rand2(0.1, 10)x = a*sec(t)y = b*tan(t)x = limit(x, -50, 50)y = limit(y, -50, 50)

双曲线(南北开口)

vertices = 12000t = from 0 to (2*PI)a = rand2(0.1, 10)b = rand2(0.1, 10)x = a*tan(t)y = b*sec(t)x = limit(x, -50, 50)y = limit(y, -50, 50)

双曲线2(东西开口)

vertices = 12000t = from (-2*PI) to (2*PI)a = rand2(0.1, 10)b = rand2(0.1, 10)x = a*cosh(t)y = b*sinh(t)x = limit(x, -50, 50)y = limit(y, -50, 50)

双曲线2(南北开口)

vertices = 12000t = from (-2*PI) to (2*PI)a = rand2(0.1, 10)b = rand2(0.1, 10)x = a*sinh(t)y = b*cosh(t)x = limit(x, -50, 50)y = limit(y, -50, 50)

圆锥双曲线

vertices = 12000t = from 0 to (2*PI)e = rand2(1, 8)p = rand2(0, 10)r = e*p / (1 - e*cos(t))x = r*sin(t)y = r*cos(t)x = limit(x, -25, 25)y = limit(y, -25, 25)

直角双曲线

vertices = 2000x = from -20 to 20y = 1/xy = limit(y, -20, 20)

 

vertices = D1:360 D2:100u = from -10 to 10 D1v = from -1 to 1 D2x = uy = v/xy = limit(y, -100, 100)v = v*5

双曲面(北开口)

vertices = D1:512 D2:100u = from (-2*PI) to (2*PI) D1v = from (0.1) to (10) D2x = v*sinh(u)y = cosh(u)x = limit(x, -50, 50)y = limit(y, -50, 50)

双曲面(东开口)

vertices = D1:512 D2:100u = from (-2*PI) to (2*PI) D1v = from (0.1) to (10) D2x = v*cosh(u)y = sinh(u)x = limit(x, -50, 50)y = limit(y, -50, 50)

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

你可能感兴趣的文章
python常用函数
查看>>
FastDFS使用
查看>>
服务器解析请求的基本原理
查看>>
[HDU3683 Gomoku]
查看>>
【工具相关】iOS-Reveal的使用
查看>>
数据库3
查看>>
存储分类
查看>>
下一代操作系统与软件
查看>>
【iOS越狱开发】如何将应用打包成.ipa文件
查看>>
[NOIP2013提高组] CODEVS 3287 火车运输(MST+LCA)
查看>>
Yii2 Lesson - 03 Forms in Yii
查看>>
Python IO模型
查看>>
Ugly Windows
查看>>
DataGridView的行的字体颜色变化
查看>>
Java再学习——关于ConcurrentHashMap
查看>>
如何处理Win10电脑黑屏后出现代码0xc0000225的错误?
查看>>
局域网内手机访问电脑网站注意几点
查看>>
[Serializable]的应用--注册码的生成,加密和验证
查看>>
Day19内容回顾
查看>>
第七次作业
查看>>