Skip to content

Point Clouds

Point Cloud Example

Point Cloud of a CAD model

A Point Cloud is a simple collection of points in \(\mathbb{R}^3\)

PointCloud(data=None)

Bases: Mesh

A data structure for representing point clouds

Attributes:

Name Type Description
vertices DataContainer

the container for all vertices

__str__ str

Representation of the object and its elements as a string.

id_vertices property

Shortcut for range(len(self.vertices))

append(x)

Shortcut for self.vertices.append(x), since we can only append elements in the 'vertices' container