[][src]Struct rust_3d::Point2D

pub struct Point2D {
    pub x: f64,
    pub y: f64,
}

Point2D, a point / position within 2D space

Fields

x: f64y: f64

Methods

impl Point2D[src]

pub fn new(x: f64, y: f64) -> Self[src]

pub fn zero() -> Self[src]

Creates a new Point2D with all coordinates set to 0

Trait Implementations

impl IsEditable2D for Point2D[src]

fn set_pos(&mut self, x: f64, y: f64)[src]

Sets the position from a x and y values

fn increase_distance_to_by<P>(&mut self, other: &P, factor: Positive) where
    P: Is2D
[src]

Increases distance towards other by factor

fn add<P>(&mut self, other: &P) where
    P: Is2D
[src]

Adds the coordinates of other onto this. x = x + other.x ...

fn substract<P>(&mut self, other: &P) where
    P: Is2D
[src]

Substracts the coordinates of other from this. x = x - other.x ...

fn scale_pos(&mut self, val: f64)[src]

Scales the coordinates by applying a factor to all of them

fn rotate<P>(&mut self, r: Rad, center: &P) where
    P: Is2D
[src]

Rotates the position around a center ccw for rad radians

impl IsEditableND for Point2D[src]

impl IsBuildable2D for Point2D[src]

fn new_from<P>(other: P) -> Self where
    P: Is2D
[src]

Uses the coordinates of other to create a new

fn normalized(&self) -> Result<Self>[src]

Returns this with normalized values

fn multiply_m(&self, m: &Matrix3) -> Self[src]

Applies a matrix to this

fn parse(text: String) -> Result<Self>[src]

Creates this from a "x y" string. E.g. "4.3 17.29"

impl IsBuildableND for Point2D[src]

fn center<P>(&self, other: &P) -> Result<Self> where
    P: IsND
[src]

Returns the center between this and other

impl Is2D for Point2D[src]

fn pos(&self) -> (f64, f64)[src]

Returns the Position as x,y tuple

fn dot(&self, other: &dyn Is2D) -> f64[src]

Calculates the dot product with another Is2D

fn cross(&self, other: &dyn Is2D) -> f64[src]

Calculates the cross product with another Is2D

fn abs(&self) -> NonNegative[src]

The absolute / length of this position

fn rad_to(&self, other: &dyn Is2D) -> Rad[src]

Calculates the angle to the other Is2D in radians

fn to_str(&self) -> String[src]

Transforms the position in a "x y" string. E.g. "3.72 5.99"

impl IsMatrix3Transformable for Point2D[src]

impl IsMovable2D for Point2D[src]

impl IsTransFormableTo3D for Point2D[src]

impl IsND for Point2D[src]

impl PartialOrd<Point2D> for Point2D[src]

impl PartialEq<Point2D> for Point2D[src]

impl Ord for Point2D[src]

fn max(self, other: Self) -> Self1.21.0[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self1.21.0[src]

Compares and returns the minimum of two values. Read more

fn clamp(self, min: Self, max: Self) -> Self[src]

🔬 This is a nightly-only experimental API. (clamp)

Restrict a value to a certain interval. Read more

impl Eq for Point2D[src]

impl Default for Point2D[src]

impl Clone for Point2D[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Hash for Point2D[src]

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

Feeds a slice of this type into the given [Hasher]. Read more

impl<P> Add<P> for Point2D where
    P: Is2D
[src]

type Output = Point2D

The resulting type after applying the + operator.

impl<P> Sub<P> for Point2D where
    P: Is2D
[src]

type Output = Point2D

The resulting type after applying the - operator.

impl Mul<f64> for Point2D[src]

type Output = Point2D

The resulting type after applying the * operator.

impl Neg for Point2D[src]

type Output = Point2D

The resulting type after applying the - operator.

impl Debug for Point2D[src]

impl Display for Point2D[src]

Auto Trait Implementations

impl Send for Point2D

impl Unpin for Point2D

impl Sync for Point2D

impl UnwindSafe for Point2D

impl RefUnwindSafe for Point2D

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

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

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

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