-
Notifications
You must be signed in to change notification settings - Fork 779
Closed
Description
I keep stumbling on use cases that need trigonometric functions to be solved, and I always have to resort to JS or a preprocessor for them, which is a pain. Basically almost any time you need to match two things and angles are involved.
Sadly I couldn't find most of my use cases, but here are two:
- https://codepen.io/leaverou/pen/JpyZMO - cos, atan (via JS)
- play.csssecrets.io/folded-corner-realistic — sin, cos (precomputed)
Also the following use sqrt (precomputed), but would need trigonometry in the general case :
- play.csssecrets.io/inner-rounding
- play.csssecrets.io/diamond-images
- play.csssecrets.io/bevel-corners
- play.csssecrets.io/folded-corner
(credits: @MeFoDy for collecting these from my book)
What do you think? Can we make it happen?
Reactions are currently unavailable