summaryrefslogtreecommitdiff
path: root/engine/src/data_types/dimens.rs
blob: 8bf239f378fef2a2a50c1f7eb727b80cb29ae8ae (plain)
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
use std::num::NonZeroU32;

/// 2D dimensions.
#[derive(Debug, Clone, Copy)]
pub struct Dimens<Value>
{
    pub width: Value,
    pub height: Value,
}

impl<Value: Clone> From<Value> for Dimens<Value>
{
    fn from(value: Value) -> Self
    {
        Self { width: value.clone(), height: value }
    }
}

impl<Value> From<(Value, Value)> for Dimens<Value>
{
    fn from(value: (Value, Value)) -> Self
    {
        Self { width: value.0, height: value.1 }
    }
}

impl Dimens<u32>
{
    #[must_use]
    pub fn try_into_nonzero(self) -> Option<Dimens<NonZeroU32>>
    {
        Some(Dimens {
            width: NonZeroU32::new(self.width)?,
            height: NonZeroU32::new(self.height)?,
        })
    }
}

/// 3D dimensions.
#[derive(Debug, Clone, Copy, PartialEq, PartialOrd)]
pub struct Dimens3<Value>
{
    pub width: Value,
    pub height: Value,
    pub depth: Value,
}

impl<Value: Clone> From<Value> for Dimens3<Value>
{
    fn from(value: Value) -> Self
    {
        Self {
            width: value.clone(),
            height: value.clone(),
            depth: value,
        }
    }
}

impl<Value: Clone> From<(Value, Value, Value)> for Dimens3<Value>
{
    fn from(value: (Value, Value, Value)) -> Self
    {
        Self {
            width: value.0,
            height: value.1,
            depth: value.2,
        }
    }
}