layerview.visualization.point_cloud.errors module

Point cloud generation errors.

exception layerview.visualization.point_cloud.errors.EffectorDescentError(cur_layer_z: float, prev_layer_z: float)[source]

Bases: Exception, MixinMarkdown, ABC

Generic effector descent error.

_abc_impl = <_abc_data object>
args
abstract as_markdown() str

Return Markdown string representation for this object.

Returns:

Markdown string representation for this object.

Return type:

str

property cur_layer_z: float
property prev_layer_z: float
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception layerview.visualization.point_cloud.errors.LateEffectorDescentError(cur_layer_z: float, prev_layer_z: float, prev_layer_count: int)[source]

Bases: EffectorDescentError

Late effector descent error.

_abc_impl = <_abc_data object>
_cur_layer_z: float
_prev_layer_z: float
args
as_markdown() str[source]

Return Markdown string representation for this object.

Returns:

Markdown string representation for this object.

Return type:

str

property cur_layer_z: float
property prev_layer_count: int
property prev_layer_z: float
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.

exception layerview.visualization.point_cloud.errors.PostPrimingDescentError(cur_layer_z: float, prev_layer_z: float)[source]

Bases: EffectorDescentError

Post-priming effector descent error.

_abc_impl = <_abc_data object>
_cur_layer_z: float
_prev_layer_z: float
args
as_markdown() str[source]

Return Markdown string representation for this object.

Returns:

Markdown string representation for this object.

Return type:

str

property cur_layer_z: float
property prev_layer_z: float
with_traceback()

Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.