Struct comfy_wgpu::egui::epaint::CircleShape
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: StrokeImplementations§
§impl CircleShape
impl CircleShape
pub fn filled( center: Pos2, radius: f32, fill_color: impl Into<Color32> ) -> CircleShape
pub fn stroke( center: Pos2, radius: f32, stroke: impl Into<Stroke> ) -> CircleShape
pub fn visual_bounding_rect(&self) -> Rect
pub fn visual_bounding_rect(&self) -> Rect
The visual bounding rectangle (includes stroke width)
Trait Implementations§
§impl Clone for CircleShape
impl Clone for CircleShape
§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 more§impl Debug for CircleShape
impl Debug for CircleShape
§impl From<CircleShape> for Shape
impl From<CircleShape> for Shape
§fn from(shape: CircleShape) -> Shape
fn from(shape: CircleShape) -> Shape
Converts to this type from the input type.
§impl PartialEq<CircleShape> for CircleShape
impl PartialEq<CircleShape> for CircleShape
§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