aboutsummaryrefslogtreecommitdiff
path: root/examples3d/heightfield3.rs
diff options
context:
space:
mode:
authorCrozet Sébastien <developer@crozet.re>2020-11-24 15:02:39 +0100
committerCrozet Sébastien <developer@crozet.re>2020-11-24 15:02:39 +0100
commit3379094f5af20187d7ee0d50717810956fa32254 (patch)
treed7083ea29e392cd1e5e0a61ff99493e08b04adbc /examples3d/heightfield3.rs
parentdc63c28f56c989ec97cb416d186cf76a1e61c555 (diff)
downloadrapier-3379094f5af20187d7ee0d50717810956fa32254.tar.gz
rapier-3379094f5af20187d7ee0d50717810956fa32254.tar.bz2
rapier-3379094f5af20187d7ee0d50717810956fa32254.zip
Minor demos changes.
Diffstat (limited to 'examples3d/heightfield3.rs')
-rw-r--r--examples3d/heightfield3.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples3d/heightfield3.rs b/examples3d/heightfield3.rs
index 59380d5..6558614 100644
--- a/examples3d/heightfield3.rs
+++ b/examples3d/heightfield3.rs
@@ -27,7 +27,7 @@ pub fn init_world(testbed: &mut Testbed) {
// NOTE: make sure we use the sin/cos from simba to ensure
// cross-platform determinism of the example when the
// enhanced_determinism feature is enabled.
- (<f32 as ComplexField>::sin(x) + <f32 as ComplexField>::cos(z))
+ <f32 as ComplexField>::sin(x) + <f32 as ComplexField>::cos(z)
}
});