Struct Point

Source
pub struct Point<T> { /* private fields */ }
Expand description

A point is defined by a x and y coordinate in the euclidean plane.

Implementations§

Source§

impl<T> Point<T>

Source

pub fn new(x: T, y: T) -> Point<T>

Create a new point with x and y coordinates.

Source§

impl<T> Point<T>
where T: Copy,

Source

pub fn v(&self) -> Vector<T>

Return the location of this point as a vector.

Source

pub fn get(&self, coord: Orientation2D) -> T

Get a specific coordinate of the point.

Source

pub fn set(&mut self, coord: Orientation2D, value: T)

Set a specific coordinate of the point.

Source§

impl<T> Point<T>
where T: Zero,

Source

pub fn zero() -> Point<T>

Get zero-Point.

§Examples
use iron_shapes::point::Point;

let a = Point::zero();
let b = Point::new(0, 0);

assert_eq!(a, b);
Source

pub fn is_zero(&self) -> bool

Check if this is the zero-Point.

§Examples
use iron_shapes::point::*;

assert!(Point::<usize>::zero().is_zero());
Source§

impl<T> Point<T>
where T: Add<Output = T> + Copy + Sub<Output = T> + Mul<Output = T>,

Source

pub fn distance_sq(self, other: &Point<T>) -> T

Compute the squared distance to the other point.

§Examples
use iron_shapes::point::*;

let a = Point::new(0, 0);
let b = Point::new(2, 0);
assert_eq!(a.distance_sq(&b), 2*2);
Source

pub fn cross_prod3(&self, b: Point<T>, c: Point<T>) -> T

Calculate the cross product of the two vectors defined by three points.

A positive value implies that selfab is counter-clockwise, negative implies clockwise.

(b - self) x (c - b)

§Examples
use iron_shapes::point::Point;

let a = Point::new(1,0);
let b = Point::new(1,1);
let c = Point::new(0,1);

let p = a.cross_prod3(b, c);

assert_eq!(p, (b-a).cross_prod(c - b));
Source§

impl<T> Point<T>
where T: Copy + Sub<Output = T> + NumCast,

Source

pub fn distance<F>(self, other: &Point<T>) -> F
where F: Float,

Compute the Euclidean distance betwen two points.

Source§

impl<T> Point<T>
where T: Copy + NumCast,

Source

pub fn cast_to_float<F>(&self) -> Point<F>
where F: Float + NumCast,

Convert Point into a Point with floating point data type.

Methods from Deref<Target = Vector<T>>§

Source

pub fn norm1(&self) -> T

Get 1-norm of vector, i.e. the sum of the absolute values of its components.

§Examples
use iron_shapes::vector::Vector;
let a = Vector::new(-2, 3);
assert_eq!(a.norm1(), 5);
Source

pub fn orientation_of(&self, other: Vector<T>) -> Orientation

Check if other is oriented clockwise or counter-clockwise respective to self.

§Examples
use iron_shapes::vector::Vector;
use iron_shapes::types::Orientation;

let a = Vector::new(1, 0);
let b = Vector::new(1, 1);
let c = Vector::new(1, -1);
let d = Vector::new(2, 0);

assert_eq!(a.orientation_of(b), Orientation::CounterClockWise);
assert_eq!(a.orientation_of(c), Orientation::ClockWise);
assert_eq!(a.orientation_of(d), Orientation::Straight);
Source

pub fn norm2_squared(&self) -> T

Get squared 2-norm of vector.

§Examples
use iron_shapes::vector::Vector;
let a = Vector::new(2, 3);
assert_eq!(a.norm2_squared(), 2*2+3*3);
Source

pub fn dot(&self, other: Vector<T>) -> T

Calculate scalar product.

§Examples
use iron_shapes::vector::Vector;

let a = Vector::new(1, 2);
let b = Vector::new(3, 4);

assert_eq!(a.dot(b), 1*3 + 2*4);
Source

