for Perimeter/circumferen calculation of a geometric object
| 10 | |
| 11 | /// for Perimeter/circumferen calculation of a geometric object |
| 12 | pub trait Perimeter { |
| 13 | fn circumference(&self) -> f64; |
| 14 | } |
| 15 | |
| 16 | /// Circle object, coords and radius as properties |
| 17 | pub struct Circle { |
nothing calls this directly
no outgoing calls
no test coverage detected