-
Notifications
You must be signed in to change notification settings - Fork 293
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New WrenchVisualizer class and fix rotation tool bugs
Signed-off-by: Henrique-BO <henrique.barrosoliveira@usp.br>
- Loading branch information
1 parent
86be94c
commit bfbb1bd
Showing
5 changed files
with
280 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* | ||
* Copyright (C) 2023 Open Source Robotics Foundation | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
* | ||
*/ | ||
#ifndef GZ_SIM_WRENCHVISUALIZER_HH_ | ||
#define GZ_SIM_WRENCHVISUALIZER_HH_ | ||
|
||
#include <memory> | ||
|
||
#include <gz/sim/config.hh> | ||
#include <gz/sim/rendering/Export.hh> | ||
|
||
#include <gz/math/Vector3.hh> | ||
#include <gz/rendering/RenderTypes.hh> | ||
|
||
namespace gz | ||
{ | ||
namespace sim | ||
{ | ||
// Inline bracket to help doxygen filtering. | ||
inline namespace GZ_SIM_VERSION_NAMESPACE { | ||
namespace detail{ | ||
// Forward declare private data class. | ||
class WrenchVisualizerPrivate; | ||
|
||
/// \brief Creates, deletes, and maintains force and torque visuals | ||
class GZ_SIM_RENDERING_VISIBLE WrenchVisualizer | ||
{ | ||
/// \brief Constructor | ||
public: WrenchVisualizer(); | ||
|
||
/// \brief Destructor | ||
public: virtual ~WrenchVisualizer(); | ||
|
||
/// \brief Initialize the Wrench visualizer | ||
void Init(rendering::ScenePtr _scene); | ||
|
||
/// \brief Create a new force visual | ||
/// \param[in] _material The material used for the visual | ||
/// \return Pointer to the created ArrowVisual | ||
public: rendering::ArrowVisualPtr CreateForceVisual( | ||
rendering::MaterialPtr _material); | ||
|
||
/// \brief Create a new torque visual | ||
/// \param[in] _material The material used for the visual | ||
/// \return Pointer to the created Visual | ||
public: rendering::VisualPtr CreateTorqueVisual( | ||
rendering::MaterialPtr _material); | ||
|
||
/// \brief Update the visual of a vector to match its direction and position | ||
/// \param[in] _visual Pointer to the vector visual | ||
/// \param[in] _direction Direction of the vector | ||
/// \param[in] _position Position of the arrow | ||
/// \param[in] _size Size of the arrow in meters | ||
/// \param[in] _tip True if _position specifies the tip of the vector, | ||
/// false if it specifies tha base of the vector | ||
public: void UpdateVectorVisual(rendering::VisualPtr _visual, | ||
math::Vector3d _direction, | ||
math::Vector3d _position, | ||
double _size, | ||
bool _tip = false); | ||
|
||
/// \internal | ||
/// \brief Private data pointer | ||
private: std::unique_ptr<WrenchVisualizerPrivate> dataPtr; | ||
}; | ||
} | ||
} | ||
} | ||
} | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
gz_add_gui_plugin(ApplyForceTorque | ||
SOURCES ApplyForceTorque.cc | ||
QT_HEADERS ApplyForceTorque.hh | ||
PUBLIC_LINK_LIBS | ||
${PROJECT_LIBRARY_TARGET_NAME}-rendering | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.