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
|
/// 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 }
}
}
/// 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,
}
}
}
|