celestial-core 0.1.1-alpha.2

Core types and utilities for the Celestial astronomy library
Documentation
1
2
3
4
5
6
7
8
9
10
//! 3D rotation matrices and vectors for coordinate transformations.
//!
//! - [`RotationMatrix3`]: 3×3 orthogonal matrix for frame rotations
//! - [`Vector3`]: 3D Cartesian vector

mod rotation_matrix;
mod vector3;

pub use rotation_matrix::RotationMatrix3;
pub use vector3::Vector3;