PolyData.n_strips#
- property PolyData.n_strips: int[source]#
Return the number of triangle strips.
This is the total number of
TRIANGLE_STRIPcells defined in thestripsconnectivity array.See also
stripsn_verts,n_lines,n_facesNumber of cells in other connectivity arrays.
pyvista.DataSet.n_cells,pyvista.DataSet.n_pointsNumber of total cells and points in this mesh.
Examples#
Download Python source code | Download Jupyter notebook
Create a simple mesh with one triangle strip and return the number of triangles.
>>> import pyvista as pv
>>> import numpy as np
>>> vertices = np.array([[1.0, 0.0, 0.0], [1.0, 1.0, 1.0], [1.0, 1.0, 1.0]])
>>> strip = np.array([3, 0, 1, 2])
>>> mesh = pv.PolyData(vertices, strips=strip)
>>> mesh.n_strips, mesh.n_cells
(1, 1)