50 #ifndef COLORGENERATOR_HH_
51 #define COLORGENERATOR_HH_
53 #include <ACG/Math/VectorT.hh>
54 #include "../Config/ACGDefines.hh"
70 virtual Vec4f generateNextColor() = 0;
84 template <
class OUTPUT_ITERATOR>
86 for (
int i = 0; i < n; ++i)
87 *oit++ = this->generateNextColor();
Namespace providing different geometric functions concerning angles.
void generateNextNColors(int n, OUTPUT_ITERATOR oit)