Polyhedron
- class compas.geometry.Polyhedron(vertices, faces, **kwargs)[source]
Bases:
compas.geometry.shapes._shape.Shape
A polyhedron is defined by its vertices and faces.
- Parameters
vertices (list of
compas.geometry.Point
or list of [x, y, z]) – The point locations of the vertices of the polyhedron.faces (list of list of int) – The faces as a list of index lists.
Attributes
DATASCHEMA
The schema of the data of this object.
JSONSCHEMANAME
data
Returns the data dictionary that represents the polyhedron.
edges
faces
vertices
Inherited Attributes
JSONSCHEMA
The schema of the JSON representation of the data of this object.
dtype
The type of the object in the form of a '2-level' import and a class name.
guid
The globally unique identifier of the object.
jsondefinitions
Reusable schema definitions.
jsonstring
The representation of the object data in JSON format.
jsonvalidator
JSON schema validator for draft 7.
name
The name of the object.
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 (self.DATASCHEMA).
Validate the object's data against its json schema (self.JSONSCHEMA).