Make bevy_math::common_traits public (#14245)

# Objective

Fixes #14243 

## Solution

`bevy_math::common_traits` is now a public module.
This commit is contained in:
Matty 2024-07-09 13:16:47 -04:00 committed by GitHub
parent d0e606b87c
commit 9af2ef740b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 1 deletions

View file

@ -1,3 +1,5 @@
//! This module contains abstract mathematical traits shared by types used in `bevy_math`.
use crate::{Dir2, Dir3, Dir3A, Quat, Rot2, Vec2, Vec3, Vec3A, Vec4};
use std::fmt::Debug;
use std::ops::{Add, Div, Mul, Neg, Sub};

View file

@ -14,7 +14,7 @@
mod affine3;
mod aspect_ratio;
pub mod bounding;
mod common_traits;
pub mod common_traits;
mod compass;
pub mod cubic_splines;
mod direction;