GetPhysicalMemberCount
Description Get the total count of physical members in the model.
Parameters
- None
Returns int: Total number of physical members.
Example To use this function see the following example:
from openstaad import Geometry
# Instanciate the Geometry module
geometry= Geometry()
#Execute the function from geometry module
pm_count = geometry.GetPhysicalMemberCount()
print(pm_count)