Many features are incomplete. This crate is a WIP!
A rust library for shaping, placing, and rasterizing text primarily for Basalt.
```rust let ilmenite = Ilmenite::new();
ilmenite.addfont(ImtFont::fromfile( "MyFont", ImtWeight::Normal, ImtRasterOps::default(), device, queue, "MyFont.ttf" ).unwrap());
let glyphs = ilmenite.glyphsfortext( "MyFont", ImtWeight::Normal, 12.0, None, "Hello World!" ).unwrap(); ```