diff --git a/include/Image.hpp b/include/Image.hpp index 5bc7d087..a6d60d31 100644 --- a/include/Image.hpp +++ b/include/Image.hpp @@ -131,17 +131,10 @@ class Image : public ::Image { } /** - * Generate image: vertical gradient + * Generate image: linear gradient */ - static ::Image GradientV(int width, int height, ::Color top, ::Color bottom) { - return ::GenImageGradientV(width, height, top, bottom); - } - - /** - * Generate image: horizontal gradient - */ - static ::Image GradientH(int width, int height, ::Color left, ::Color right) { - return ::GenImageGradientH(width, height, left, right); + static ::Image GradientLinear(int width, int height, int direction, ::Color start, ::Color end) { + return ::GenImageGradientLinear(width, height, direction, start, end); } /**