CGAL 5.1 - STL Extensions for CGAL
|
#include <CGAL/Sixtuple.h>
The Sixtuple
class stores a homogeneous (same type) sixtuple of objects of type T
. A Sixtuple
is much like a container, in that it "owns" its elements. It is not actually a model of container, though, because it does not support the standard methods (such as iterators) for accessing the elements of a container.
<tt>T</tt> | must be Assignable . |
Types | |
typedef T | value_type |
Variables | |
T | e0 |
first element More... | |
T | e1 |
second element More... | |
T | e2 |
third element More... | |
T | e3 |
fourth element More... | |
T | e4 |
fifth element More... | |
T | e5 |
sixth element More... | |
Creation | |
Sixtuple () | |
introduces a Sixtuple using the default constructor of the elements. More... | |
Sixtuple (T x, T y, T z, T t, T u, T v) | |
constructs a Sixtuple such that e0 is constructed from x , e1 from y , e2 from z , e3 from t , e4 from u and e5 from v . More... | |
typedef T CGAL::Sixtuple< T >::value_type |
CGAL::Sixtuple< T >::Sixtuple | ( | ) |
introduces a Sixtuple
using the default constructor of the elements.
CGAL::Sixtuple< T >::Sixtuple | ( | T | x, |
T | y, | ||
T | z, | ||
T | t, | ||
T | u, | ||
T | v | ||
) |
constructs a Sixtuple
such that e0
is constructed from x
, e1
from y
, e2
from z
, e3
from t
, e4
from u
and e5
from v
.
T CGAL::Sixtuple< T >::e0 |
first element
T CGAL::Sixtuple< T >::e1 |
second element
T CGAL::Sixtuple< T >::e2 |
third element
T CGAL::Sixtuple< T >::e3 |
fourth element
T CGAL::Sixtuple< T >::e4 |
fifth element
T CGAL::Sixtuple< T >::e5 |
sixth element