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

fix: fix typo #2514

Merged
merged 1 commit into from
Dec 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion doc/d-practical-exercises/1-directgeom.md
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,7 @@ later call to your scripts, you can set the argument to `False`. A side
effector of `=True` is that it will move the viewpoint inside the GUI to
a reference zero position.

### More details about loading the model (optionnal)
### More details about loading the model (optional)

You can access the visual object composing the robot model by
`robot.visual_model.geometryObject`.
Expand Down
4 changes: 2 additions & 2 deletions doc/d-practical-exercises/2-invgeom.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ end effector at position `pdes`.
Finally, implements a callback function that display in
Gepetto-Viewer every candidate configuration tried by the solver.

## 2.2) Approaching the redundancy (optionnal)
## 2.2) Approaching the redundancy (optional)

The manipulator arm has 6 DOF, while the cost function only constraints
3 of them (the position of the end effector). A continuum of solutions
Expand Down Expand Up @@ -238,7 +238,7 @@ desired placement.
Optionally, try other metrics, like the log metric of \f$R^3 \times SO(3)\f$, or
the Froebenius norm of the homogeneous matrix.

## 2.4) Working with a mobile robot (optionnal)
## 2.4) Working with a mobile robot (optional)

Until now, the tutorial only worked with a simple manipulator robot,
i.e. whose configuration space is a real vector space. Consider now the
Expand Down
2 changes: 1 addition & 1 deletion include/pinocchio/algorithm/geometry.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ namespace pinocchio
/// \li add the collision pairs of geom_model2 into geom_model1 (indexes are updated)
/// \li add all the collision pairs between geometry objects of geom_model1 and geom_model2.
/// It is possible to ommit both data (an additional function signature is available which makes
/// them optionnal), then inner/outer objects are not updated.
/// them optional), then inner/outer objects are not updated.
///
/// \param[out] geom_model1 geometry model where the data is added
/// \param[in] geom_model2 geometry model from which new geometries are taken
Expand Down
Loading