mesh_conway_ortho

compas.datastructures.mesh_conway_ortho(mesh)[source]

Generates the ortho mesh from a seed mesh.

Parameters

mesh (Mesh) – A seed mesh

Returns

Mesh – The ortho mesh.

References

Based on 1 and 2.

1

Wikipedia. Conway polyhedron notation. Available at: https://en.wikipedia.org/wiki/Conway_polyhedron_notation.

2

Hart, George. Conway Notation for Polyhedron. Available at: http://www.georgehart.com/virtual-polyhedra/conway_notation.html.

Examples

>>> from compas.datastructures import Mesh
>>> mesh = Mesh.from_polyhedron(6)
>>> orth = mesh_conway_ortho(mesh)
>>> orth.number_of_vertices() == mesh.number_of_vertices() + mesh.number_of_faces() + mesh.number_of_edges()
True
>>> orth.number_of_edges() == 4 * mesh.number_of_edges()
True
>>> orth.number_of_faces() == 2 * mesh.number_of_edges()
True