pub struct Polygon { /* private fields */ }
Expand description
A convex polygon.
Implementations
sourceimpl Polygon
impl Polygon
pub fn new(series: impl Into<PlotPoints>) -> Polygon
sourcepub fn highlight(self, highlight: bool) -> Polygon
pub fn highlight(self, highlight: bool) -> Polygon
Highlight this polygon in the plot by scaling up the stroke and reducing the fill transparency.
sourcepub fn color(self, color: impl Into<Color32>) -> Polygon
pub fn color(self, color: impl Into<Color32>) -> Polygon
Stroke color. Default is Color32::TRANSPARENT
which means a color will be auto-assigned.
sourcepub fn fill_alpha(self, alpha: impl Into<f32>) -> Polygon
pub fn fill_alpha(self, alpha: impl Into<f32>) -> Polygon
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