Ellipse

Type Alias Ellipse 

Source
pub type Ellipse = Ellipse<f32>;
Expand description

An ellipse defined by center and axes.

Aliased Type§

pub struct Ellipse {
    pub center: Point<f32>,
    pub radius: (f32, f32),
    pub rotate: f32,
}

Fields§

§center: Point<f32>

The center points of the ellipse.

§radius: (f32, f32)

The axes of the ellipse.

§rotate: f32

The rotation of the ellipse.