Skip to content

Commit

Permalink
unit-test is explicitly ignoring type
Browse files Browse the repository at this point in the history
  • Loading branch information
jleibs committed Oct 6, 2023
1 parent 7d62018 commit 0a1d687
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions docs/code-examples/transform3d_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,5 @@

rr.log("base", rr.Arrows3D(origins=[0, 0, 0], vectors=[0, 1, 0]))

rr.log("base/translated", rr.Transform3D(translation=[1, 0, 0]))
rr.log("base/translated", rr.TranslationAndMat3x3(translation=[1, 0, 0]))
rr.log("base/translated", rr.Arrows3D(origins=[0, 0, 0], vectors=[0, 1, 0]))

rr.log(
"base/rotated_scaled",
rr.Transform3D(
rotation=RotationAxisAngle(axis=[0, 0, 1], angle=Angle(rad=pi / 4)),
scale=2,
),
)
rr.log("base/rotated_scaled", rr.Arrows3D(origins=[0, 0, 0], vectors=[0, 1, 0]))

0 comments on commit 0a1d687

Please sign in to comment.