Graphite Version 3
An experimental 3D geometry processing program
|
The cells of a mesh. More...
#include <geogram/mesh/mesh.h>
Public Member Functions | |
MeshCells (Mesh &mesh) | |
MeshCells constructor. | |
index_t | nb_vertices (index_t c) const |
Gets the number of vertices of a cell. | |
index_t | vertex (index_t c, index_t lv) const |
Gets a vertex of a cell by local vertex index. | |
void | set_vertex (index_t c, index_t lv, index_t v) |
Sets a vertex of a cell by local vertex index. | |
index_t | adjacent (index_t c, index_t lf) const |
Gets a cell adjacent to another one by local facet index. | |
void | set_adjacent (index_t c, index_t lf, index_t c2) |
Sets a cell adjacent to another one by local facet index. | |
index_t | facet_nb_vertices (index_t c, index_t lf) const |
Gets the number of vertices in a cell facet. | |
index_t | facet_vertex (index_t c, index_t lf, index_t lv) const |
Gets a vertex of a cell by local facet index and local vertex index in the facet. | |
index_t | facet_corner (index_t c, index_t lf, index_t lc) const |
Gets a corner of a cell by local facet index and local corner index in the facet. | |
index_t | edge_vertex (index_t c, index_t le, index_t lv) const |
Gets a cell vertex by local edge index and local vertex index in the edge. | |
index_t | edge_adjacent_facet (index_t c, index_t le, index_t lf) const |
Gets a cell local facet index by local edge index and local facet index in the edge. | |
index_range | corners (index_t c) const |
Gets the corners of a cell. | |
void | clear (bool keep_attributes=true, bool keep_memory=false) override |
Removes all the elements and attributes. | |
void | delete_elements (vector< index_t > &to_delete, bool remove_isolated_vertices=true) override |
Deletes a set of elements. | |
void | permute_elements (vector< index_t > &permutation) override |
Applies a permutation to the elements and their attributes. | |
index_t | create_cells (index_t nb_cells, MeshCellType type) |
Creates a contiguous chunk of cells of the same type. | |
index_t | create_tets (index_t nb_tets) |
Creates a contiguous chunk of tetrahedra. | |
index_t | create_hexes (index_t nb_hexes) |
Creates a contiguous chunk of hexahedra. | |
index_t | create_prisms (index_t nb_prisms) |
Creates a contiguous chunk of prisms. | |
index_t | create_pyramids (index_t nb_pyramids) |
Creates a contiguous chunk of pyramids. | |
index_t | create_tet (index_t v1, index_t v2, index_t v3, index_t v4, index_t adj1=NO_CELL, index_t adj2=NO_CELL, index_t adj3=NO_CELL, index_t adj4=NO_CELL) |
Creates a tetrahedron. | |
index_t | create_hex (index_t v1, index_t v2, index_t v3, index_t v4, index_t v5, index_t v6, index_t v7, index_t v8, index_t adj1=NO_CELL, index_t adj2=NO_CELL, index_t adj3=NO_CELL, index_t adj4=NO_CELL, index_t adj5=NO_CELL, index_t adj6=NO_CELL) |
Creates an hexahedron. | |
index_t | create_prism (index_t v1, index_t v2, index_t v3, index_t v4, index_t v5, index_t v6, index_t adj1=NO_CELL, index_t adj2=NO_CELL, index_t adj3=NO_CELL, index_t adj4=NO_CELL, index_t adj5=NO_CELL) |
Creates a prism. | |
index_t | create_pyramid (index_t v1, index_t v2, index_t v3, index_t v4, index_t v5, index_t adj1=NO_CELL, index_t adj2=NO_CELL, index_t adj3=NO_CELL, index_t adj4=NO_CELL, index_t adj5=NO_CELL) |
Creates a pyramid. | |
index_t | create_connector (index_t v1, index_t v2, index_t v3, index_t v4, index_t adj1=NO_CELL, index_t adj2=NO_CELL, index_t adj3=NO_CELL) |
Creates a connector. | |
void | connect (bool remove_trivial_slivers=true, bool verbose_if_OK=false) |
Connects the cells. | |
void | compute_borders () |
Replaces the surfacic part of this mesh with the borders of the volumetric part. | |
void | compute_borders (Attribute< index_t > &facet_cell) |
Replaces the surfacic part of this mesh with the borders of the volumetric part. | |
void | assign_tet_mesh (coord_index_t dim, vector< double > &vertices, vector< index_t > &tets, bool steal_args) |
Copies a tetrahedron mesh into this Mesh. | |
void | assign_tet_mesh (vector< index_t > &tets, bool steal_args) |
Copies a tetrahedron mesh into this Mesh. | |
void | pop () override |
Removes the last element. | |
index_t | tet_adjacent (index_t t, index_t lf) const |
index_t | find_tet_adjacent (index_t t, index_t t2) const |
index_t | tet_vertex (index_t t, index_t lv) const |
index_t | find_tet_vertex (index_t t, index_t v) const |
index_t | tet_facet_vertex (index_t t, index_t lf, index_t lv) const |
Gets a vertex of a tetrahedron by local facet index and local vertex index in facet. | |
index_t | find_tet_facet (index_t t, index_t v1, index_t v2, index_t v3) const |
Finds the local index of a facet in a tetrahedron by the global indices of its vertices. | |
![]() | |
MeshCellsStore (Mesh &mesh) | |
bool | are_simplices () const |
Tests whether all the cells are tetrahedra. | |
MeshCellType | type (index_t c) const |
Gets the type of a cell. | |
const CellDescriptor & | descriptor (index_t c) const |
Gets the descriptor of a cell. | |
index_t | nb_corners (index_t c) const |
Gets the number of corners of a cell. | |
index_t | corners_begin (index_t c) const |
Gets the first element for iterating over the corners of a cell. | |
index_t | corners_end (index_t c) const |
Gets the upper limit for iterating over the corners of a cell. | |
index_t | corner (index_t c, index_t lv) const |
Gets a corner of a cell by local vertex index. | |
index_t | nb_facets (index_t c) const |
Gets the number of facets of a cell. | |
index_t | facets_begin (index_t c) const |
Gets the first element for iterating over the facets of a cell. | |
index_t | facets_end (index_t c) const |
Gets the upper limit for iterating over the facets of a cell. | |
index_t | facet (index_t c, index_t lf) const |
Gets a facet of a cell by local facet index. | |
index_t | nb_edges (index_t c) const |
Gets the number of edges in a cell. | |
![]() | |
MeshSubElementsStore (Mesh &mesh) | |
Constructs a new MeshSubElementStore. | |
virtual | ~MeshSubElementsStore () |
MeshElementStore destructor. | |
index_t | nb () const |
Gets the number of (sub-)elements. | |
AttributesManager & | attributes () const |
Gets the attributes manager. | |
index_as_iterator | begin () const |
Used by range-based for. | |
index_as_iterator | end () const |
Used by range-based for. | |
Static Public Member Functions | |
static index_t | local_tet_facet_vertex_index (index_t lf, index_t lv) |
Gives the local index of a vertex in a tetrahedron from its facet and vertex local indices. | |
![]() | |
static const CellDescriptor & | cell_type_to_cell_descriptor (MeshCellType t) |
Gets a descriptor by cell type. | |
Protected Member Functions | |
void | is_not_simplicial () |
Indicates that the stored elements are no longer only tetrahedra. | |
bool | facets_match (index_t c1, index_t f1, index_t c2, index_t f2) const |
Tests whether two cell facets can be connected. | |
index_t | find_cell_vertex (index_t c, index_t v) const |
Finds the local index of a vertex in a cell. | |
index_t | find_cell_facet (index_t c1, index_t c2, index_t f2) const |
Finds the local index of a facet in a cell that can be connected to a facet of another cell. | |
bool | triangular_facet_matches_quad_facet (index_t c1, index_t lf1, index_t c2, index_t lf2) const |
Tests whether a triangular facet matches a quad facet. | |
bool | triangular_facets_have_common_edge (index_t c1, index_t f1, index_t c2, index_t f2, index_t &e1, index_t &e2) const |
Tests whether two triangular cell facets have a common edge. | |
bool | create_connector (index_t c1, index_t lf1, const std::vector< std::pair< index_t, index_t > > &matches) |
Creates a connector between a quadrandular facet and two triangular facets. | |
void | connect_tets () |
Optimized implementation of connect() used when the mesh is simplicial. | |
![]() | |
void | clear_store (bool keep_attributes, bool keep_memory=false) override |
Removes all the elements and attributes. | |
void | resize_store (index_t new_size) override |
Resizes this MeshSubElementsStore. | |
index_t | create_sub_element (MeshCellType type) |
index_t | create_sub_elements (index_t nb, MeshCellType type) |
void | copy (const MeshCellsStore &rhs, bool copy_attributes=true) |
![]() | |
void | reserve_store (index_t nb_to_reserve) |
Reserves space for new elements. | |
index_t | create_sub_elements (index_t nb) |
Creates a contiguous chunk of attributes for sub-elements. | |
index_t | create_sub_element () |
Creates attributes for a sub-element. | |
void | adjust_store () |
Makes the size of the store tightly match the number of the elements. | |
void | copy (const MeshSubElementsStore &rhs, bool copy_attributes=true) |
Copies a MeshSubElementsStore into this one. | |
Protected Attributes | |
MeshVertices & | vertices_ |
MeshCellCornersStore & | cell_corners_ |
MeshCellFacetsStore & | cell_facets_ |
![]() | |
bool | is_simplicial_ |
vector< Numeric::uint8 > | cell_type_ |
vector< index_t > | cell_ptr_ |
![]() | |
Mesh & | mesh_ |
AttributesManager | attributes_ |
index_t | nb_ |
Friends | |
class | Mesh |
class | GeogramIOHandler |
Additional Inherited Members | |
![]() | |
static bool | has_non_zero (const GEO::vector< index_t > &I) |
Tests whether a vector contains a non-zero value. | |
GEO::MeshCells::MeshCells | ( | Mesh & | mesh | ) |
void GEO::MeshCells::assign_tet_mesh | ( | coord_index_t | dim, |
vector< double > & | vertices, | ||
vector< index_t > & | tets, | ||
bool | steal_args | ||
) |
Copies a tetrahedron mesh into this Mesh.
Tetrahedron adjacences are not computed.
[in] | dim | dimension of the vertices |
[in] | vertices | coordinates of the vertices |
[in] | tets | tetrahedron to vertex links |
[in] | steal_args | if set, vertices and tets are 'stolen' from the arguments (using vector::swap). |
Copies a tetrahedron mesh into this Mesh.
Tetrahedron adjacences are not computed.
[in] | tets | tetrahedron to vertex links |
[in] | steal_args | if set, vertices and tets are 'stolen' from the arguments (using vector::swap). |
|
overridevirtual |
Removes all the elements and attributes.
[in] | keep_attributes | if true, then all the existing attribute names / bindings are kept (but they are cleared). If false, they are destroyed. |
[in] | keep_memory | if true, then memory is kept and can be reused by subsequent mesh element creations. |
Implements GEO::MeshElements.
Replaces the surfacic part of this mesh with the borders of the volumetric part.
[out] | facet_cell | on exit, stores the index of the cell adjacent to the facet on the border. |
void GEO::MeshCells::connect | ( | bool | remove_trivial_slivers = true , |
bool | verbose_if_OK = false |
||
) |
Connects the cells.
This creates as needed the connectors that represent non-conformal connections between a quadrilateral facet and two triangular facets.
[in] | remove_trivial_slivers | if set, this removes the slivers that are adjacent to a quadrilateral facet. |
[in] | verbose_if_OK | if set, says OK if no bad connector configuration was detected. |
|
inline |
|
protected |
Creates a connector between a quadrandular facet and two triangular facets.
This function is used by connect_cells()
[in] | c1 | index of the cell that has the quadrangular facet |
[in] | lf1 | index of the quadrangular facet in c1 |
[in] | matches | a const reference to a vector of (cell index, facet index) pairs that are candidate triangles to be connected to the quadrangular facet. Each of them has three vertices in common with the quadrangular facet. It may contain more than two (cell,facet) index pairs. In this case, among them we select the pair of triangular facets that have an edge in common. |
true | if a connector was created. A connector is created if among the candidate triangular facets there are exactly two facets on the border with an edge in common. |
false | otherwise |
|
inline |
Creates a connector.
Connector are automatically created by connect() (most client codes do not use this function)
[in] | v1,v2,v3,v4 | the vertices of the connector all in 0 .. mesh.vertices.nb()-1 |
[in] | adj1,adj2,adj3 | adjacent cells, or NO_CELL if unspecified / on border |
|
overridevirtual |
Deletes a set of elements.
[in] | to_delete | a vector of size nb(). If to_delete[e] is different from 0, then element e will be destroyed, else it will be kept. On exit, to_delete is modified (it is used for internal bookkeeping). |
[in] | remove_isolated_vertices | if true, then the vertices that are no longer incident to any element are deleted. |
Implements GEO::MeshElements.
Gets a cell local facet index by local edge index and local facet index in the edge.
[in] | c | the cell, in 0..nb()-1 |
[in] | le | the local edge index, in 0..nb_edges(c)-1 |
[in] | lf | the local index in the edge, one of 0,1 |
lf=0
, it gets the facet on the left of the oriented edge.lf=1
, it gets the facet on the right of the oriented edge. Gets a corner of a cell by local facet index and local corner index in the facet.
[in] | c | the cell, in 0..nb()-1 |
[in] | lf | the local facet index, in 0..nb_facets(c)-1 |
[in] | lc | the local corner index, in 0..facet_nb_vertices(c,lf)-1 |
lc
of facet lf
in cell c
Gets a vertex of a cell by local facet index and local vertex index in the facet.
[in] | c | the cell, in 0..nb()-1 |
[in] | lf | the local facet index, in 0..nb_facets(c)-1 |
[in] | lv | the local vertex index, in 0..facet_nb_vertices(c,lf)-1 |
lv
of facet lf
in cell c
|
protected |
Tests whether two cell facets can be connected.
Two cell facets can be connected if they have the same vertices in reverse order.
[in] | c1 | index of the first cell |
[in] | f1 | index of the first facet in c1 |
[in] | c2 | index of the second cell |
[in] | f2 | index of the second facet in c2 |
true | if c1 and c2 can be connected by f1 and f2 |
false | otherwise |
|
inlineprotected |
Finds the local index of a facet in a cell that can be connected to a facet of another cell.
[in] | c1 | index of the cell |
[in] | c2 | index of the other cell |
[in] | f2 | facet of the other cell |
c1
that has the same vertices as f2
in c2
in reverse order, modulo a circular permutation, or NO_FACET if such a facet does not exist in c1
.
|
inline |
Finds the local index of a facet in a tetrahedron by the global indices of its vertices.
[in] | t | index of the tetrahedron |
[in] | v1 | global index of the first vertex |
[in] | v2 | global index of the second vertex |
[in] | v3 | global index of the third vertex |
t
that has v1
, v2
, v3
as vertices modulo a circular permutation, or NO_FACET if such a facet does not exist in t
.
|
inlineprotected |
Applies a permutation to the elements and their attributes.
On exit, permutation is modified (used for internal bookkeeping). Applying a permutation permutation
is equivalent to:
Implements GEO::MeshElements.
|
overridevirtual |
Removes the last element.
Implements GEO::MeshElements.
Gets a vertex of a tetrahedron by local facet index and local vertex index in facet.
[in] | t | global index of the tetrahedron |
[in] | lf | local facet index (0,1,2 or 3) |
[in] | lv | local vertex index in facet (0,1 or 2) |
lv
in facet lf
of tetrahedron t
|
protected |
Tests whether a triangular facet matches a quad facet.
Used to detect non-conformal configurations that should be resolved by a connector.
[in] | c1 | index of the first cell |
[in] | lf1 | index of a triangular facet in c1 |
[in] | c2 | index of the second cell |
[in] | lf2 | index of a quadrangular facet in c2 |
true | if the three vertices of f1 appear in f2 in reverse order |
false | otherwise |
|
protected |
Tests whether two triangular cell facets have a common edge.
[in] | c1 | index of the first cell |
[in] | f1 | index of a triangular facet of c1 |
[in] | c2 | index of the second cell |
[in] | f2 | index of a triangular facet of c2 |
[out] | e1 | index of the common edge in f1 or NO_EDGE if no such edge exists |
[out] | e2 | index of the common edge in f2 or NO_EDGE if no such edge exists |
true | if f1 and f2 have a common edge |
false | otherwise |
|
protected |
|
protected |
|
protected |