-
Notifications
You must be signed in to change notification settings - Fork 160
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 #117 from bitshifter/refactor
- Loading branch information
Showing
100 changed files
with
35,053 additions
and
21,825 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ | |
Cargo.lock | ||
Session.vim | ||
.cargo-ok | ||
cargo-timing*.html |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "glam" | ||
version = "0.11.3" # remember to update html_root_url | ||
version = "0.12.0" # remember to update html_root_url | ||
edition = "2018" | ||
authors = ["Cameron Hart <[email protected]>"] | ||
description = "A simple and fast 3D math library for games and graphics" | ||
|
@@ -9,7 +9,6 @@ readme = "README.md" | |
license = "MIT OR Apache-2.0" | ||
keywords = ["gamedev", "math", "matrix", "vector", "quaternion"] | ||
categories = ["game-engines", "no-std"] | ||
build = "build.rs" | ||
|
||
[badges] | ||
travis-ci = { repository = "bitshifter/glam-rs" } | ||
|
@@ -40,7 +39,6 @@ libm = ["num-traits/libm"] | |
[dependencies] | ||
bytemuck = { version = "1.4", optional = true, default-features = false } | ||
mint = { version = "0.5", optional = true, default-features = false } | ||
# enabled by the libm feature, required when building no_std | ||
num-traits = { version = "0.2.14", optional = true, default-features = false } | ||
rand = { version = "0.7", optional = true, default-features = false } | ||
serde = { version = "1.0", optional = true, features = ["derive"] } | ||
|
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
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
#!/bin/sh | ||
|
||
CARGO='rustup run 1.36.0 cargo' | ||
$CARGO test --features "bytemuck mint rand serde debug-glam-assert transform-types" && \ | ||
$CARGO test --features "scalar-math bytemuck mint rand serde debug-glam-assert transform-types" && \ | ||
$CARGO test --no-default-features --features "libm scalar-math bytemuck mint rand serde debug-glam-assert transform-types" && \ | ||
$CARGO bench --no-run |
Oops, something went wrong.