Circle

Type Alias Circle 

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

A circle defined by center and radius.

Aliased Type§

pub struct Circle {
    pub center: Point<f32>,
    pub radius: f32,
}

Fields§

§center: Point<f32>

The center points of the circle.

§radius: f32

The radius of the circle.