Re: [svgwg] Incorrect sweep-flag in circle/ellipse equivalent path (#765)

You can draw a circle in different ways using paths, so that's a bit tricky.

```
<?xml version="1.0" standalone="no"?>
<svg width="550px" height="300px" viewBox="0 0 550 300" xmlns="http://www.w3.org/2000/svg">
   <path transform="translate(150,150)" d="
     M                100    0
    A 100 100 0 0 0   0   -100
    A 100 100 0 0 0 -100    0
    A 100 100 0 0 0   0  100
    A 100 100 0 0 0  100   0       Z" />
</svg>
```

draws a circle, with a sweep-flag set to 0. 
The example in the 2nd comment is not from the spec prose, so it's difficult to interpret this as a spec bug.

-- 
GitHub Notification of comment by caribouW3
Please view or discuss this issue at https://github.com/w3c/svgwg/issues/765#issuecomment-2007731066 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Tuesday, 19 March 2024 17:18:00 UTC