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
@ -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 crate::{Dir2, Dir3, Dir3A, Quat, Rot2, Vec2, Vec3, Vec3A, Vec4};
|
||||||
use std::fmt::Debug;
|
use std::fmt::Debug;
|
||||||
use std::ops::{Add, Div, Mul, Neg, Sub};
|
use std::ops::{Add, Div, Mul, Neg, Sub};
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
mod affine3;
|
mod affine3;
|
||||||
mod aspect_ratio;
|
mod aspect_ratio;
|
||||||
pub mod bounding;
|
pub mod bounding;
|
||||||
mod common_traits;
|
pub mod common_traits;
|
||||||
mod compass;
|
mod compass;
|
||||||
pub mod cubic_splines;
|
pub mod cubic_splines;
|
||||||
mod direction;
|
mod direction;
|
||||||
|
Loading…
Reference in New Issue
Block a user