«
class documentation

Represents a point cloud material.

Parameters
shading_modethe shading mode to use. Supported values are "height", "intensity", "rgb", and "custom"
custom_colora custom color to use for the point cloud. This is only used when shading_mode is "custom"
point_sizethe size of the points in the point cloud
attenuate_by_distancewhether to attenuate the point size based on distance from the camera
opacitythe opacity of the material, in the range [0, 1]
Method __init__ Undocumented
Method as_dict Undocumented
Method attenuate_by_distance.setter Undocumented
Method custom_color.setter Undocumented
Method point_size.setter Undocumented
Method shading_mode.setter Undocumented
Property attenuate_by_distance Undocumented
Property custom_color Undocumented
Property point_size Undocumented
Property shading_mode Undocumented
Instance Variable _attenuate_by_distance Undocumented
Instance Variable _custom_color Undocumented
Instance Variable _point_size Undocumented
Instance Variable _shading_mode Undocumented

Inherited from Material3D:

Method opacity.setter Undocumented
Static Method _from_dict Undocumented
Instance Variable _opacity Undocumented

Inherited from BaseValidatedDataClass (via Material3D):

Method __eq__ Undocumented
Method __repr__ Undocumented
Method __setattr__ Undocumented
def __init__(self, shading_mode: ShadingMode = 'height', custom_color: str = COLOR_DEFAULT_WHITE, point_size: float = 1.0, attenuate_by_distance: bool = False, opacity: float = 1.0): (source)
@attenuate_by_distance.setter
def attenuate_by_distance(self, value: bool): (source)

Undocumented

@custom_color.setter
def custom_color(self, value: str): (source)

Undocumented

@point_size.setter
def point_size(self, value: float): (source)

Undocumented

@shading_mode.setter
def shading_mode(self, value: ShadingMode): (source)

Undocumented

@property
attenuate_by_distance: bool = (source)

Undocumented

@property
custom_color: str = (source)

Undocumented

Undocumented

Undocumented

_attenuate_by_distance = (source)

Undocumented

_custom_color = (source)

Undocumented

_point_size = (source)

Undocumented

_shading_mode = (source)

Undocumented