There was an error while loading. Please reload this page.
1 parent e3abb40 commit a861b3bCopy full SHA for a861b3b
1 file changed
src/Processing.h
@@ -1217,6 +1217,13 @@ static constexpr int MITER = 8;
1217
static constexpr int BEVEL = 32;
1218
1219
// beginShape() kinds
1220
+// Vertex type constants
1221
+static constexpr int VERTEX = 0;
1222
+static constexpr int BEZIER_VERTEX = 1;
1223
+static constexpr int QUADRATIC_VERTEX = 2;
1224
+static constexpr int CURVE_VERTEX = 3;
1225
+static constexpr int BREAK = 4;
1226
+
1227
// Shape primitive type constants (for createShape/PShape)
1228
static constexpr int GROUP = 0;
1229
static constexpr int POINT = 2;
0 commit comments