lox_frames/lib.rs
1// SPDX-FileCopyrightText: 2024 Helge Eichhorn <git@helgeeichhorn.de>
2//
3// SPDX-License-Identifier: MPL-2.0
4
5pub mod dynamic;
6pub mod frames;
7pub mod iau;
8pub mod iers;
9pub mod providers;
10pub mod rotations;
11pub mod traits;
12
13pub use dynamic::{DynFrame, UnknownFrameError};
14pub use frames::{Cirf, Iau, Icrf, Itrf, J2000, Teme, Tirf};
15pub use traits::{
16 BodyFixed, NonBodyFixedFrameError, NonQuasiInertialFrameError, QuasiInertial, ReferenceFrame,
17 TryBodyFixed, TryQuasiInertial,
18};