Skip to content

Commit

Permalink
Merge pull request #207 from ami-iit/fix_default_terrain_normal
Browse files Browse the repository at this point in the history
Fix default normal of plane terrain
  • Loading branch information
diegoferigo authored Jul 15, 2024
2 parents 13f4d6a + 24b7575 commit ba9b8da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/jaxsim/terrain/terrain.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def __eq__(self, other: FlatTerrain) -> bool:
class PlaneTerrain(FlatTerrain):

plane_normal: tuple[float, float, float] = jax_dataclasses.field(
default=(0.0, 0.0, 0.0), kw_only=True
default=(0.0, 0.0, 1.0), kw_only=True
)

@staticmethod
Expand Down

0 comments on commit ba9b8da

Please sign in to comment.