StrokeBounds example: Fix arcTo() direction.

This commit is contained in:
Jürg Lehni 2011-06-20 15:36:27 +01:00
parent 07d3cbb807
commit ed5484e770

View file

@ -14,7 +14,7 @@
path.lineTo(230, 100);
path.lineTo(250, 50);
path.lineTo(280, 110);
path.arcTo([250, 20]);
path.arcTo([250, 20], false);
path.rotate(-5);
path.strokeWidth = 30;
paths.push(path);