Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7919 in orxonox.OLD for trunk/src/lib/util


Ignore:
Timestamp:
May 28, 2006, 3:48:13 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: merged the gui branche back
merged with command:
https://svn.orxonox.net/orxonox/branches/gui
no conflicts

Location:
trunk/src/lib/util
Files:
1 edited
2 copied

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/util/color.cc

    r7195 r7919  
    113113  }
    114114  else {
    115    if(h == 360.)
    116      h = 0.0;
     115   if(h >= 360.)
     116     h = h - (float)((int)(ceilf(h) / 360.0));
    117117    h /= 60.;
    118118    i = (int) h;
Note: See TracChangeset for help on using the changeset viewer.