INNER CODE UNIT · Rust
fill_polygon
plotters-rs/plotters · plotters-backend/src/lib.rs:207
fn fill_polygon<S: BackendStyle, I: IntoIterator<Item = BackendCoord>>(
&mut self,
vert: I,
style: &S,
) -> Result<(), DrawingErrorKind<Self::ErrorType>> {
let vert_buf: Vec<_> = vert.into_iter().collect();
rasterizer::fill_polygon(self, &vert_buf[..], style)
}
/// Draw a text on the drawing backend
/// - `text`: The text to draw
/// - `style`: The text style
/// - `pos` : The text anchor point
fn draw_text<TStyle: BackendTextStyle>(
&mut self,
text: &str,
style: &TStyle,