基本的な幾何学的オブジェクトを作成します

基本的な幾何学的オブジェクトを作成します#

これは,PyVistaの "Hello, world!" です.

import pyvista as pv

これは,VTKで利用可能ないくつかのジオメトリックオブジェクトを介して実行され,PyVistaは生成するための簡単で便利なメソッドを提供します.

ジオメトリオブジェクトをいくつか作成してみましょう!

ここで,すべてを1つのウィンドウにプロットします.

p = pv.Plotter(shape=(3, 3))
# Top row
p.subplot(0, 0)
p.add_mesh(cyl, color="tan", show_edges=True)
p.subplot(0, 1)
p.add_mesh(arrow, color="tan", show_edges=True)
p.subplot(0, 2)
p.add_mesh(sphere, color="tan", show_edges=True)
# Middle row
p.subplot(1, 0)
p.add_mesh(plane, color="tan", show_edges=True)
p.subplot(1, 1)
p.add_mesh(line, color="tan", line_width=3)
p.subplot(1, 2)
p.add_mesh(box, color="tan", show_edges=True)
# Bottom row
p.subplot(2, 0)
p.add_mesh(cone, color="tan", show_edges=True)
p.subplot(2, 1)
p.add_mesh(poly, color="tan", show_edges=True)
p.subplot(2, 2)
p.add_mesh(disc, color="tan", show_edges=True)
# Render all of them
p.show()
# Export this plotter as an interactive scene to a HTML file.
# p.export_html("a_basic.html")
a basic
Open In Colab

Total running time of the script: (0 minutes 3.696 seconds)

Sphinx-Galleryによるギャラリー