utils: Añadida la función randColor
This commit is contained in:
@@ -602,3 +602,13 @@ color_t lightenColor(color_t color, int amount)
|
|||||||
newColor.b = min(255, color.b + amount);
|
newColor.b = min(255, color.b + amount);
|
||||||
return newColor;
|
return newColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Obtiene un color aleatorio
|
||||||
|
color_t randColor()
|
||||||
|
{
|
||||||
|
color_t newColor;
|
||||||
|
newColor.r = rand() % 256;
|
||||||
|
newColor.g = rand() % 256;
|
||||||
|
newColor.b = rand() % 256;
|
||||||
|
return newColor;
|
||||||
|
}
|
||||||
@@ -207,4 +207,7 @@ color_t darkenColor(color_t color, int amount);
|
|||||||
// Aclara un color
|
// Aclara un color
|
||||||
color_t lightenColor(color_t color, int amount);
|
color_t lightenColor(color_t color, int amount);
|
||||||
|
|
||||||
|
// Obtiene un color aleatorio
|
||||||
|
color_t randColor();
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
Reference in New Issue
Block a user