Skip to content

Commit

Permalink
Merge pull request #781 from JuliaRobotics/21Q4/cmopat/rot110
Browse files Browse the repository at this point in the history
fix missing deprecation UnitQuaterion
  • Loading branch information
dehann authored Nov 22, 2021
2 parents 1bfc7c1 + cf81ac7 commit 2bd3317
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ ProgressMeter = "0.9, 1"
Reexport = "0.2, 1"
Requires = "0.5, 1"
RoME = "0.16.1, 0.17"
Rotations = "0.13, 1"
Rotations = "1.1"
StaticArrays = "1"
TensorCast = "0.3, 0.4"
TimeZones = "1.3.1, 1.4"
Expand Down
2 changes: 1 addition & 1 deletion src/3rdParty/_PCL/services/PointCloud.jl
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,7 @@ function Base.show(io::IO, pc::PointCloud{T,P,R}) where {T,P,R}
println(io, " sensor pose:")
println(io, " xyz: ", round.(pc.sensor_origin_, digits=3))
q = convert(_Rot.UnitQuaternion, pc.sensor_orientation_)
println(io, " w_xyz*: ", round.([q.w; q.x; q.y; q.z], digits=3))
println(io, " w_xyz*: ", round.(_Rot.params(q), digits=3))

nothing
end
Expand Down

0 comments on commit 2bd3317

Please sign in to comment.