Skip to content

Commit

Permalink
Merge branch 'main' into env_var_migration
Browse files Browse the repository at this point in the history
  • Loading branch information
chapulina authored Jun 8, 2022
2 parents 3c17b82 + 88e0c49 commit 65264e8
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 1 deletion.
1 change: 1 addition & 0 deletions examples/standalone/light_control/light_control.cc
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@

#include <chrono>
#include <iostream>
#include <random>

#include <gz/sim/components/Light.hh>
#include <gz/sim/components/LightCmd.hh>
Expand Down
1 change: 1 addition & 0 deletions include/gz/sim/Conversions.hh
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
#include <string>

#include <gz/common/Console.hh>
#include <gz/math/AxisAlignedBox.hh>
#include <gz/math/Inertial.hh>
#include <sdf/Actor.hh>
#include <sdf/Atmosphere.hh>
Expand Down
2 changes: 2 additions & 0 deletions include/gz/sim/rendering/SceneManager.hh
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@
#include <gz/common/Animation.hh>
#include <gz/common/graphics/Types.hh>

#include <gz/math/Matrix4.hh>

#include <gz/msgs/particle_emitter.pb.h>

#include <gz/rendering/RenderTypes.hh>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
#include <sdf/Physics.hh>
#include <sdf/Joint.hh>

#include <gz/math/SphericalCoordinates.hh>
#include <gz/math/Vector3.hh>

#include <gz/sim/components/Component.hh>
Expand Down
1 change: 1 addition & 0 deletions src/rendering/MarkerManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include <mutex>
#include <string>

#include <gz/math/Rand.hh>
#include <gz/msgs.hh>
#include <gz/transport/Node.hh>

Expand Down
1 change: 1 addition & 0 deletions src/rendering/SceneManager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@

#include <map>
#include <memory>
#include <queue>
#include <unordered_map>

#include <sdf/Box.hh>
Expand Down
1 change: 1 addition & 0 deletions src/systems/multicopter_control/Common.cc
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#include <string>

#include <gz/common/Console.hh>
#include <gz/math/Rand.hh>
#include <gz/math/eigen3/Conversions.hh>

#include <gz/sim/components/ChildLinkName.hh>
Expand Down
3 changes: 2 additions & 1 deletion src/systems/odometry_publisher/OdometryPublisher.cc
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
#include <gz/math/Helpers.hh>
#include <gz/math/Pose3.hh>
#include <gz/math/Quaternion.hh>
#include <gz/math/Rand.hh>
#include <gz/math/RollingMean.hh>
#include <gz/plugin/Register.hh>
#include <gz/transport/Node.hh>
Expand Down Expand Up @@ -95,7 +96,7 @@ class gz::sim::systems::OdometryPublisherPrivate
public: math::Pose3d lastUpdatePose{0, 0, 0, 0, 0, 0};

/// \brief Current timestamp.
public: math::clock::time_point lastUpdateTime;
public: std::chrono::steady_clock::time_point lastUpdateTime;

/// \brief Allow specifying constant xyz and rpy offsets
public: gz::math::Pose3d offset = {0, 0, 0, 0, 0, 0};
Expand Down
1 change: 1 addition & 0 deletions src/systems/thruster/Thruster.cc
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include <gz/msgs/double.pb.h>

#include <gz/math/Helpers.hh>
#include <gz/math/PID.hh>

#include <gz/plugin/Register.hh>

Expand Down

0 comments on commit 65264e8

Please sign in to comment.