![]() |
#include <CGAL/Fourtuple.h>
| typedef T | value_type; | |
| T | e0; | first element |
| T | e1; | second element |
| T | e2; | third element |
| T | e3; | fourth element |
| Fourtuple<T> t; | |
|
introduces a Fourtuple<T> using the default
constructor of the elements.
| |
| Fourtuple<T> t ( T x, T y, T z, T t); | |
|
constructs a Fourtuple<T> such
that e0 is constructed from x, e1 from y,
e2 from z and e3 from t.
| |