-
-
Notifications
You must be signed in to change notification settings - Fork 477
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 #1175 from devil-ira/glam-0.22
Support conversion for glam 0.22
- Loading branch information
Showing
3 changed files
with
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,3 +14,5 @@ mod v019; | |
mod v020; | ||
#[cfg(feature = "glam021")] | ||
mod v021; | ||
#[cfg(feature = "glam022")] | ||
mod v022; |
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 glam022 as glam; |