shipyard_scenegraph 0.6.1

Scenegraph for Entity Component System
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
The math was taken and adapted from various places on the internet
Specifically, from gl-matrix and the gltf-rs crate (which in turn took from cg_math)

The idea is that we have a very minimal math lib with no dependencies for small projects
Currently there's a ton of stuff missing
*/

mod aliases;
mod matrix4;
mod vec3;
mod vec4;

pub use aliases::*;
pub use matrix4::*;
pub use vec3::*;
pub use vec4::*;