mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
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:
parent
d0e606b87c
commit
9af2ef740b
2 changed files with 3 additions and 1 deletions
|
@ -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};
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue