#include <Edge.h>
Definition at line 12 of file Edge.h.
◆ operator[]() [1/2]
◆ operator()() [1/2]
◆ operator()() [2/2]
R2 bamg::Edge::operator() |
( |
double |
t | ) |
const |
◆ operator[]() [2/2]
const BamgVertex& bamg::Edge::operator[] |
( |
int |
i | ) |
const |
|
inline |
◆ Renumbering()
Definition at line 34 of file Edge.cpp.
36 if (
v[0] >=vb &&
v[0] <ve)
v[0] = vb + renu[
v[0]-vb];
37 if (
v[1] >=vb &&
v[1] <ve)
v[1] = vb + renu[
v[1]-vb];
◆ Intersection()
int bamg::Edge::Intersection |
( |
const Edge & |
e | ) |
|
Definition at line 41 of file Edge.cpp.
44 if (!(
adj[0]==&e ||
adj[1]==&e)){
_error_(
"Intersection bug"); }
47 return adj[0]==&e?0:1;
◆ Set()
void bamg::Edge::Set |
( |
const Mesh & |
Th, |
|
|
long |
i, |
|
|
Mesh & |
ThNew |
|
) |
| |
Definition at line 16 of file Edge.cpp.
18 v[0] = ThNew.vertices + Th.GetId(
v[0]);
19 v[1] = ThNew.vertices + Th.GetId(
v[1]);
22 if (
adj[0])
adj[0] = ThNew.edges + Th.GetId(
adj[0]);
23 if (
adj[1])
adj[1] = ThNew.edges + Th.GetId(
adj[1]);
◆ Echo()
void bamg::Edge::Echo |
( |
void |
| ) |
|
Definition at line 26 of file Edge.cpp.
28 _printf_(
" pointers towards two vertices: " <<
v[0] <<
" " <<
v[1] <<
"\n");
31 _printf_(
" two adjacent edges on the same curve: " <<
adj[0] <<
" " <<
adj[1] <<
"\n");
◆ ReferenceNumber
long bamg::Edge::ReferenceNumber |
◆ GeomEdgeHook
◆ adj
The documentation for this class was generated from the following files: