DFLoadCloudFromFile component

Contents

_images/icon17.png

DFLoadCloudFromFile component#

Import a point cloud from a file.

Inputs:

i_path (str ,item)

Path to the .ply file to import

i_scalef (float ,item)

Scaling factor to adapt the unit of the imported file to the rhino document.

Outputs:

o_rh_cloud

The imported point cloud as a Rhino object.

Code:

#! python3

import Rhino.Geometry as rg
from ghpythonlib.componentbase import executingcomponent as component


from diffCheck import diffcheck_bindings
from diffCheck import df_cvt_bindings

class DFLoadCloudFromFile(component):
    def RunScript(self,
        i_path: str,
        i_scalef: float) -> rg.PointCloud:
        # import and convert to Rhino Cloud
        df_cloud = diffcheck_bindings.dfb_geometry.DFPointCloud()
        df_cloud.load_from_PLY(i_path)
        rh_cloud = df_cvt_bindings.cvt_dfcloud_2_rhcloud(df_cloud)

        # scale  if needed
        centroid = rh_cloud.GetBoundingBox(True).Center
        x_form_scale = rg.Transform.Scale(centroid, i_scalef)
        rh_cloud.Transform(x_form_scale)

        return [rh_cloud]