Re: [csswg-drafts] [css-shapes-2] In `shape()` It should be possible to specify control points relative to their point on the curve (#10667)

I think we could also simplify things by collapsing the different segment types by using `auto`. For example, `hline` could 
be:

```
line to auto, 30px
```

 and `vline` could be:

```
line to 50px, auto
```

We could also collapse `smooth` into `curve`:

The smooth cubic curve `smooth to 120px 140px with 150px 200px` could be:
```
curve to 120px 140px with auto / 150px 200px
```

and the smooth quadratic curve `smooth to 120px 140px` could be:
```
curve to 120px 140px with auto
```



-- 
GitHub Notification of comment by smfr
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/10667#issuecomment-2375435218 using your GitHub account


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

Received on Wednesday, 25 September 2024 23:18:27 UTC