📜  用 VPython 制作箭头

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

用 VPython 制作箭头

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

安装 :

pip install vpython

箭头是三维空间中的几何对象,它是具有尖端的直线(或长方体)。我们可以使用arrow()方法在VPython中生成一个箭头。

箭()

示例 1:没有参数的箭头,所有参数都将具有默认值。

# import the module
from vpython import * arrow()

输出 :

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

# import the module
from vpython import * arrow(color = vector(0, 1, 0), 
      opacity = 0.5, 
      shininess = 1, 
      emissive = False)

输出 :

示例 3:显示 2 个箭头以可视化属性 pos、shaftwidth、headwidth 和 headlength。

# import the module
from vpython import *
  
# the first arrow
arrow(pos = vector(-3, 1, 0),
      shaftwidth = 1,
      headwidth = 1,
      headlength = 2,
      color = vector(0, 1, 0))
  
# the second arrow
arrow(pos = vector(0, -1, 0),
      color = vector(1, 1, 0))

输出 :

示例 4:使用参数轴和向上的箭头。

# import the module
from vpython import * arrow(pos = vector(-2, 0, 0),
      color = vector(1, 0, 1),
      axis = vector(1, 2, 2),
      up = vector(-1, 5, 2))

输出 :