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

Minimal example: Chrome renders the following:

```
<?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" />
  <path transform="translate(400,150)" d = "
    M                100    0
    A 100 100 0 0 1    0  100
    A 100 100 0 0 1 -100    0
    A 100 100 0 0 1   0  -100
    A 100 100 0 0 1  100    0
    Z" />
</svg>
```

as

![image](https://user-images.githubusercontent.com/4809739/70558023-57bf2880-1b84-11ea-9aba-b3c4defdfa02.png)

Clearly showing that sweep-flag should be 1 if starting from the rightmost point and going clockwise.

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

Received on Tuesday, 10 December 2019 18:37:58 UTC