Struct rsgeo::prelude::CircleArea[][src]

pub struct CircleArea { /* fields omitted */ }

Implementations

impl CircleArea[src]

pub fn new(coc: Point, radius: f32) -> Self[src]

Trait Implementations

impl Area for CircleArea[src]

fn contains(&self, p: &Point) -> bool[src]

Judge if a point in a rectangle area

Example

use rsgeo::prelude::{CircleArea,Point,Area};
let ca = CircleArea::new(Point::new(35.0, 110.0).unwrap(), 350_000.0);
let pa = Point::new(32.0, 112.0).unwrap();
let pb = Point::new(35.1, 112.0).unwrap();
assert!(!ca.contains(&pa));
assert!(ca.contains(&pb));

impl Debug for CircleArea[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.