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
// This file is part of "linbra"
// Under the MIT License
// Copyright (c) 2023 Antonin Hérault
//! Traits to get width, height and depths values of a 2d-objects or 3d-objects,
//! and constructors for these sizes.
use ops;
use crate;
/// Implements functions to retrieve the width and the height of the size
/// vector.
/// Implements the [`Size2`] trait for vectors 2.
/// Implements the [`Size2`] trait for vectors 3.
/// Implements a constructor for 2d-sizes.
///
/// ## Example
/// ```
/// use linbra::{
/// sizes::Size2,
/// vector::Vector2
/// };
///
/// let size = Vector2::size(10, 5);
///
/// assert_eq!(size.w(), 10);
/// assert_eq!(size.h(), 5);
/// ```
/// Implements a function to retrieve the depth of the size vector.
/// Implements a constructor for 3d-sizes.
///
/// ## Example
/// ```
/// use linbra::{
/// sizes::{ Size2, Size3 },
/// vector::Vector2
/// };
///
/// let size = Vector3::size(10, 5, 2);
///
/// assert_eq!(size.w(), 10);
/// assert_eq!(size.h(), 5);
/// assert_eq!(size.d(), 2);
/// ```