Skip to content

Commit

Permalink
Fix backslashes in arkitscene rigid transformation path
Browse files Browse the repository at this point in the history
Should be fixed properly by #1937
  • Loading branch information
Wumpf committed Apr 19, 2023
1 parent 3f08dae commit 3a30939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/python/arkitscenes/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def log_camera(

rr.log_rigid3(
# pathlib makes it easy to get the parent, but log_rigid requires a string
str(Path(entity_id).parent),
str(Path(entity_id).parent).replace("\\", "/"),
child_from_parent=camera_from_world,
xyz="RDF", # X=Right, Y=Down, Z=Forward
)
Expand Down

0 comments on commit 3a30939

Please sign in to comment.