Struct bcar::Point [−][src]
Basic point geometry.
Examples
let point = bcar::Point::new(1.0, 2.0); assert_eq!(1.0, point.x); assert_eq!(2.0, point.y);
Fields
x: f64y: f64Implementations
impl Point[src]
pub fn new(x: f64, y: f64) -> Point[src]
pub fn default() -> Point[src]
Return default point
Examples
let point = bcar::Point::default(); assert_eq!(point, bcar::Point::new(0.0, 0.0));
pub fn on_right_side_of(&self, s: Point, e: Point) -> bool[src]
Return if self is on right side of line.
Examples
let p = bcar::Point::new(1.0, -2.0); let s = bcar::Point::new(1.0, 1.0); let e = bcar::Point::new(-1.0, -1.0); assert!(!p.on_right_side_of(s, e)); assert!(p.on_right_side_of(e, s));
Trait Implementations
impl Clone for Point[src]
impl Copy for Point[src]
impl Debug for Point[src]
impl PartialEq<Point> for Point[src]
impl StructuralPartialEq for Point[src]
Auto Trait Implementations
impl RefUnwindSafe for Point[src]
impl Send for Point[src]
impl Sync for Point[src]
impl Unpin for Point[src]
impl UnwindSafe for Point[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,