* Returns color with alpha applied, alpha goes from 0.0f to 1.0f */
| 207 | * Returns color with alpha applied, alpha goes from 0.0f to 1.0f |
| 208 | */ |
| 209 | RLCPP_NODISCARD Color Alpha(float alpha) const { return ::ColorAlpha(*this, alpha); } |
| 210 | |
| 211 | Color Lerp(::Color color2, float factor) { |
| 212 | return ::ColorLerp(*this, color2, factor); |
nothing calls this directly
no outgoing calls
no test coverage detected