pub fn cross_prod(&self, other: Vector<T>) -> T

Calculate cross product.

§Examples
use iron_shapes::vector::Vector;

let a = Vector::new(2, 0);
let b = Vector::new(0, 2);

assert_eq!(a.cross_prod(b), 4);
assert_eq!(b.cross_prod(a), -4);
Source

pub fn cast_to_float<F>(&self) -> Vector<F>
where F: Float + NumCast,

Convert vector into a vector with floating point data type.

Source

pub fn norm2(&self) -> T

Get 2-norm of vector (length of vector).

§Examples
use iron_shapes::vector::Vector;
let a = Vector::new(2.0, 3.0);
let norm2 = a.norm2();
let norm2_sq = norm2 * norm2;
let expected = a.norm2_squared();
assert!(norm2_sq < expected + 1e-12);
assert!(norm2_sq > expected - 1e-12);
Source

pub fn normalized(&self) -> Vector<T>

Return a vector with the same direction but length 1.

§Panics

Panics if the vector has length 0.

Source

pub fn normal(&self) -> Vector<T>

Return the normal vector onto this vector. The normal has length 1.

§Panics

Panics if the vector has length 0.

Source

pub fn length<F>(&self) -> F
where F: Float,

Calculate length of vector.

Similar to Vector::norm2 but does potentially return another data type for the length.

§Examples
use iron_shapes::vector::Vector;
let a = Vector::new(2.0, 3.0);
let length: f64 = a.length();
let norm2_sq = length * length;
let expected = a.norm2_squared();
assert!(norm2_sq < expected + 1e-12);
assert!(norm2_sq > expected - 1e-12);

Trait Implementations§

Source§

impl<T, V> Add<V> for Point<T>
where T: Copy + Add<Output = T>, V: Into<Point<T>>,

Point addition.

Source§

type Output = Point<T>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: V) -> Point<T>

Performs the + operation. Read more
Source§

impl<T, V> AddAssign<V> for Point<T>
where T: Copy + AddAssign, V: Into<Vector<T>>,

Source§

fn add_assign(&mut self, rhs: V)

Performs the += operation. Read more
Source§

impl<T> BoundingBox<T> for Point<T>
where T: Copy,

Source§

fn bounding_box(&self) -> Rect<T>

Return the bounding box of this geometry.
Source§

impl<T> Clone for Point<T>
where T: Clone,

Source§

fn clone(&self) -> Point<T>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<T> Debug for Point<T>
where T: Debug,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<T> Default for Point<T>
where T: Default,

Source§

fn default() -> Point<T>

Returns the “default value” for a type. Read more
Source§

impl<T> Deref for Point<T>

Source§

type Target = Vector<T>

The resulting type after dereferencing.
Source§

fn deref(&self) -> &<Point<T> as Deref>::Target

Dereferences the value.
Source§

impl<T> DerefMut for Point<T>

Source§

fn deref_mut(&mut self) -> &mut <Point<T> as Deref>::Target

Mutably dereferences the value.
Source§

impl<T> Display for Point<T>
where T: Display,

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl<T> Div<T> for Point<T>
where T: Copy + Div<Output = T>,

Scalar division.

Source§

type Output = Point<T>

The resulting type after applying the / operator.
Source§

fn div(self, rhs: T) -> Point<T>

Performs the / operation. Read more
Source§

impl<'a, T> From<&'a (T, T)> for Point<T>
where T: Copy,

Source§

