Skip to content

Commit

Permalink
Add more re-exports to math
Browse files Browse the repository at this point in the history
  • Loading branch information
jdahlstrom committed Nov 27, 2023
1 parent ca9f94b commit 2eb4fba
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions core/src/math.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@
//! to matching vectors. Angles are strongly typed as well, to allow working
//! with different angular units without confusion.
pub use angle::{degs, rads, turns, Angle};
pub use angle::{degs, polar, rads, spherical, turns, Angle};
pub use approx::ApproxEq;
pub use mat::{Mat3x3, Mat4x4, Matrix};
pub use vary::Vary;
pub use vary::{lerp, Vary};
pub use vec::{vec2, vec3, vec4};
pub use vec::{Affine, Linear};
pub use vec::{Vec2, Vec2i, Vec3, Vec3i, Vec4, Vec4i, Vector};
Expand Down

0 comments on commit 2eb4fba

Please sign in to comment.