Closed
Description
Most appropriate sub-area of Processing 4?
Image
Processing version
commit 87fb351
Operating system
Linux
Steps to reproduce this
"1. Create a new sketch and enter the code snippet below.
-
Put
rects.svg
attached todata
folder. -
Run, and you'll see ten squares whose corners are not rounded."
snippet
PShape shapeRects;
void setup() {
size(400,300);
shapeRects = loadShape("rects.svg");
}
void draw() {
background(#AABBCC);
shape(shapeRects, 40, 50, 320, 200);
}
Additional context
SVG <rect>
element should be parsed following https://www.w3.org/TR/SVG11/shapes.html#RectElement
Would you like to work on the issue?
Yes