From 432e6b0de18437ca5eb8ffc43cc28ef03e39160f Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Mon, 29 Aug 2022 12:37:23 -0400 Subject: [PATCH] Update SVG.md --- SVG.md | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/SVG.md b/SVG.md index 9f7cc93..15cd232 100644 --- a/SVG.md +++ b/SVG.md @@ -414,15 +414,7 @@ These tags take a `d` attribute which stands for a set of drawing commands. The #### Arcs -An arc is a command that you can add to a path that will draw part of an ellipse. To do this, we first begin with only two points: - -![two point](http://blog.arcbees.com/wp-content/uploads/svg-arc2.png) - -For any two points, there are only two ellipses with the same width/height and rotation that contain both points. In the image above, try to imagine moving the ellipses around without rotating or scaling them. As soon as you do, they loose contact with at least one of the two given points. One point might be on the ellipse, but the other won't be. - -We can use this information to draw any of the four colored arcs shown in the image above. - -Make the following code part of the `d` attribute's value on a `` element. +An arc is a command that you can add to a path that will draw part of an ellipse. To do this, we first begin with only two points. Make the following code part of the `d` attribute's value on a `` element. ``` A rx ry x-axis-rotation large-arc-flag sweep-flag x y