From 14a184812c3aa75404c13c3f87206bbbb3ff6e8c Mon Sep 17 00:00:00 2001 From: occamsshavingkit Date: Sun, 16 Oct 2022 13:29:55 +0200 Subject: [PATCH] Update Adafruit_GFX.h clang --- Adafruit_GFX.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Adafruit_GFX.h b/Adafruit_GFX.h index 608ba77..68f72f1 100644 --- a/Adafruit_GFX.h +++ b/Adafruit_GFX.h @@ -229,10 +229,11 @@ public: /************************************************************************/ int16_t getCursorY(void) const { return cursor_y; } - /*! An enumeration on whether a polygon should be drawn circumscribed or inscribed. */ + /*! An enumeration on whether a polygon should be drawn circumscribed or + * inscribed. */ enum regPolyType { - REG_POLY_CIRCUMSCRIBED, /*!< given radius is for a circumscribed poly */ - REG_POLY_INSCRIBED /*!< given radius is for an inscribed poly */ + REG_POLY_CIRCUMSCRIBED, /*!< given radius is for a circumscribed poly */ + REG_POLY_INSCRIBED /*!< given radius is for an inscribed poly */ }; void drawPolygon(uint16_t, uint16_t, ...);