-
-
Notifications
You must be signed in to change notification settings - Fork 141
Fix wavefront tests + new test for different pos + add them in ci #268
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
6e1769c
c4040d8
220d3a5
3e542de
70ed602
c3765f6
ebefd98
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -44,6 +44,7 @@ simd-stable = ["simba/wide", "simd-is-enabled"] | |
| simd-nightly = ["simba/portable_simd", "simd-is-enabled"] | ||
| enhanced-determinism = ["simba/libm_force", "indexmap"] | ||
| parallel = ["rayon"] | ||
| # Adds `TriMesh:to_obj_file` function. | ||
| wavefront = ["obj"] | ||
| alloc = [] | ||
| improved_fixed_point_support = [] | ||
|
|
@@ -88,3 +89,7 @@ thiserror = { version = "1", optional = true } | |
| oorandom = "11" | ||
| ptree = "0.4.0" | ||
| rand = { version = "0.8" } | ||
|
|
||
| [package.metadata.docs.rs] | ||
| rustdoc-args = ["-Zunstable-options", "--generate-link-to-definition"] | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this is already present in parry3d (we're in parry3d-f64 here) |
||
| features = ["wavefront"] | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This allows to see the function in rustdoc.rs |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -40,4 +40,4 @@ mod to_trimesh; | |
| pub mod utils; | ||
|
|
||
| #[cfg(feature = "wavefront")] | ||
| pub mod wavefront; | ||
| mod wavefront; | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This module doesn´t have to be public, as it's implementing functions directly on Making it public warns about undocumented module, as well as having nothing to show in it (the added function is within |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding documentation on
cargo.tomlis idiomatic to rust ecosystem (see serde or bevy)