pyvista.Rectangle#
- Rectangle(points=None)[ソース]#
3点で定義される矩形を作成します.
3点は直交するベクトル集合を定義する必要があります.
- パラメータ:
- pointsarray_like[
float
],optional
矩形の点.デフォルトはxy-planeの単位正方形です.
- pointsarray_like[
- 戻り値:
pyvista.PolyData
長方形のメッシュ.
例
>>> import pyvista as pv >>> pointa = [1.0, 0.0, 0.0] >>> pointb = [1.0, 1.0, 0.0] >>> pointc = [0.0, 1.0, 0.0] >>> rectangle = pv.Rectangle([pointa, pointb, pointc]) >>> rectangle.plot(show_edges=True, line_width=5)