mod.rs

173 B · rust · 7 lines

1/// The flat float buffer that carries triangles and lines to the shader.2pub mod pack;3/// The three-component vector.4pub mod vec;56pub use pack::Pack;7pub use vec::Vec3;