Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bullet-featherstone: Add Kinematic feature #618

Open
wants to merge 8 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
expand API doc
Signed-off-by: Ian Chen <ichen@openrobotics.org>
  • Loading branch information
iche033 committed Jul 23, 2024
commit c2e2f407981fa60f67c7aa2d709b87208a9ce7f0
4 changes: 4 additions & 0 deletions include/gz/physics/Kinematic.hh
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,15 @@ namespace gz
class Link : public virtual Feature::Link<PolicyT, FeaturesT>
{
/// \brief Set link to be kinematic.
/// A kinematic link does not react to forces, e.g. gravity or other dynamic
/// objects. It reacts to pose or velocity commands that are set on the link
/// (via a FreeGroup) or on the joint that connects the kinematic links.
/// \param[i] _kinematic True to make this link kinematic.
public: void SetKinematic(bool _kinematic);

/// \brief Get whether this link is kinematic.
/// \return True if the link is kinematic, false otherwise.
/// \sa SetKinematic
public: bool GetKinematic() const;
};

Expand Down