mirror of https://github.com/axmolengine/axmol.git
Fix typo in HSV/HSL classes. (#647)
Co-authored-by: 一线灵 <halx99@live.com>
This commit is contained in:
parent
547b358778
commit
6943fb9dce
|
@ -194,7 +194,7 @@ struct CC_DLL HSV
|
||||||
|
|
||||||
bool equals(const HSV& other) const { return (*this == other); }
|
bool equals(const HSV& other) const { return (*this == other); }
|
||||||
|
|
||||||
void set(float r, float f, float b, float a = 1.0F);
|
void set(float r, float g, float b, float a = 1.0F);
|
||||||
void get(float& r, float& g, float& b) const;
|
void get(float& r, float& g, float& b) const;
|
||||||
|
|
||||||
Color3B toColor3B();
|
Color3B toColor3B();
|
||||||
|
|
Loading…
Reference in New Issue