pyvista.PlaneSource#
- class PlaneSource(
- i_resolution=10,
- j_resolution=10,
- center=(0.0, 0.0, 0.0),
- origin=(-0.5, -0.5, 0.0),
- point_a=(0.5, -0.5, 0.0),
- point_b=(-0.5, 0.5, 0.0),
Create a plane source.
The plane is defined by specifying an origin point, and then two other points that, together with the origin, define two axes for the plane (magnitude and direction). These axes do not have to be orthogonal - so you can create a parallelogram. The axes must not be parallel.
Added in version 0.44.
- Parameters:
- 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[
float
], default: (0.0, 0.0, 0.0) Center in
[x, y, z]
.- originsequence[
float
], default: (-0.5, -0.5, 0.0) Origin in
[x, y, z]
.- point_asequence[
float
], default: (0.5, -0.5, 0.0) Location in
[x, y, z]
.- point_bsequence[
float
], default: (-0.5, 0.5, 0.0) Location in
[x, y, z]
.
- i_resolution
Methods
Flip the plane's normal.
PlaneSource.push
(distance)Translate the plane in the direction of the normal by the distance specified.
Attributes
Get the center in
[x, y, z]
.Number of points on the plane in the i direction.
Number of points on the plane in the j direction.
Get the plane's normal vector.
Get the origin in
[x, y, z]
.Get the output data object for a port on this algorithm.
Get the Location in
[x, y, z]
.Get the Location in
[x, y, z]
.