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
78
79
80
|
use std::num::NonZeroU32;
use std::ops::Div;
use crate::reflection::Reflection;
/// 2D dimensions.
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq, Reflection)]
#[reflection(impl_with_generics(<f32>, <f64>, <u32>, <u16>))]
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<Value: Div<Output = Value> + Clone> Div<Value> for Dimens<Value>
{
type Output = Self;
fn div(self, rhs: Value) -> Self::Output
{
Self {
width: self.width / rhs.clone(),
height: self.height / rhs,
}
}
}
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, Reflection)]
#[reflection(impl_with_generics(<f32>, <f64>, <u32>, <u16>))]
pub struct Dimens3<Value>
{
pub width: Value,
pub height: Value,
pub depth: Value,
}
impl<Value> From<[Value; 3]> for Dimens3<Value>
{
fn from([width, height, depth]: [Value; 3]) -> Self
{
Self { width, height, depth }
}
}
impl<Value> From<Dimens3<Value>> for [Value; 3]
{
fn from(Dimens3 { width, height, depth }: Dimens3<Value>) -> Self
{
[width, height, depth]
}
}
|