📜  使用 VPython 制作椭圆体

📅  最后修改于: 2022-05-13 01:55:07.912000             🧑  作者: Mango

使用 VPython 制作椭圆体

VPython可以轻松创建可导航的 3D 显示和动画,即使对于那些编程经验有限的人来说也是如此。因为它是基于Python的,所以它也为有经验的程序员和研究人员提供了很多东西。 VPython 允许用户在 3D 空间中创建球体和圆锥体等对象,并将这些对象显示在窗口中。这使得创建简单的可视化变得容易,使程序员可以更多地关注他们程序的计算方面。 VPython 的简单性使其成为说明简单物理的工具,尤其是在教育环境中。
安装 :

pip install vpython

椭圆体是三维空间中的几何对象,其中所有平面横截面都是椭圆或圆形,形成一个封闭的表面。我们可以使用 ellipsoid() 方法在 VPython 中生成一个椭圆体。

椭圆体()

示例 1:一个没有参数的椭球,所有参数都将具有默认值。

Python3
# import the module
from vpython import * ellipsoid()


Python3
# import the module
from vpython import * ellipsoid(color = vector(0.4, 0.2, 0.6),
          opacity = 0.5,
          shininess = 1,
          emissive = False)


Python3
# import the module
from vpython import *
 
# the first ellipsoid
ellipsoid(pos = vector(-2, 2, 0),
           length = 3,
           height = 2,
           width = 2,
           color = vector(1, 0.6, 0))
  
# the second ellipsoid
ellipsoid(pos = vector(1, -1, 5),
          width = 3,
           color = vector(0, 1, 0))


Python3
# import the module
from vpython import * ellipsoid(texture = textures.stucco,
          axis = vector(-1, 4, 0),
          up = vector(1, 2, 2),
          length = 3)


输出 :

示例 2:使用参数颜色、不透明度、光泽度和发射率的椭圆体。

Python3

# import the module
from vpython import * ellipsoid(color = vector(0.4, 0.2, 0.6),
          opacity = 0.5,
          shininess = 1,
          emissive = False)

输出 :

示例 3:显示 2 个椭圆体以可视化属性 pos、length、height 和 width。

Python3

# import the module
from vpython import *
 
# the first ellipsoid
ellipsoid(pos = vector(-2, 2, 0),
           length = 3,
           height = 2,
           width = 2,
           color = vector(1, 0.6, 0))
  
# the second ellipsoid
ellipsoid(pos = vector(1, -1, 5),
          width = 3,
           color = vector(0, 1, 0))

输出 :

示例 4:使用参数纹理、轴和向上的椭圆体。

Python3

# import the module
from vpython import * ellipsoid(texture = textures.stucco,
          axis = vector(-1, 4, 0),
          up = vector(1, 2, 2),
          length = 3)

输出 :