-
-
Notifications
You must be signed in to change notification settings - Fork 492
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1357 from Jondolf/glam025
Support Glam 0.25 type conversion
- Loading branch information
Showing
4 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,3 +20,5 @@ mod v022; | |
mod v023; | ||
#[cfg(feature = "glam024")] | ||
mod v024; | ||
#[cfg(feature = "glam025")] | ||
mod v025; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#[path = "../common/glam_isometry.rs"] | ||
mod glam_isometry; | ||
#[path = "../common/glam_matrix.rs"] | ||
mod glam_matrix; | ||
#[path = "../common/glam_point.rs"] | ||
mod glam_point; | ||
#[path = "../common/glam_quaternion.rs"] | ||
mod glam_quaternion; | ||
#[path = "../common/glam_rotation.rs"] | ||
mod glam_rotation; | ||
#[path = "../common/glam_similarity.rs"] | ||
mod glam_similarity; | ||
#[path = "../common/glam_translation.rs"] | ||
mod glam_translation; | ||
#[path = "../common/glam_unit_complex.rs"] | ||
mod glam_unit_complex; | ||
|
||
pub(self) use glam025 as glam; |