Skip to main content

Direction

Struct Direction 

Source
pub struct Direction<F: Frame> { /* private fields */ }
Expand description

Direction in [0°, 360°), tagged with its reference frame.

Courses and bearings share this type: within a frame they are the same quantity. The type prevents mixing frames.

Implementations§

Source§

impl<F: Frame> Direction<F>

Source

pub const NORTH: Self

Due north, 000°.

Source

pub const EAST: Self

Due east, 090°.

Source

pub const SOUTH: Self

Due south, 180°.

Source

pub const WEST: Self

Due west, 270°.

Source

pub fn new(degrees: f64) -> Result<Self>

Direction from a value in [0.0, 360.0]; 360.0 maps to 0.0.

Out-of-range values are rejected, not wrapped: 400° is more likely a typo or unit error than 040°. Use Direction::wrap to wrap.

§Errors

KernelError::NotFinite for NaN or infinity; KernelError::OutOfRange outside [0.0, 360.0].

Source

pub fn wrap(degrees: f64) -> Result<Self>

Direction from any finite value, normalised into [0.0, 360.0).

§Errors

KernelError::NotFinite for NaN or infinity.

Source

pub const fn degrees(self) -> f64

Degrees, in [0.0, 360.0).

Source

pub fn radians(self) -> f64

Radians, in [0.0, 2π).

Source

pub fn reciprocal(self) -> Self

Reciprocal direction.

Source

pub fn components(self, magnitude: f64) -> (f64, f64)

North and east components of a vector of magnitude in this direction, in the magnitude’s unit.

The single place where velocity triangles (current triangle, relative motion, drift) resolve their sides.

Source

pub fn offset(self, delta: f64) -> Result<Self>

Rotates by delta degrees, wrapping.

§Errors

KernelError::NotFinite if delta is not finite.

Source

pub fn signed_difference(self, other: Self) -> f64

Signed shortest angle from self to other, in [-180.0, 180.0); positive clockwise.

Source

pub fn angular_distance(self, other: Self) -> f64

Unsigned shortest angle between two directions, in [0.0, 180.0].

Trait Implementations§

Source§

impl<F: Clone + Frame> Clone for Direction<F>

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

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

Performs copy-assignment from source. Read more
Source§

impl<F: Copy + Frame> Copy for Direction<F>

Source§

impl<F: Frame> Debug for Direction<F>

Source§

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

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

impl<F: Default + Frame> Default for Direction<F>

Source§

fn default() -> Self

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

impl<F: Frame> Display for Direction<F>

Source§

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

Formats as 045.0°T.

Source§

impl<F: Frame> From<CardinalPoint> for Direction<F>

Source§

fn from(point: CardinalPoint) -> Self

The point as a direction in any frame; the point itself has no frame.

Source§

impl<F: PartialEq + Frame> PartialEq for Direction<F>

Source§

fn eq(&self, other: &Self) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

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

Inequality operator !=. Read more
Source§

impl<F: PartialOrd + Frame> PartialOrd for Direction<F>

Source§

fn partial_cmp(&self, other: &Self) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 (const: unstable) · 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 (const: unstable) · 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 (const: unstable) · 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 (const: unstable) · 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<F: PartialEq + Frame> StructuralPartialEq for Direction<F>

Auto Trait Implementations§

§

impl<F> Freeze for Direction<F>
where PhantomData<F>: Freeze,

§

impl<F> RefUnwindSafe for Direction<F>

§

impl<F> Send for Direction<F>
where PhantomData<F>: Send,

§

impl<F> Sync for Direction<F>
where PhantomData<F>: Sync,

§

impl<F> Unpin for Direction<F>
where PhantomData<F>: Unpin,

§

impl<F> UnsafeUnpin for Direction<F>

§

impl<F> UnwindSafe for Direction<F>

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> 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<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

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

fn try_from(value: U) -> Result<T, !>

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.