gl_lib 0.1.0

This package uses the gl_generator package and add some useful tools on top. An example is a textrenderer that used signed distance field. All the low level access is still avaiable
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! General object useful when need for generic and often used thing.
//! This is stuff like triangles, squares, cubes.
//!
//! The source can also serve as an inspiration or reference when implementing
//! new struct for a more specific task.


pub mod square;

pub mod cube;

pub mod bezier;

pub mod char_quad;