Module graphics::rectangle [−][src]
Draw rectangle
This module contains the definintion of a rectangle with possibly rounded
corners. It contains the code to draw the rectangle and defines properties
like color and shape. The rectangle dimensions and location are specified by
types::Rectangle
.
To draw a square with side 10 and top left corner in (0, 0), do the following:
ⓘ
let rectangle = Rectangle::new(color::BLACK); let dims = square(0.0, 0.0, 10.0); rectangle.draw(dims, &draw_state::Default::default(), transform, g);
Re-exports
pub use math::margin_rectangle as margin; |
Structs
Border | The border of the rectangle |
Rectangle | A filled rectangle |
Enums
Shape | The shape of the rectangle corners |
Functions
centered | Use x, y, half-width, half-height |
centered_square | Create |
rectangle_by_corners | Create |
square | Create |