pub struct Circle {
pub center: Coordinate,
pub radius: f64,
}Expand description
A circle defined by its centre and radius.
Fields§
§center: CoordinateCentre of the circle.
radius: f64Radius of the circle (always ≥ 0).
Implementations§
Trait Implementations§
impl StructuralPartialEq for Circle
Auto Trait Implementations§
impl Freeze for Circle
impl RefUnwindSafe for Circle
impl Send for Circle
impl Sync for Circle
impl Unpin for Circle
impl UnsafeUnpin for Circle
impl UnwindSafe for Circle
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more