RAPointCloudCollection#

class ansys.rocky.app.ra_point_cloud_collection.RAPointCloudCollection(id: str, model_id: str | None = None)#

Bases: ansys.rocky.app.ra_list.RAList[ansys.rocky.app.ra_point_cloud.RAPointCloud]

Rocky PrePost Scripting wrapper for the collection of point clouds in a project.

This wrapper corresponds to the “Point Clouds” item in the project’s data tree. To retrieve the RAPointCloudCollection from a RAStudy, use:

point_cloud_collection = study.GetPointCloudCollection()

Instances of the RAPointCloudCollection class act as regular Python lists, and can be iterated on, accessed via index, etc:

point_cloud_1 = point_cloud_collection.New()
point_cloud_2 = point_cloud_collection[1]
del point_cloud_collection[0]

Items in this list are of type RAPointCloud.

Overview#

Import detail#

from ansys.rocky.app.ra_point_cloud_collection import RAPointCloudCollection

Method detail#

classmethod RAPointCloudCollection.GetWrappedClass()#
classmethod RAPointCloudCollection.GetClassName()#