:class:`RAPointCloudCollection` =============================== .. py:class:: ansys.rocky.app.ra_point_cloud_collection.RAPointCloudCollection(id: str, model_id: str | None = None) Bases: :py:obj:`ansys.rocky.app.ra_list.RAList`\ [\ :py:obj:`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 :class:`RAPointCloudCollection` from a :class:`RAStudy`, use: .. code-block:: python point_cloud_collection = study.GetPointCloudCollection() Instances of the :class:`RAPointCloudCollection` class act as regular Python lists, and can be iterated on, accessed via index, etc: .. code-block:: python 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 :class:`RAPointCloud`. .. !! processed by numpydoc !! .. py:currentmodule:: RAPointCloudCollection Overview -------- .. tab-set:: .. tab-item:: Constructors .. list-table:: :header-rows: 0 :widths: auto * - :py:attr:`~GetWrappedClass` - * - :py:attr:`~GetClassName` - Import detail ------------- .. code-block:: python from ansys.rocky.app.ra_point_cloud_collection import RAPointCloudCollection Method detail ------------- .. py:method:: GetWrappedClass() :classmethod: .. py:method:: GetClassName() :classmethod: