24 #ifndef __POINT_CELL_H 25 #define __POINT_CELL_H 28 #include <boost/multi_array.hpp> 48 std::size_t
dim()
const;
62 std::size_t dim,
const unsigned int* v)
const;
65 void order(
Cell& cell,
const std::vector<std::int64_t>&
66 local_to_global_vertex_indices)
const;
79 double normal(
const Cell& cell, std::size_t facet, std::size_t i)
const;
110 std::size_t find_edge(std::size_t i,
const Cell& cell)
const;
PointCell()
Specify cell type and facet type.
Definition: PointCell.h:41
std::size_t orientation(const Cell &cell) const
Return orientation of the cell.
Definition: PointCell.cpp:72
double squared_distance(const Cell &cell, const Point &point) const
Compute squared distance to given point.
Definition: PointCell.cpp:106
void order(Cell &cell, const std::vector< std::int64_t > &local_to_global_vertex_indices) const
Order entities locally (connectivity 1-0, 2-0, 2-1)
Definition: PointCell.cpp:147
std::size_t num_vertices() const
Return number of vertices for cell.
Definition: CellType.h:92
double circumradius(const MeshEntity &point) const
Compute circumradius of PointCell.
Definition: PointCell.cpp:98
double volume(const MeshEntity &triangle) const
Compute (generalized) volume (area) of triangle.
Definition: PointCell.cpp:89
std::size_t dim() const
Return topological dimension of cell.
Definition: PointCell.cpp:37
bool collides(const Cell &cell, const Point &point) const
Check whether given point is contained in cell.
Definition: PointCell.cpp:156
std::size_t num_entities(std::size_t dim) const
Return number of entities of given topological dimension.
Definition: PointCell.cpp:42
Type
Enum for different cell types.
Definition: CellType.h:51
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
Definition: PointCell.cpp:112
Definition: CellType.h:46
Point cell_normal(const Cell &cell) const
Compute normal to given cell (viewed as embedded in 1D)
Definition: PointCell.cpp:130
double facet_area(const Cell &cell, std::size_t facet) const
Definition: PointCell.cpp:139
bool is_simplex() const
Check if cell is a simplex.
Definition: PointCell.h:44
Definition: MeshEntity.h:42
This class implements functionality for point cell meshes.
Definition: PointCell.h:36
std::vector< std::int8_t > vtk_mapping() const
Mapping of DOLFIN/UFC vertex ordering to VTK/XDMF ordering.
Definition: PointCell.h:104
std::string description(bool plural) const
Return description of cell type.
Definition: PointCell.cpp:166
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: PointCell.cpp:80