epaint

Type Alias Rounding

Source
pub type Rounding = CornerRadius;
👎Deprecated: Renamed to CornerRadius

Aliased Type§

struct Rounding {
    pub nw: u8,
    pub ne: u8,
    pub sw: u8,
    pub se: u8,
}

Fields§

§nw: u8

Radius of the rounding of the North-West (left top) corner.

§ne: u8

Radius of the rounding of the North-East (right top) corner.

§sw: u8

Radius of the rounding of the South-West (left bottom) corner.

§se: u8

Radius of the rounding of the South-East (right bottom) corner.

Implementations

Source§

impl CornerRadius

Source

pub const ZERO: Self

No rounding on any corner.

Source

pub const fn same(radius: u8) -> Self

Same rounding on all four corners.

Source

pub fn is_same(self) -> bool

Do all corners have the same rounding?

Source

pub fn at_least(self, min: u8) -> Self

Make sure each corner has a rounding of at least this.

Source

pub fn at_most(self, max: u8) -> Self

Make sure each corner has a rounding of at most this.

Source

pub fn average(&self) -> f32

Average rounding of the corners.

Trait Implementations

Source§

impl Add<u8> for CornerRadius

Source§

type Output = CornerRadius

The resulting type after applying the + operator.
Source§

fn add(self, rhs: u8) -> Self

Performs the + operation. Read more
Source§

impl Add for CornerRadius

Source§

type Output = CornerRadius

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Self) -> Self

Performs the + operation. Read more
Source§

impl AddAssign<u8> for CornerRadius

Source§

fn add_assign(&mut self, rhs: u8)

Performs the += operation. Read more
Source§

impl AddAssign for CornerRadius

Source§

fn add_assign(&mut self, rhs: Self)

Performs the += operation. Read more
Source§

impl Clone for CornerRadius

Source§

fn clone(&self) -> CornerRadius

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for CornerRadius

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for CornerRadius

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Div<f32> for CornerRadius

Source§

type Output = CornerRadius

The resulting type after applying the / operator.
Source§

fn div(self, rhs: f32) -> Self

Performs the / operation. Read more
Source§

impl DivAssign<f32> for CornerRadius

Source§

fn div_assign(&mut self, rhs: f32)

Performs the /= operation. Read more
Source§

impl From<CornerRadiusF32> for CornerRadius

Source§

fn from(cr: CornerRadiusF32) -> Self

Converts to this type from the input type.
Source§

impl From<f32> for CornerRadius

Source§

fn from(radius: f32) -> Self

Converts to this type from the input type.
Source§

impl From<u8> for CornerRadius

Source§

fn from(radius: u8) -> Self

Converts to this type from the input type.
Source§

impl Hash for CornerRadius

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Mul<f32> for CornerRadius

Source§

type Output = CornerRadius

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: f32) -> Self

Performs the * operation. Read more
Source§

impl MulAssign<f32> for CornerRadius

Source§

fn mul_assign(&mut self, rhs: f32)

Performs the *= operation. Read more
Source§

impl PartialEq for CornerRadius

Source§

fn eq(&self, other: &CornerRadius) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Sub<u8> for CornerRadius

Source§

type Output = CornerRadius

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: u8) -> Self

Performs the - operation. Read more
Source§

impl Sub for CornerRadius

Source§

type Output = CornerRadius

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Self) -> Self

Performs the - operation. Read more
Source§

impl SubAssign<u8> for CornerRadius

Source§

fn sub_assign(&mut self, rhs: u8)

Performs the -= operation. Read more
Source§

impl SubAssign for CornerRadius

Source§

fn sub_assign(&mut self, rhs: Self)

Performs the -= operation. Read more
Source§

impl Copy for CornerRadius

Source§

impl Eq for CornerRadius

Source§

impl StructuralPartialEq for CornerRadius