From ed5484e77057d01f62ec750ab14c6cc87037fcea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Lehni?= Date: Mon, 20 Jun 2011 15:36:27 +0100 Subject: [PATCH] StrokeBounds example: Fix arcTo() direction. --- examples/Scripts/StrokeBounds.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Scripts/StrokeBounds.html b/examples/Scripts/StrokeBounds.html index c9407c37..8b34a575 100644 --- a/examples/Scripts/StrokeBounds.html +++ b/examples/Scripts/StrokeBounds.html @@ -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);