Function ggez::graphics::ellipse [] [src]

pub fn ellipse(
    ctx: &mut Context,
    mode: DrawMode,
    point: Point2,
    radius1: f32,
    radius2: f32,
    tolerance: f32
) -> GameResult<()>

Draw an ellipse.

Allocates a new Mesh, draws it, and throws it away, so if you are drawing many of them you should create the Mesh yourself.

For the meaning of the tolerance parameter, see here.