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
/// Trait for calculating the area of a two-dimensional object
/// # Usage
/// ```
/// use mathol::geometrics::traits::Area;
/// ```
/// Trait for calculating the perimeter of a two-dimensional object
/// # Usage
/// ```
/// use mathol::geometrics::traits::Perimeter;
/// ```
/// Trait for calculating the internal diagonal of two- or three-dimensional objects
/// # Usage
/// ```
/// use mathol::geometrics::traits::Diagonal;
/// ```
/// Trait for calculating the height of an object
/// # Usage
/// ```
/// use mathol::geometrics::traits::Height;
/// ```
/// Trait for calculating the volume of a three-dimensional object
/// # Usage
/// ```
/// use mathol::geometrics::traits::Volume;
/// ```
/// Trait for calculating the surface of a three-dimensional object
/// # Usage
/// ```
/// use mathol::geometrics::traits::Surface;
/// ```
/// Trait for calculating the lateral surface of some three-dimensional objects
/// # Usage
/// ```
/// use mathol::geometrics::traits::Lateral;
/// ```