polygon_count property

polygon_count property

Gets the count of polygons

Example

The following code shows how to get the number of mesh’ polygons.

from aspose.threed.entities import Sphere

mesh = Sphere().to_mesh()
print("Mesh's polygon count = "  + str(mesh.polygon_count))

Definition:

@property
def polygon_count(self):
    ...

See Also