INNER CODE UNIT · Rust
draw_rect
plotters-rs/plotters · plotters-backend/src/lib.rs:150
fn draw_rect<S: BackendStyle>(
&mut self,
upper_left: BackendCoord,
bottom_right: BackendCoord,
style: &S,
fill: bool,
) -> Result<(), DrawingErrorKind<Self::ErrorType>> {
rasterizer::draw_rect(self, upper_left, bottom_right, style, fill)
}
/// Draw a path on the drawing backend
/// - `path`: The iterator of key points of the path
/// - `style`: The style of the path
fn draw_path<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>(
&mut self,
path: I,
style: &S,
) -> Result<(), DrawingErrorKind<Self::ErrorType>> {