Skip to main content

Rotation

Struct Rotation 

Source
pub struct Rotation { /* private fields */ }
Expand description

Deterministic randomized rotation. Build once per (dim, seed); apply many times. apply is O(D log D) with no matrix stored.

Implementations§

Source§

impl Rotation

Source

pub fn new(dim: usize, seed: u64) -> Self

Build the rotation for dim dimensions from seed.

Source

pub fn dim(&self) -> usize

Dimensionality this rotation was built for.

Source

pub fn apply_in_place(&self, v: &mut [f32], scratch: &mut [f32])

Rotate v in place. scratch must be dim long (used for the permutation gather); contents are clobbered.

Source

pub fn apply(&self, v: &[f32]) -> Vec<f32>

Rotate v, returning a new vector.

Source

pub fn apply_inverse(&self, v: &[f32]) -> Vec<f32>

Inverse rotation (for tests/debugging; never needed on the search path).

Auto Trait Implementations§

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> 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, 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.