get_parts#
- SurfaceScope.get_parts(model)#
Get the list of part ids in the scope.
- Parameters:
- model
Model PyPrimeMesh model.
- model
- Returns:
- :
Iterable[int]Returns the list of part ids.
- Return type:
Examples
>>> from ansys.meshing.prime import Model, SurfaceScope >>> model = client.model >>> su = SurfaceScope("*", "*", prime.ScopeEvaluationType.LABELS) >>> part_ids = su.get_parts()