pub struct Polygon {
pub color: Color,
}
Expand description
A polygon
Fields§
§color: Color
The color of the polygon
Implementations§
source§impl Polygon
impl Polygon
sourcepub fn draw<G>(
&self,
polygon: Polygon<'_>,
draw_state: &DrawState,
transform: Matrix2d,
g: &mut G
)where
G: Graphics,
pub fn draw<G>( &self, polygon: Polygon<'_>, draw_state: &DrawState, transform: Matrix2d, g: &mut G )where G: Graphics,
Draws polygon using the default method.
sourcepub fn draw_tri<G>(
&self,
polygon: Polygon<'_>,
draw_state: &DrawState,
transform: Matrix2d,
g: &mut G
)where
G: Graphics,
pub fn draw_tri<G>( &self, polygon: Polygon<'_>, draw_state: &DrawState, transform: Matrix2d, g: &mut G )where G: Graphics,
Draws polygon using triangulation.
Trait Implementations§
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§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more