Polyhedron
- class compas.geometry.Polyhedron(vertices, faces, **kwargs)[source]
Bases:
Shape
A polyhedron is defined by its vertices and faces.
- Parameters
vertices (list[[float, float, float] |
compas.geometry.Point
]) – The point locations of the vertices of the polyhedron.faces (list[list[int]]) – The faces as a list of index lists.
- Attributes
vertices (list[list[float]]) – The XYZ coordinates of the vertices of the polyhedron.
faces (list[list[int]]) – The faces of the polyhedron defined as lists of vertex indices.
edges (list[tuple[int, int]], read-only) – The edges of the polyhedron as vertex index pairs.
Methods
Construct a polyhedron from its data representation.
Construct a polyhedron from its half-spaces and one interior point.
Construct a polyhedron from intersecting planes.
Construct a polyhedron from one of the platonic solids.
Verify that the polyhedron forms a closed surface.
Returns a list of vertices and faces.
Transform the polyhedron.
Inherited Methods
Make an independent copy of the data object.
Construct an object from serialized data contained in a JSON file.
Construct an object from serialized data contained in a JSON string.
Convert an object to its native data representation.
Serialize the data representation of an object to a JSON file.
Serialize the data representation of an object to a JSON string.
Returns a transformed copy of this geometry.
Validate the object's data against its data schema.
Validate the object's data against its json schema.