# most amazing geometric object library ever This is starting off like clockwork - bullet - points for surface area calculation of a geometric object
| 5 | |
| 6 | /// for surface area calculation of a geometric object |
| 7 | pub trait Area { |
| 8 | fn area(&self) -> f64; |
| 9 | } |
| 10 | |
| 11 | /// for Perimeter/circumferen calculation of a geometric object |
| 12 | pub trait Perimeter { |
nothing calls this directly
no outgoing calls
no test coverage detected