随笔 - 373  文章 - 1  评论 - 771  阅读 - 137万

数学图形之罗马曲面(RomanSurface)

罗马曲面,像是一个被捏扁的正四面体.

本文将展示罗马曲面的生成算法和切图,使用自己定义语法的脚本代码生成数学图形.相关软件参见:数学图形可视化工具,该软件免费开源.QQ交流群: 367752815

维基上关于罗马曲面的解释如下:

The Roman surface or Steiner surface (so called because Jakob Steiner was in Rome when he thought of it) is a self-intersecting mapping of the real projective plane into three-dimensional space, with an unusually high degree of symmetry. This mapping is not an immersion of the projective plane; however, the figure resulting from removing six singular points is one.

The simplest construction is as the image of a sphere centered at the origin under the map f(x,y,z) = (yz,xz,xy). This gives an implicitformula of

 x^2 y^2 + y^2 z^2 + z^2 x^2 - r^2 x y z = 0. \,

Also, taking a parametrization of the sphere in terms of longitude (θ) and latitude (φ), gives parametric equations for the Roman surface as follows:

x = r2 cos θ cos φ sin φ
y = r2 sin θ cos φ sin φ
z = r2 cos θ sin θ cos2 φ.

罗马曲面脚本代码:

复制代码
#http://www.ipfw.edu/departments/coas/depts/math/coffman/steinersurface.html
#Steiner's Roman Surface. Three double lines, six pinch points, and a triple point.
#plot3d([r^2*sin(t)*cos(t), r*sin(t)*(1-r^2)^(1/2), r*cos(t)*(1-r^2)^(1/2)], r=0..1, t=0..2*Pi, numpoints=2500)

vertices = D1:160 D2:80
u = from 0 to (PI) D1
v = from 0 to (PI) D2

a = sin(u)
b = cos(u)

c = sin(v)
d = cos(v)

r = 5.0

x = r*r*b*d*c
y = r*r*a*d*c
z = r*r*b*a*d*d
复制代码

我还找到几个与罗马曲面相关的图形

The three double lines of Steiner's Roman Surface coincide

1
2
3
4
5
6
7
8
9
10
11
vertices = D1:100 D2:100
t = from 0 to (PI*2) D1
r = from 0 to 1 D2
 
y = 1-r^2+(r^2)*(sin(t)^2)
x = (r^2)*(sin(t)^2) + 2*(r^2)*sin(t)*cos(t)
z = sqrt((1-r^2)/2) * r * (sin(t)+cos(t))
 
x = x*5
y = y*5
z = z*5

Two of the three double lines in Steiner's Roman Surface

1
2
3
4
5
6
7
8
9
10
11
vertices = D1:100 D2:100
t = from 0 to (PI*2) D1
r = from 0 to 1 D2
 
x = 2*r*cos(t)*sqrt(1-r^2)
y = 2*r*sin(t)*sqrt(1-r^2)
z = 1-2*r*r*(cos(t)^2)
 
x = x*5
y = y*5
z = z*5

 

posted on   叶飞影  阅读(3150)  评论(0编辑  收藏  举报
编辑推荐:
· go语言实现终端里的倒计时
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

点击右上角即可分享
微信分享提示