add Debug, Copy, Clone derives to Circle (#6009)

# Objective

- all the shapes except Circle have derives for Debug, Copy, and Clone

## Solution

- add derive to Circle for Debug, Copy, and Clone
This commit is contained in:
Michael Clayton 2022-09-18 02:03:10 +00:00
parent e96b21a24a
commit 91109f6f18

View file

@ -61,6 +61,7 @@ impl From<RegularPolygon> for Mesh {
} }
/// A circle in the `XY` plane /// A circle in the `XY` plane
#[derive(Debug, Copy, Clone)]
pub struct Circle { pub struct Circle {
/// Inscribed radius in the `XY` plane. /// Inscribed radius in the `XY` plane.
pub radius: f32, pub radius: f32,