23#ifndef VCL_ALGORITHMS_MESH_CREATE_TETRAHEDRON_H
24#define VCL_ALGORITHMS_MESH_CREATE_TETRAHEDRON_H
26#include <vclib/mesh/requirements.h>
48template<FaceMeshConcept MeshType>
51 using CoordType = MeshType::Vertex::CoordType;
56 CoordType(1, -1, -1));
79template<FaceMeshConcept MeshType, Po
int3Concept CoordType>
88 m.addVertices(p0, p1,
p2,
p3);
A class representing a line segment in n-dimensional space. The class is parameterized by a PointConc...
Definition segment.h:43
MeshType createTetrahedron()
Creates a simple tetrahedron mesh with the following point coordinates:
Definition tetrahedron.h:49