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