Square object, coords and sidelength as properties
| 41 | |
| 42 | /// Square object, coords and sidelength as properties |
| 43 | pub struct Square { |
| 44 | /// x-coordinate in 2D space |
| 45 | pub x: f64, |
| 46 | /// y-coordinate in 2D space |
| 47 | pub y: f64, |
| 48 | /// sidelength unit-less |
| 49 | pub sidelen: f64, |
| 50 | } |
| 51 | |
| 52 | /// Only Area supported, circumference is too hard to compute |
| 53 | impl Area for Square { |
nothing calls this directly
no outgoing calls
no test coverage detected