pub struct Strip {
pub x: u16,
pub y: u16,
pub alpha_idx: u32,
pub winding: i32,
}
Expand description
A strip.
Fields§
§x: u16
The x coordinate of the strip, in user coordinates.
y: u16
The y coordinate of the strip, in user coordinates.
alpha_idx: u32
The index into the alpha buffer.
winding: i32
The winding number at the start of the strip.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Strip
impl RefUnwindSafe for Strip
impl Send for Strip
impl Sync for Strip
impl Unpin for Strip
impl UnwindSafe for Strip
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