Skip to content

Commit fa45041

Browse files
committed
Add OPEN/CHORD/PIE arc mode constants
1 parent 06700ef commit fa45041

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

src/Processing.h

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1204,7 +1204,11 @@ static constexpr int TRIANGLE_FAN = 3;
12041204
static constexpr int TRIANGLE_STRIP = 4;
12051205
static constexpr int QUADS = 5;
12061206
static constexpr int QUAD_STRIP = 6;
1207-
static constexpr int CLOSE = 7;
1207+
static constexpr int CLOSE = 2;
1208+
// Arc modes
1209+
static constexpr int OPEN = 1;
1210+
static constexpr int CHORD = 2;
1211+
static constexpr int PIE = 3;
12081212

12091213
// Text alignment
12101214
// Text alignment internal constants

0 commit comments

Comments
 (0)