Struct tiny_skia_path::stroker::QuadConstruct
source · struct QuadConstruct {
quad: [Point; 3],
tangent_start: Point,
tangent_end: Point,
start_t: NormalizedF32,
mid_t: NormalizedF32,
end_t: NormalizedF32,
start_set: bool,
end_set: bool,
opposite_tangents: bool,
}
Fields§
§quad: [Point; 3]
§tangent_start: Point
§tangent_end: Point
§start_t: NormalizedF32
§mid_t: NormalizedF32
§end_t: NormalizedF32
§start_set: bool
§end_set: bool
§opposite_tangents: bool
Implementations§
source§impl QuadConstruct
impl QuadConstruct
fn init(&mut self, start: NormalizedF32, end: NormalizedF32) -> bool
fn init_with_start(&mut self, parent: &Self) -> bool
fn init_with_end(&mut self, parent: &Self) -> bool
Trait Implementations§
source§impl Debug for QuadConstruct
impl Debug for QuadConstruct
Auto Trait Implementations§
impl Freeze for QuadConstruct
impl RefUnwindSafe for QuadConstruct
impl Send for QuadConstruct
impl Sync for QuadConstruct
impl Unpin for QuadConstruct
impl UnwindSafe for QuadConstruct
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