|
GraphLibrary
0.0.1
A simple library that implements various graph algorithms.
|
#include <cmath>#include <unordered_map>#include <string>#include <functional>#include <sstream>#include <iomanip>Go to the source code of this file.
Classes | |
| class | gl::Color |
| Stores an RGBA Color. More... | |
Namespaces | |
| gl | |
Macros | |
| #define | GL_FORCE_INTO_RANGE(VAR, LOWER, UPPER) VAR < LOWER ? LOWER : (VAR > UPPER ? UPPER : VAR) |
| #define GL_FORCE_INTO_RANGE | ( | VAR, | |
| LOWER, | |||
| UPPER | |||
| ) | VAR < LOWER ? LOWER : (VAR > UPPER ? UPPER : VAR) |