pub struct LineMark {
pub points: Vec<[f32; 2]>,
pub stroke: StrokeStyle,
pub interpolation: Interpolation,
}Expand description
A polyline with optional interpolation.
Fields§
§points: Vec<[f32; 2]>Points along the line.
stroke: StrokeStyleLine style.
interpolation: InterpolationInterpolation mode.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LineMark
impl RefUnwindSafe for LineMark
impl Send for LineMark
impl Sync for LineMark
impl Unpin for LineMark
impl UnsafeUnpin for LineMark
impl UnwindSafe for LineMark
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