fn from(coords: &'a (T, T)) -> Point<T>

Converts to this type from the input type.
Source§

impl<'a, T> From<&'a Point<T>> for Point<T>
where T: Copy,

Source§

fn from(v: &'a Point<T>) -> Point<T>

Converts to this type from the input type.
Source§

impl<T> From<&Point<T>> for Vector<T>
where T: Copy,

Source§

fn from(p: &Point<T>) -> Vector<T>

Converts to this type from the input type.
Source§

impl<T> From<&Vector<T>> for Point<T>
where T: Copy,

Source§

fn from(v: &Vector<T>) -> Point<T>

Converts to this type from the input type.
Source§

impl<T> From<[T; 2]> for Point<T>
where T: Copy,

Source§

fn from(coords: [T; 2]) -> Point<T>

Converts to this type from the input type.
Source§

impl<T> From<(T, T)> for Point<T>
where T: Copy,

Source§

fn from(coords: (T, T)) -> Point<T>

Converts to this type from the input type.
Source§

impl<T> From<Point<T>> for Geometry<T>

Source§

fn from(x: Point<T>) -> Geometry<T>

Converts to this type from the input type.
Source§

impl<T> From<Point<T>> for Vector<T>

Source§

fn from(p: Point<T>) -> Vector<T>

Converts to this type from the input type.
Source§

impl<T> From<Vector<T>> for Point<T>

Source§

fn from(v: Vector<T>) -> Point<T>

Converts to this type from the input type.
Source§

impl<T> Hash for Point<T>
where T: Hash,

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<T> MapPointwise<T> for Point<T>
where T: Copy,

Point wise transformation for a single point.

Source§

fn transform<F>(&self, transformation: F) -> Point<T>
where F: Fn(Point<T>) -> Point<T>,

Point wise transformation.

Source§

impl<T> Mul<T> for Point<T>
where T: Copy + Mul<Output = T>,

Scalar multiplication.

Source§

type Output = Point<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: T) -> Point<T>

Performs the * operation. Read more
Source§

impl<T> MulAssign<T> for Point<T>
where T: Copy + MulAssign,

In-place scalar multiplication.

Source§

fn mul_assign(&mut self, rhs: T)

Performs the *= operation. Read more
Source§

impl<T> Neg for Point<T>
where T: Copy + Neg<Output = T>,

Source§

type Output = Point<T>

The resulting type after applying the - operator.
Source§

fn neg(self) -> Point<T>

Performs the unary - operation. Read more
Source§

impl<T> Ord for Point<T>
where T: Ord,

Compare points.

The ordering is determined by the x-coordinates. If it is the same for both points the y-coordinate is used.

Point a > Point b iff a.x > b.x || (a.x == b.x && a.y > b.y).

Source§

fn cmp(&self, rhs: &Point<T>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<T> PartialEq for Point<T>
where T: PartialEq,

Source§

fn eq(&self, other: &Point<T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<T> PartialOrd for Point<T>
where T: PartialOrd,

Compare points.

The ordering is determined by the x-coordinates. If it is the same for both points the y-coordinate is used.

Point a > Point b iff a.x > b.x || (a.x == b.x && a.y > b.y).

Source§

fn partial_cmp(&self, rhs: &Point<T>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl<C> PointBase<C> for Point<<C as CoordinateBase>::Coord>
where C: CoordinateBase,

Source§

fn new( x: <C as CoordinateBase>::Coord, y: <C as CoordinateBase>::Coord, ) -> Point<<C as CoordinateBase>::Coord>

Construct a new point.
Source§

fn get(&self, orient: Orientation2D) -> <C as CoordinateBase>::Coord

Get a coordinate value.
Source§

fn set(&mut self, orient: Orientation2D, value: <C as CoordinateBase>::Coord)

Set a coordinate value.
Source§

fn x(&self) -> <C as CoordinateBase>::Coord

Get the x-coordinate value.
Source§

fn y(&self) -> <C as CoordinateBase>::Coord

Get the y-coordinate value.
Source§

impl<C> PointConcept<C> for Point<<C as CoordinateBase>::Coord>

Source§

fn projected_distance( &self, other: &Self, orient: Orientation2D, ) -> <C as CoordinateConcept>::CoordinateDifference

Compute the x or y component of the vector from the point to the other point.
Source§

fn manhattan_distance( &self, other: &Self, ) -> <C as CoordinateConcept>::CoordinateDifference

Compute the 1-norm of the vector pointing from the point to the other.
Source§

fn distance_squared( &self, other: &Self, ) -> <C as CoordinateConcept>::CoordinateDistance

Squared euclidean distance.
Source§

fn euclidian_distance( &self, other: &Self, ) -> <C as CoordinateConcept>::CoordinateDistance

Euclidean distance, i.e. 2-norm of the vector from the point to the other.
Source§

impl<T> Sub<Vector<T>> for Point<T>
where T: Copy + Sub<Output = T>,

Subtract a vector.

Source§

type Output = Point<T>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Vector<T>) -> <Point<T> as Sub<Vector<T>>>::Output

Performs the - operation. Read more
Source§

impl<T> Sub for Point<T>
where T: Copy + Sub<Output = T>,

Subtract a point.

Source§

type Output = Vector<T>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Point<T>) -> <Point<T> as Sub>::Output

Performs the - operation. Read more
Source§

impl<T, V> SubAssign<V> for Point<T>
where T: Copy + SubAssign, V: Into<Vector<T>>,

Source§

fn sub_assign(&mut self, rhs: V)

Performs the -= operation. Read more
Source§

impl<T> Sum for Point<T>
where T: Copy + Zero<Output = T> + Add,

Source§

fn sum<I>(iter: I) -> Point<T>
where I: Iterator<Item = Point<T>>,

Compute the sum of all points in the iterator. If the iterator is empty, (0, 0) is returned.

Source§

impl<T> TryBoundingBox<T> for Point<T>
where T: Copy,

Source§

fn try_bounding_box(&self) -> Option<Rect<T>>

Return the bounding box of this geometry if a bounding box is defined.
Source§

impl<T, Dst> TryCastCoord<T, Dst> for Point<T>
where T: Copy + NumCast, Dst: Copy + NumCast,

Source§

type Output = Point<Dst>

Output type of the cast. This is likely the same geometrical type just with other coordinate types.
Source§

fn try_cast(&self) -> Option<<Point<T> as TryCastCoord<T, Dst>>::Output>

Try to cast to target data type. Read more
Source§

fn cast(&self) -> Self::Output

Cast to target data type. Read more
Source§

impl<T> Copy for Point<T>
where T: Copy,

Source§

impl<T> Eq for Point<T>
where T: Eq,

Source§

impl<T> StructuralPartialEq for Point<T>

Auto Trait Implementations§

§

impl<T> Freeze for Point<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for Point<T>
where T: RefUnwindSafe,

§

impl<T> Send for Point<T>
where T: Send,

§

impl<T> Sync for Point<T>
where T: Sync,

§

impl<T> Unpin for Point<T>
where T: Unpin,

§

impl<T> UnwindSafe for Point<T>
where T: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<S, T> Mirror<T> for S
where T: Copy + Zero + Sub<Output = T>, S: MapPointwise<T>,

Source§

fn mirror_x(&self) -> S

Return the geometrical object mirrored at the x axis.

Source§

fn mirror_y(&self) -> S

Return the geometrical object mirrored at the y axis.

Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<S, T> RotateOrtho<T> for S
where T: Copy + Zero + Sub<Output = T>, S: MapPointwise<T>,

Source§

fn rotate_ortho(&self, a: Angle) -> S

Rotate the geometrical shape by a multiple of 90 degrees.
Source§

impl<S, T> Scale<T> for S
where T: Copy + Mul<Output = T>, S: MapPointwise<T>,

Source§

fn scale(&self, factor: T) -> S

Scale the geometrical shape. Scaling center is the origin (0, 0).
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<S, T> Translate<T> for S
where T: Copy + Add<Output = T>, S: MapPointwise<T>,

Source§

fn translate(&self, v: Vector<T>) -> S

Translate the geometrical object by a vector v.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> TextType for T
where T: Eq + Hash + Clone + Debug,