Polyhedron
- class compas.geometry.Polyhedron(vertices, faces, **kwargs)[source]
Bases:
compas.geometry.shapes._shape.ShapeA polyhedron is defined by its vertices and faces.
- Parameters
vertices (list of
compas.geometry.Pointor 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
DATASCHEMAThe schema of the data of this object.
JSONSCHEMANAMEdataReturns the data dictionary that represents the polyhedron.
edgesfacesverticesInherited Attributes
JSONSCHEMAThe schema of the JSON representation of the data of this object.
dtypeThe type of the object in the form of a '2-level' import and a class name.
guidThe globally unique identifier of the object.
jsondefinitionsReusable schema definitions.
jsonstringThe representation of the object data in JSON format.
jsonvalidatorJSON schema validator for draft 7.
nameThe 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).