pub enum LineSide {
Left,
On,
Right,
}Expand description
The algebraic side of a point relative to a directed line.
Variants§
Left
The point has positive orientation relative to the line.
On
The point is exactly collinear with the line.
Right
The point has negative orientation relative to the line.
Trait Implementations§
impl Copy for LineSide
impl Eq for LineSide
impl StructuralPartialEq for LineSide
Auto Trait Implementations§
impl Freeze for LineSide
impl RefUnwindSafe for LineSide
impl Send for LineSide
impl Sync for LineSide
impl Unpin for LineSide
impl UnsafeUnpin for LineSide
impl UnwindSafe for LineSide
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