pub enum IntersectCircleSegment {
INSIDE,
OUTSIDE,
TANGENT,
ONE_CROSSPOINT,
TWO_CROSSPOINTS,
}
Expand description
円と線分の位置関係
Variants§
INSIDE
線分が円の内部にある
OUTSIDE
線分が円の外部にある
TANGENT
線分が円に接している
ONE_CROSSPOINT
線分が円と一つの交点をもつ
TWO_CROSSPOINTS
線分が円と二つの交点をもつ
Implementations§
Trait Implementations§
Source§impl Clone for IntersectCircleSegment
impl Clone for IntersectCircleSegment
Source§fn clone(&self) -> IntersectCircleSegment
fn clone(&self) -> IntersectCircleSegment
Returns a copy 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 moreSource§impl Debug for IntersectCircleSegment
impl Debug for IntersectCircleSegment
Source§impl PartialEq for IntersectCircleSegment
impl PartialEq for IntersectCircleSegment
impl Copy for IntersectCircleSegment
impl StructuralPartialEq for IntersectCircleSegment
Auto Trait Implementations§
impl Freeze for IntersectCircleSegment
impl RefUnwindSafe for IntersectCircleSegment
impl Send for IntersectCircleSegment
impl Sync for IntersectCircleSegment
impl Unpin for IntersectCircleSegment
impl UnwindSafe for IntersectCircleSegment
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