Sat, 19 Oct 2024 10:46:13 -0500
Some distance functions etc.
4 | 1 | |
2 | // We use unicode. We would like to use much more of it than Rust allows. | |
3 | // Live with it. Embrace it. | |
4 | #![allow(uncommon_codepoints)] | |
5 | #![allow(mixed_script_confusables)] | |
6 | #![allow(confusable_idents)] | |
1 | 7 | |
8 | mod manifold; | |
4 | 9 | mod fb; |
1 | 10 | mod cube; |
5 | 11 | mod dist; |
1 | 12 | |
13 | fn main() { | |
14 | ||
15 | } |