Polyhedron

class compas.geometry.Polyhedron(vertices, faces)[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.

Methods

__init__(vertices, faces)

Initialize self.

copy()

Makes a copy of this primitive.

from_data(data)

Construct a polyhedron from its data representation.

from_halfspaces(halfspaces, interior_point)

Construct a polyhedron from its half-spaces and one interior point.

from_json(filepath)

Construct a primitive from structured data contained in a json file.

from_planes(planes)

Construct a polyhedron from intersecting planes.

from_platonicsolid(f)

Construct a polyhedron from one of the platonic solids.

to_data()

Returns the data dictionary that represents the primitive.

to_json(filepath)

Serialise the structured data representing the primitive to json.

to_vertices_and_faces()

Returns a list of vertices and faces.

transform(transformation)

Transform the polyhedron.

transformed(transformation)

Returns a transformed copy of this primitive.

validate_data()

Validate the data of this object against its data schema (self.DATASCHEMA).

validate_json()

Validate the data loaded from a JSON representation of the data of this object against its data schema (self.DATASCHEMA).