spottedcat 0.5.5

Rusty SpottedCat simple game engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Graphics module - split into focused submodules for readability.
//!
//! This module provides the core graphics functionality for rendering
//! images, text, and custom shaders.

mod core;
mod font;
mod image_ops;
mod profile;
mod render;
mod shader;
mod model_raw;
mod text_layout;

pub use core::Graphics;
pub use core::{Bone, SkinData};
pub use core::{identity, create_scale, create_rotation_from_quat};
pub use model_raw::{multiply, create_translation, create_rotation, create_perspective, Light, SceneGlobals};