pub struct ClipLineResult {
pub line: VectorLineString,
pub offset: f64,
}
Expand description
After clipping a line, return the altered line, the offset the new line starts at, and if the line is ccw
Fields§
§line: VectorLineString
The clipped line
offset: f64
The offset the new line starts at
Auto Trait Implementations§
impl Freeze for ClipLineResult
impl RefUnwindSafe for ClipLineResult
impl Send for ClipLineResult
impl Sync for ClipLineResult
impl Unpin for ClipLineResult
impl UnwindSafe for ClipLineResult
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