unicode-shaper 0.3.0

Shape unicode text so that renderers like WebGL and WebGPU can properly display the glyphs.
Documentation
1
2
3
4
/// Check if a unicode character is Thai
pub fn is_thai(c: &u16) -> bool {
    *c >= 0xfe70 && *c <= 0xfeff
}