Enum HullAlgorithm
pub enum HullAlgorithm {
MonotoneChain,
GiftWrapping,
QuickHull,
}Expand description
Common convex hull algorithm families.
Variants§
MonotoneChain
The monotone-chain algorithm family.
GiftWrapping
The gift-wrapping algorithm family.
QuickHull
The quickhull algorithm family.
Implementations§
§impl HullAlgorithm
impl HullAlgorithm
Trait Implementations§
§impl Clone for HullAlgorithm
impl Clone for HullAlgorithm
§fn clone(&self) -> HullAlgorithm
fn clone(&self) -> HullAlgorithm
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for HullAlgorithm
impl Debug for HullAlgorithm
§impl PartialEq for HullAlgorithm
impl PartialEq for HullAlgorithm
impl Copy for HullAlgorithm
impl Eq for HullAlgorithm
impl StructuralPartialEq for HullAlgorithm
Auto Trait Implementations§
impl Freeze for HullAlgorithm
impl RefUnwindSafe for HullAlgorithm
impl Send for HullAlgorithm
impl Sync for HullAlgorithm
impl Unpin for HullAlgorithm
impl UnsafeUnpin for HullAlgorithm
impl UnwindSafe for HullAlgorithm
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