Trait kidou::orbit::calc::integrate::constants::correction::Corrections[][src]

pub trait Corrections {
    type Output;
    fn to_gca_x(&self) -> Self::Output;
fn to_gca_z(&self) -> Self::Output;
fn to_gca_u(&self) -> Self::Output;
fn to_gca_v(&self) -> Self::Output;
fn to_gca_w(&self) -> Self::Output; }
Expand description

Adds correction methods to float types

Associated Types

A float type. Should be the same as Self.

Required methods

Convert X component of the radius vector from the Heliocentric Cartesian system to Galactic Cylindrical system

Convert Z component of the radius vector from the Heliocentric Cartesian system to Galactic Cylindrical system

Convert U component of the velocity vector from the Heliocentric Cartesian system to Galactic Cylindrical system

Convert V component of the velocity vector from the Heliocentric Cartesian system to Galactic Cylindrical system

Convert W component of the velocity vector from the Heliocentric Cartesian system to Galactic Cylindrical system

Implementors