[Fixed]SColorf getInterpolated_quadratic

You discovered a bug in the engine, and you are sure that it is not a problem of your code? Just post it in here. Please read the bug posting guidelines first.
Post Reply
REDDemon
Developer
Posts: 1044
Joined: Tue Aug 31, 2010 8:06 pm
Location: Genova (Italy)

[Fixed]SColorf getInterpolated_quadratic

Post by REDDemon »

I think that the line 428 of the file "SColor.h" has a little bug due
to mis-typing:

Code: Select all

g * mul0 + c1.b * mul1 + c2.b * mul2
should be:

Code: Select all

b * mul0 + c1.b * mul1 + c2.b * mul2
Junior Irrlicht Developer.
Real value in social networks is not about "increasing" number of followers, but about getting in touch with Amazing people.
- by Me
hybrid
Admin
Posts: 14143
Joined: Wed Apr 19, 2006 9:20 pm
Location: Oldenburg(Oldb), Germany
Contact:

Post by hybrid »

Yes, indeed. Seems like a copy-paste error. Fixed. Thanks.
Post Reply