lox_frames/transformations.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 iau;
10pub mod iers;
11pub mod rotations;
12
13// Re-export commonly used items
14pub use iau::IauFrameTransformationError;
15pub use iers::{cirf_to_tirf, icrf_to_cirf, tirf_to_itrf};
16pub use rotations::Rotation;