Struct rust_3d::Norm2D
[−]
[src]
pub struct Norm2D { /* fields omitted */ }Norm2D, a normalized vector within 2D space
Trait Implementations
impl Debug for Norm2D[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl PartialEq for Norm2D[src]
fn eq(&self, __arg_0: &Norm2D) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &Norm2D) -> bool[src]
This method tests for !=.
impl PartialOrd for Norm2D[src]
fn partial_cmp(&self, __arg_0: &Norm2D) -> Option<Ordering>[src]
This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, __arg_0: &Norm2D) -> bool[src]
This method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, __arg_0: &Norm2D) -> bool[src]
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, __arg_0: &Norm2D) -> bool[src]
This method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, __arg_0: &Norm2D) -> bool[src]
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Clone for Norm2D[src]
fn clone(&self) -> Norm2D[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Eq for Norm2D[src]
impl Ord for Norm2D[src]
fn cmp(&self, other: &Self) -> Ordering[src]
This method returns an Ordering between self and other. Read more
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
impl Hash for Norm2D[src]
fn hash<H: Hasher>(&self, state: &mut H)[src]
Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl Mul<f64> for Norm2D[src]
type Output = Point2D
The resulting type after applying the * operator.
fn mul(self, other: f64) -> Point2D[src]
Performs the * operation.
impl IsND for Norm2D[src]
fn n_dimensions() -> usize[src]
Should return the number of dimensions. E.g. 2 for points in 2D space, 3 for points in 3D space etc.
fn get_position(&self, dimension: usize) -> Result<f64>[src]
Should return the value of a given dimensions. E.g. for 2D position with x = 4.3, y = 1.8 the result for dimension = 1 should be 1.8
impl Is2D for Norm2D[src]
fn x(&self) -> f64[src]
Should return the x-coordinate
fn y(&self) -> f64[src]
Should return the y-coordinate
fn pos(&self) -> (f64, f64)[src]
Returns the Position as x,y tuple
fn dot(&self, other: &Is2D) -> f64[src]
Calculates the dot product with another Is2D
fn cross(&self, other: &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: &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"