mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-06 21:57:47 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
/**
|
||||
@file Color3uint8.cpp
|
||||
|
||||
@author Morgan McGuire, http://graphics.cs.williams.edu
|
||||
|
||||
@created 2003-04-07
|
||||
@edited 2006-01-07
|
||||
*/
|
||||
|
||||
#include "G3D/platform.h"
|
||||
#include "G3D/g3dmath.h"
|
||||
#include "G3D/Color3uint8.h"
|
||||
#include "G3D/Color3.h"
|
||||
namespace G3D {
|
||||
|
||||
Color3uint8::Color3uint8(const class Color3& c) {
|
||||
r = iMin(255, iFloor(c.r * 256));
|
||||
g = iMin(255, iFloor(c.g * 256));
|
||||
b = iMin(255, iFloor(c.b * 256));
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user