implemented SymbolFilter

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@70 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
twanvl
2006-10-31 17:58:29 +00:00
parent 5b56e8ee11
commit 2dd93a91fb
10 changed files with 305 additions and 61 deletions
+3
View File
@@ -109,5 +109,8 @@ inline int bot(int x) { return max(0, x); } ///< bottom range check for color
inline int top(int x) { return min(255, x); } ///< top range check for color values
inline int col(int x) { return top(bot(x)); } ///< top and bottom range check for color values
/// Linear interpolation between colors
Color lerp(const Color& a, const Color& b, double t);
// ----------------------------------------------------------------------------- : EOF
#endif