diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:24 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:24 +0100 |
commit | 4f068467c4954fb79e6ce297ae1ac0fdd2bdf16a (patch) | |
tree | 4b3ec44d068f71ab80e8c85a6515a8862407ac56 /stockton-types/src/components | |
parent | 5e6396ed225be9a9991705de10174b3cf085f8f0 (diff) |
WIP refactor(skeleton): type state for context
also some api improvements
closes #2
related: #7
Diffstat (limited to 'stockton-types/src/components')
-rw-r--r-- | stockton-types/src/components/mod.rs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/stockton-types/src/components/mod.rs b/stockton-types/src/components/mod.rs index 421cf9c..a90f5e8 100644 --- a/stockton-types/src/components/mod.rs +++ b/stockton-types/src/components/mod.rs @@ -59,17 +59,3 @@ pub struct CameraSettings { /// Far clipping plane (world units) pub far: f32, } - -#[derive(Clone, Copy, Debug, PartialEq)] -pub struct CameraVPMatrix { - /// The camera's VP Matrix - pub vp_matrix: Mat4, -} - -impl Default for CameraVPMatrix { - fn default() -> Self { - CameraVPMatrix { - vp_matrix: Mat4::identity(), - } - } -} |