- From: Oriol Brufau via GitHub <noreply@w3.org>
- Date: Wed, 01 Oct 2025 20:18:35 +0000
- To: public-css-archive@w3.org
And for comparison, the current spec would be:
```js
function adjusted_radius(radius_width, radius_height, edge_width, edge_height, spread) {
return [radius_width, radius_height].map(value => {
if (value >= spread)
return value + spread;
let r = 1 - value / spread;
return value + spread * (1 - r**3);
});
}
```
--
GitHub Notification of comment by Loirooriol
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/7103#issuecomment-3357991263 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Wednesday, 1 October 2025 20:18:36 UTC