So, to append a rectangle to a Path, you can do this
Path2D rect = new Path2D.Double();
rect.append(new Rectangle(10, 10, 100, 10), true);
What I want to do is something like this:
Path2D circ = new Path2D.Double();
circ.append(new Circle(... params) true);
Is there a way to do this? Thanks.