lox-frames 0.1.0-alpha.16

Reference frame transformations for the Lox ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-FileCopyrightText: 2023 Helge Eichhorn <git@helgeeichhorn.de>
// SPDX-FileCopyrightText: 2024 Angus Morrison <github@angus-morrison.com>
//
// SPDX-License-Identifier: MPL-2.0

//! Module cio exposes functions for calculating the Celestial Intermediate Origin (CIO) locator, s.

use lox_core::units::Angle;
use lox_test_utils::ApproxEq;

pub mod iau2006;

/// Celestial Intermediate Origin (CIO) locator, s.
#[derive(Debug, Clone, Copy, Default, PartialEq, ApproxEq)]
pub struct CioLocator(pub Angle);