src/main.rs@f248e1434c3b
src/main.rs
Sat, 19 Oct 2024 10:46:13 -0500
- author
- Tuomo Valkonen <tuomov@iki.fi>
- date
- Sat, 19 Oct 2024 10:46:13 -0500
- changeset 5
- f248e1434c3b
- parent 4
-
e09437844ad9
- child 6
-
df9628092285
- permissions
- -rw-r--r--
Some distance functions etc.
// We use unicode. We would like to use much more of it than Rust allows.
// Live with it. Embrace it.
#![allow(uncommon_codepoints)]
#![allow(mixed_script_confusables)]
#![allow(confusable_idents)]
mod manifold;
mod fb;
mod cube;
mod dist;
fn main() {
}