Skip to content

Commit

Permalink
Fix default normal of plane terrain
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoferigo committed Jul 15, 2024
1 parent 13f4d6a commit 24b7575
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 24b7575

Please sign in to comment.