24 #ifndef __TRIANGLE_CELL_H 25 #define __TRIANGLE_CELL_H 28 #include <boost/multi_array.hpp> 48 std::size_t
dim()
const;
62 const unsigned int* v)
const;
83 double normal(
const Cell& cell, std::size_t facet, std::size_t i)
const;
96 const std::vector<std::int64_t>& local_to_global_vertex_indices)
const;
109 {
return {0, 1, 2}; }
114 std::size_t find_edge(std::size_t i,
const Cell& cell)
const;
double circumradius(const MeshEntity &triangle) const
Compute diameter of triangle.
Definition: TriangleCell.cpp:162
std::string description(bool plural) const
Return description of cell type.
Definition: TriangleCell.cpp:461
void create_entities(boost::multi_array< unsigned int, 2 > &e, std::size_t dim, const unsigned int *v) const
Create entities e of given topological dimension from vertices v.
Definition: TriangleCell.cpp:91
std::size_t num_vertices() const
Return number of vertices for cell.
Definition: CellType.h:92
std::vector< std::int8_t > vtk_mapping() const
Mapping of DOLFIN/UFC vertex ordering to VTK/XDMF ordering.
Definition: TriangleCell.h:108
Point cell_normal(const Cell &cell) const
Compute normal to given cell (viewed as embedded in 3D)
Definition: TriangleCell.cpp:338
bool is_simplex() const
Check if cell is a simplex.
Definition: TriangleCell.h:44
std::size_t dim() const
Return topological dimension of cell.
Definition: TriangleCell.cpp:42
TriangleCell()
Specify cell type and facet type.
Definition: TriangleCell.h:41
Type
Enum for different cell types.
Definition: CellType.h:51
void order(Cell &cell, const std::vector< std::int64_t > &local_to_global_vertex_indices) const
Order entities locally.
Definition: TriangleCell.cpp:388
This class implements functionality for triangular meshes.
Definition: TriangleCell.h:36
A Cell is a MeshEntity of topological codimension 0.
Definition: Cell.h:42
double normal(const Cell &cell, std::size_t facet, std::size_t i) const
Compute component i of normal of given facet with respect to the cell.
Definition: TriangleCell.cpp:288
Definition: CellType.h:46
bool collides(const Cell &cell, const Point &point) const
Check whether given point collides with cell.
Definition: TriangleCell.cpp:451
double facet_area(const Cell &cell, std::size_t facet) const
Compute the area/length of given facet with respect to the cell.
Definition: TriangleCell.cpp:369
double squared_distance(const Cell &cell, const Point &point) const
Compute squared distance to given point (3D enabled)
Definition: TriangleCell.cpp:200
Definition: MeshEntity.h:42
double volume(const MeshEntity &triangle) const
Compute (generalized) volume (area) of triangle.
Definition: TriangleCell.cpp:111
std::size_t num_entities(std::size_t dim) const
Return number of entities of given topological dimension.
Definition: TriangleCell.cpp:47
std::size_t orientation(const Cell &cell) const
Return orientation of the cell.
Definition: TriangleCell.cpp:85