Re: [csswg-drafts] [css-shapes] Find a way to create a polygon with rounded-corners and non-absolute coordinates (#5674)

@tabatkins 
WDYT, more like this:
`clip-path: path(
    move(to 12px calc(8em - 1px)),
    line(to 50% 50%),
    curve(to 20px var(--something)),
    quadratic-curve(by 2px 8px),
    close()
)`
or like this:
`clip-path: path(
    M 12px calc(8em - 1px),
    L 50% 50%,
    C 20px var(--something),
    q 2px 8px,
    Z
)`


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


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

Received on Thursday, 29 October 2020 17:24:27 UTC