pyvista.Box#
- Box(bounds=(-1.0, 1.0, -1.0, 1.0, -1.0, 1.0), level=0, quads=True)[source]#
Create a box with solid faces for the given bounds.
- Parameters:
- boundssequence[
float
], default: (-1.0, 1.0, -1.0, 1.0, -1.0, 1.0) Specify the bounding box of the cube.
(xMin, xMax, yMin, yMax, zMin, zMax)
.- level
int
, default: 0 Level of subdivision of the faces.
- quadsbool, default:
True
Flag to tell the source to generate either a quad or two triangle for a set of four points.
- boundssequence[
- Returns:
pyvista.PolyData
Mesh of the box.
Examples
Create a box with subdivision
level=2
.>>> import pyvista as pv >>> mesh = pv.Box(level=2) >>> mesh.plot(show_edges=True)