diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-08-30 16:59:09 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-08-30 16:59:09 +0200 |
| commit | ee84bf74083f5b9cc88a2a0a968dc905b1eef22c (patch) | |
| tree | d2756f462ee242c328c526d2a65de4105830cb27 /src/geom/fr.rs | |
| parent | ff25573224400673d08b31e576d5a0d87751dbe1 (diff) | |
Add abs() function
Diffstat (limited to 'src/geom/fr.rs')
| -rw-r--r-- | src/geom/fr.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/geom/fr.rs b/src/geom/fr.rs index ed0c8329..5f3e5534 100644 --- a/src/geom/fr.rs +++ b/src/geom/fr.rs @@ -29,6 +29,11 @@ impl Fractional { pub fn is_zero(self) -> bool { self.0 == 0.0 } + + /// The absolute value of the this fractional. + pub fn abs(self) -> Self { + Self::new(self.get().abs()) + } } impl Debug for Fractional { |
