lox_frames/lib.rs
1/*
2 * Copyright (c) 2025. Helge Eichhorn and the LOX contributors
3 *
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, you can obtain one at https://mozilla.org/MPL/2.0/.
7 */
8
9pub mod dynamic;
10pub mod frames;
11pub mod traits;
12pub mod transformations;
13
14#[cfg(feature = "python")]
15pub mod python;
16
17pub use dynamic::{DynFrame, UnknownFrameError};
18pub use frames::{Cirf, Iau, Icrf, Itrf, Tirf};
19pub use traits::{
20 BodyFixed, NonBodyFixedFrameError, NonQuasiInertialFrameError, QuasiInertial, ReferenceFrame,
21 TryBodyFixed, TryQuasiInertial, TryRotateTo,
22};