pyvista.Plane#
- Plane(center=(0.0, 0.0, 0.0), direction=(0.0, 0.0, 1.0), i_size=1, j_size=1, i_resolution=10, j_resolution=10)[source]#
Create a plane.
- Parameters:
- centersequence[
float
], default: (0.0, 0.0, 0.0) Location of the centroid in
[x, y, z]
.- directionsequence[
float
], default: (0.0, 0.0, 1.0) Direction of the plane’s normal in
[x, y, z]
.- i_size
float
, default: 1.0 Size of the plane in the i direction.
- j_size
float
, default: 1.0 Size of the plane in the j direction.
- i_resolution
int
, default: 10 Number of points on the plane in the i direction.
- j_resolution
int
, default: 10 Number of points on the plane in the j direction.
- centersequence[
- Returns:
pyvista.PolyData
Plane mesh.
Examples
Create a default plane.
>>> import pyvista as pv >>> mesh = pv.Plane() >>> mesh.point_data.clear() >>> mesh.plot(show_edges=True)