-
Hey, I've been looking trough the code earlier to try understand how the rasterization process works, Can someone explain me what is the reasoning behind having your own sqrt implementation over the one provided by rust? |
Beta Was this translation helpful? Give feedback.
Answered by
mooman219
Aug 29, 2021
Replies: 1 comment 1 reply
-
Some platforms that fontdue compiles for don't support the standard library, so f32::sqrt isn't available. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
JavaDerg
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Some platforms that fontdue compiles for don't support the standard library, so f32::sqrt isn't available.