DFColorizeCloud component

Contents

_images/icon10.png

DFColorizeCloud component#

Colorizes randomly a list of point clouds.

Inputs:

i_clouds (pointcloud ,list)

The pointclouds to be colorized.

Outputs:

o_clouds

The point clouds now colorized.

Code:

#! python3

import System

import Rhino
from ghpythonlib.componentbase import executingcomponent as component

import numpy as np

class DFColorizeCloud(component):
    def RunScript(self, i_clouds: System.Collections.Generic.List[Rhino.Geometry.PointCloud]):
        for cloud in i_clouds:
            random_color = System.Drawing.Color.FromArgb(
                np.random.randint(0, 255),
                np.random.randint(0, 255),
                np.random.randint(0, 255))
            for j in range(cloud.Count):
                cloud[j].Color = random_color
        return i_clouds