From a1db83822062bad991fe4fb478be4bf2e759c35c Mon Sep 17 00:00:00 2001 From: Brian Date: Tue, 4 Feb 2025 12:14:28 -0700 Subject: [PATCH] Manual/Meters/Shape/Arc: Fixed interactive arc shape example --- source/manual/meters/shape/arc.html | 2 +- source/manual/meters/shape/arc.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/manual/meters/shape/arc.html b/source/manual/meters/shape/arc.html index 53a6f2afc..0b803d640 100644 --- a/source/manual/meters/shape/arc.html +++ b/source/manual/meters/shape/arc.html @@ -13,8 +13,8 @@

Angle:

-

Large Arc flag:

Sweep flag:

+

Large Arc flag:

Arc javascript inspired by: SitePoint.com.


diff --git a/source/manual/meters/shape/arc.js b/source/manual/meters/shape/arc.js index 92b7af96a..5e7a8e4f0 100644 --- a/source/manual/meters/shape/arc.js +++ b/source/manual/meters/shape/arc.js @@ -71,7 +71,7 @@ if (code) { var d1 = point.p1.x + "," + point.p1.y + "," + point.p2.x + "," + point.p2.y + "," + rx + "," + ry + "," + angle + "," + - large + "," + sweep + "," + + sweep + "," + large + "," + (fill ? "1" : "0"); code.textContent = 'Shape=Arc '+ d1; }