GraphLibrary  0.0.1
A simple library that implements various graph algorithms.
 All Classes Namespaces Files Functions Variables Typedefs Macros
Color.hpp File Reference
#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)
 

Macro Definition Documentation

#define GL_FORCE_INTO_RANGE (   VAR,
  LOWER,
  UPPER 
)    VAR < LOWER ? LOWER : (VAR > UPPER ? UPPER : VAR)