Skip to main content

lox_core/
lib.rs

1// SPDX-FileCopyrightText: 2025 Helge Eichhorn <git@helgeeichhorn.de>
2//
3// SPDX-License-Identifier: MPL-2.0
4
5//! Core types, constants, and utilities for the Lox Astrodynamics Toolkit.
6//!
7//! This crate provides the foundational building blocks used across Lox:
8//! physical units, coordinate types, orbital elements, time representation,
9//! mathematical utilities, and numerical constants.
10
11#![warn(missing_docs)]
12
13pub mod anomalies;
14pub mod coords;
15pub mod elements;
16pub mod f64;
17pub mod glam;
18pub mod i32;
19pub mod i64;
20pub mod math;
21pub mod time;
22pub mod types;
23pub mod units;
24pub mod utils;