Line#
- Line(pointa=(-0.5, 0.0, 0.0), pointb=(0.5, 0.0, 0.0), resolution=1)[source]#
Create a line.
- Parameters:
- pointa
np.ndarray
orlist
, default: (-0.5, 0.0, 0.0) Location in
[x, y, z]
.- pointb
np.ndarray
orlist
, default: (0.5, 0.0, 0.0) Location in
[x, y, z]
.- resolution
int
, default: 1 Number of pieces to divide line into.
- pointa
- Returns:
pyvista.PolyData
Line mesh.
Examples
Create a line between
(0, 0, 0)
and(0, 0, 1)
.>>> import pyvista >>> mesh = pyvista.Line((0, 0, 0), (0, 0, 1)) >>> mesh.plot(color='k', line_width=10)