lox_math/lib.rs
1/*
2 * Copyright (c) 2023. 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 constants;
10pub mod glam;
11pub mod is_close;
12pub mod linear_algebra;
13pub mod math;
14#[cfg(feature = "python")]
15pub mod python;
16pub mod roots;
17pub mod series;
18pub mod slices;
19pub mod types;
20pub mod vector_traits;