#include <cstdio>#include <cstring>#include <cctype>#include "color.h"Include dependency graph for color.cpp:

Go to the source code of this file.
Functions | |
| template<class T> | |
| T | clamp (T x) |
|
||||||||||
|
Definition at line 18 of file color.cpp. 00019 {
00020 if (x < 0)
00021 return 0;
00022 else if (x > 1)
00023 return 1;
00024 else
00025 return x;
00026 }
|
1.4.1