Skip to content

Commit fbf5b82

Browse files
removed arc function definition
1 parent 900fb33 commit fbf5b82

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ArduinoGraphics.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ class ArduinoGraphics : public Print {
6666
virtual void rect(int x, int y, int width, int height);
6767
virtual void ellipse(int x, int y, int width, int height);
6868
virtual void circle(int x, int y, int radius);
69-
virtual void arc(int x, int y, int radiusX, int radiusY, int start, int stop);
69+
// virtual void arc(int x, int y, int radiusX, int radiusY, int start, int stop);
7070

7171
virtual void text(const char* str, int x = 0, int y = 0);
7272
virtual void text(const String& str, int x = 0, int y = 0) { text(str.c_str(), x, y); }

0 commit comments

Comments
 (0)