diff --git a/core/src/processing/core/PShape.java b/core/src/processing/core/PShape.java index 05bc4e18a..7d6f1d7a5 100644 --- a/core/src/processing/core/PShape.java +++ b/core/src/processing/core/PShape.java @@ -1604,9 +1604,9 @@ public class PShape implements PConstants { } else if (family == PRIMITIVE) { drawPrimitive(g); } else if (family == GEOMETRY) { - // same as path - drawPath(g); -// drawGeometry(g); + // Not same as path: `kind` matters. +// drawPath(g); + drawGeometry(g); } else if (family == PATH) { drawPath(g); } @@ -3442,4 +3442,4 @@ public class PShape implements PConstants { calcAlpha = (calcAi != 255); } -} \ No newline at end of file +}