Struct epaint::CircleShape
source · pub struct CircleShape {
pub center: Pos2,
pub radius: f32,
pub fill: Color32,
pub stroke: Stroke,
}
Expand description
How to paint a circle.
Fields§
§center: Pos2
§radius: f32
§fill: Color32
§stroke: Stroke
Implementations§
Trait Implementations§
source§impl Clone for CircleShape
impl Clone for CircleShape
source§fn clone(&self) -> CircleShape
fn clone(&self) -> CircleShape
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CircleShape
impl Debug for CircleShape
source§impl From<CircleShape> for Shape
impl From<CircleShape> for Shape
source§fn from(shape: CircleShape) -> Self
fn from(shape: CircleShape) -> Self
Converts to this type from the input type.
source§impl PartialEq for CircleShape
impl PartialEq for CircleShape
source§fn eq(&self, other: &CircleShape) -> bool
fn eq(&self, other: &CircleShape) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for CircleShape
impl StructuralPartialEq for CircleShape
Auto Trait Implementations§
impl RefUnwindSafe for CircleShape
impl Send for CircleShape
impl Sync for CircleShape
impl Unpin for CircleShape
impl UnwindSafe for CircleShape
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