1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
use std::ops::{Add, Div, Neg, Sub};

use num_traits::{One, Zero};

pub type ScreenSpace = figures::Pixels;
pub type WorldSpace = figures::Scaled;

#[derive(Clone, Copy, Debug)]
pub struct ScreenTransformation<S>([S; 16]);

impl<S> ScreenTransformation<S>
where
    S: Add<S, Output = S>
        + Sub<S, Output = S>
        + Div<S, Output = S>
        + One
        + Zero
        + Neg<Output = S>
        + Copy,
{
    pub fn ortho(left: S, top: S, right: S, bottom: S, near: S, far: S) -> Self {
        let tx = -((right + left) / (right - left));
        let ty = -((top + bottom) / (top - bottom));
        let tz = -((far + near) / (far - near));

        let zero = S::zero();
        let one = S::one();
        // I never thought I'd write this as real code
        let two = one + one;
        Self([
            // Row one
            two / (right - left),
            zero,
            zero,
            zero,
            // Row two
            zero,
            two / (top - bottom),
            zero,
            zero,
            // Row three
            zero,
            zero,
            -two / (far - near),
            zero,
            // Row four
            tx,
            ty,
            tz,
            one,
        ])
    }
}

impl<S> ScreenTransformation<S>
where
    S: One + Zero + Copy,
{
    #[rustfmt::skip]
    pub fn identity() -> Self {
        let zero = S::zero();
        let one = S::one();
        Self([
            one , zero, zero, zero,
            zero, one , zero, zero,
            zero, zero, one , zero,
            zero, zero, zero, one ,
        ])
    }
}

impl<S> ScreenTransformation<S> {
    #[rustfmt::skip]
    pub fn to_array(self) -> [S; 16] {
        self.0
    }
}