//////////////////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////////////////// More...
#include <mesh.h>
Public Member Functions | |
Edge (Node *node1_pt, Node *node2_pt) | |
Constructor: Pass in the two vertex nodes. More... | |
Node * | node1_pt () const |
Access to the first vertex node. More... | |
Node * | node2_pt () const |
Access to the second vertex node. More... | |
bool | operator== (const Edge &other) const |
Comparison operator. More... | |
bool | operator< (const Edge &other) const |
Less-than operator. More... | |
bool | is_on_boundary () const |
Test whether the Edge lies on a boundary. Relatively simple test, based on both vertices lying on (some) boundary. More... | |
bool | is_boundary_edge () const |
Test whether the Edge is a boundary edge, i.e. does it connnect two boundary nodes? More... | |
Private Attributes | |
Node * | Node1_pt |
First vertex node. More... | |
Node * | Node2_pt |
Second vertex node. More... | |
//////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////
Edge class
Constructor: Pass in the two vertex nodes.
Definition at line 2695 of file mesh.h.
References node1_pt(), Node1_pt, node2_pt(), and Node2_pt.
|
inline |
|
inline |
|
inline |
Access to the first vertex node.
Definition at line 2723 of file mesh.h.
References Node1_pt.
Referenced by Edge(), operator<(), operator==(), and oomph::ThinLayerBrickOnTetMesh< ELEMENT >::ThinLayerBrickOnTetMesh().
|
inline |
Access to the second vertex node.
Definition at line 2729 of file mesh.h.
References Node2_pt.
Referenced by Edge(), operator<(), operator==(), and oomph::ThinLayerBrickOnTetMesh< ELEMENT >::ThinLayerBrickOnTetMesh().
|
inline |
Less-than operator.
Definition at line 2750 of file mesh.h.
References node1_pt(), Node1_pt, node2_pt(), and Node2_pt.
|
inline |
Comparison operator.
Definition at line 2735 of file mesh.h.
References node1_pt(), Node1_pt, node2_pt(), and Node2_pt.
|
private |
First vertex node.
Definition at line 2791 of file mesh.h.
Referenced by Edge(), is_boundary_edge(), is_on_boundary(), node1_pt(), operator<(), and operator==().
|
private |
Second vertex node.
Definition at line 2794 of file mesh.h.
Referenced by Edge(), is_boundary_edge(), is_on_boundary(), node2_pt(), operator<(), and operator==().