drawings_of_cliques
|
Structure to store the edge containing information about next_
, prev_
, opposite_
edges and vertices and face incident to it.
More...
#include <functions.hpp>
Public Member Functions | |
Edge () | |
Edge (Edge *next, Edge *prev, Edge *opposite, shared_ptr< Vertex > from, shared_ptr< Vertex > to, shared_ptr< Face > face, int index) | |
bool | operator== (const Edge &a) |
bool | operator!= (const Edge &a) |
Public Attributes | |
int | index_ = 0 |
Edge * | next_ |
Edge * | prev_ |
Edge * | opposite_ |
shared_ptr< Vertex > | from_ |
shared_ptr< Vertex > | to_ |
shared_ptr< Face > | face_ |
Structure to store the edge containing information about next_
, prev_
, opposite_
edges and vertices and face incident to it.
|
inline |
|
inline |
|
inline |
|
inline |
shared_ptr<Face> Edge::face_ |
shared_ptr<Vertex> Edge::from_ |
int Edge::index_ = 0 |
Edge* Edge::next_ |
Edge* Edge::opposite_ |
Edge* Edge::prev_ |
shared_ptr<Vertex> Edge::to_ |