pub struct Polygon { /* private fields */ }
Expand description
A convex polygon.
Implementations
sourceimpl Polygon
impl Polygon
pub fn new(series: impl Into<PlotPoints>) -> Self
sourcepub fn highlight(self, highlight: bool) -> Self
pub fn highlight(self, highlight: bool) -> Self
Highlight this polygon in the plot by scaling up the stroke and reducing the fill transparency.
sourcepub fn color(self, color: impl Into<Color32>) -> Self
pub fn color(self, color: impl Into<Color32>) -> Self
Stroke color. Default is Color32::TRANSPARENT
which means a color will be auto-assigned.
sourcepub fn fill_alpha(self, alpha: impl Into<f32>) -> Self
pub fn fill_alpha(self, alpha: impl Into<f32>) -> Self
Alpha of the filled area.
Auto Trait Implementations
impl !RefUnwindSafe for Polygon
impl !Send for Polygon
impl !Sync for Polygon
impl Unpin for Polygon
impl !UnwindSafe for Polygon
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more