xege 0.3.0

Rust style safe warpper of C++ graphics libraries.
Documentation
use nalgebra::{ vector};
use nalgebra_glm::{rotate2d, translation2d};
use xege::*;

fn main() {
    let mut xege = initgraph(1600, 900, Init::NoSysDPI).unwrap();

    xege.setbkcolor(color::WHITE);
    xege.setcolor(color::BLACK);
    xege.clear();
    xege.setfont(Font {
        facename: "Segoe UI Emoji".to_string(),
        ..Default::default()
    });

    HighDraw::outtextxy(&mut xege, 250f32, 250f32, "Unicode 字符 🤣😍😊");

    let mat = translation2d(&vector![100.0, 100.0]);
    let mat = rotate2d(&mat, 45.0);
    xege.set_transform(mat);

    HighDraw::outtextxy(&mut xege, 0f32, 0f32, "Unicode 字符 🤣😍😊");

    loop {}
}