get_parts#

SurfaceScope.get_parts(model)#

Get the list of part ids in the scope.

Parameters:
modelModel

PyPrimeMesh model.

Returns:
Iterable[int]

Returns the list of part ids.

Return type:

Iterable[int]

Examples

>>> from ansys.meshing.prime import Model, SurfaceScope
>>> model = client.model
>>> su = SurfaceScope("*", "*", prime.ScopeEvaluationType.LABELS)
>>> part_ids = su.get_parts()