-
-
Notifications
You must be signed in to change notification settings - Fork 484
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support conversion for glam 0.29 (#1434)
* Support conversion for glam 0.29 * Update CHANGELOG.md --------- Co-authored-by: Sébastien Crozet <sebastien@crozet.re>
- Loading branch information
1 parent
efb3ada
commit d0a269f
Showing
4 changed files
with
28 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 |
---|---|---|
|
@@ -26,3 +26,5 @@ mod v025; | |
mod v027; | ||
#[cfg(feature = "glam028")] | ||
mod v028; | ||
#[cfg(feature = "glam029")] | ||
mod v029; |
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 glam029 as glam; |