aboutsummaryrefslogtreecommitdiff
path: root/hgehelp/hgecolor.cpp
diff options
context:
space:
mode:
authorGravatar chirs241097@gmail.com <chirs241097@gmail.com@c17bf020-1265-9734-9302-a83f62007ddb> 2014-03-15 02:29:19 +0000
committerGravatar chirs241097@gmail.com <chirs241097@gmail.com@c17bf020-1265-9734-9302-a83f62007ddb> 2014-03-15 02:29:19 +0000
commit856c345feca062fdfc0b177e0de25489fb1b0c06 (patch)
tree9018cf4f5245e3b6533e86dfa8ca8486a5859498 /hgehelp/hgecolor.cpp
parentf2ce3ddfcb72fc3026ba85bd41849fa1886877e4 (diff)
downloadbullet-lab-remix-856c345feca062fdfc0b177e0de25489fb1b0c06.tar.xz
Extend hge with a 3D Rotation method, it's not tested yet.
Fix probable compile errors due to includes.
Diffstat (limited to 'hgehelp/hgecolor.cpp')
-rw-r--r--hgehelp/hgecolor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/hgehelp/hgecolor.cpp b/hgehelp/hgecolor.cpp
index 5ae512d..561a9cc 100644
--- a/hgehelp/hgecolor.cpp
+++ b/hgehelp/hgecolor.cpp
@@ -7,7 +7,7 @@
*/
-#include "../../include/hgecolor.h"
+#include "hgecolor.h"
#include <math.h>
#ifndef min
@@ -50,7 +50,7 @@ void hgeColorHSV::SetHWColor(DWORD col)
if (r == maxv) {h = del_B - del_G;}
else if (g == maxv) {h = (1.0f / 3.0f) + del_R - del_B;}
else if (b == maxv) {h = (2.0f / 3.0f) + del_G - del_R;}
-
+
if (h < 0) h += 1;
if (h > 1) h -= 1;
}