From 4d47c31567361c0922da34135101505c652c350f Mon Sep 17 00:00:00 2001 From: Rob Loach Date: Thu, 22 Jun 2023 12:26:59 -0400 Subject: [PATCH] Revert "Revert "Replaced GenImageGradientH / V with GenImageGradientLinear"" --- include/Image.hpp | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) 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); } /**