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
use Num;
use Convert;
/// Custom function for calculating an exponentiation.
/// # Remarks
/// Returns the result of the exponentiation
/// # Example
/// ```
/// use mathol::basics::pow;
///
/// let result = pow(3, 2);
/// assert_eq!(9, result);
///
/// let result = pow(2.5, 2);
/// assert_eq!(6.25, result);
/// ```
/// Pythagorean theorem in 2D euclidean space functionality
/// # Remarks
/// Takes values a and b and returns c according to c = sqrt(a² + b²)
/// # Examples
/// ```
/// use mathol::basics::pythagoras2d;
///
/// let c = pythagoras2d(3, 4);
/// assert_eq!(5.0, c);
/// ```
/// Pythagorean theorem in 3D euclidean space functionality
/// # Remarks
/// Takes values a, b and c and returns d according to d = sqrt(a² + b² + c²)
/// # Examples
/// ```
/// use mathol::basics::pythagoras3d;
///
/// let c = pythagoras2d(3, 4, 5);
/// assert_eq!(7.071067812, c);
/// ```