Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Humanoid Path Planner
hpp-core
Commits
69b7bfaf
Commit
69b7bfaf
authored
Jan 19, 2021
by
Joseph Mirabel
Browse files
[Minor] Fix typo
parent
814137ce
Changes
3
Hide whitespace changes
Inline
Side-by-side
include/hpp/core/steering-method/car-like.hh
View file @
69b7bfaf
...
...
@@ -81,7 +81,7 @@ namespace hpp {
private:
CarLikeWkPtr_t
weak_
;
};
// CarLike
std
::
vector
<
JointPtr_t
>
getWheelsFrom
e
Parameter
std
::
vector
<
JointPtr_t
>
getWheelsFromParameter
(
const
ProblemConstPtr_t
&
problem
,
const
JointPtr_t
&
rz
);
/// \}
...
...
src/distance/reeds-shepp.cc
View file @
69b7bfaf
...
...
@@ -71,7 +71,7 @@ namespace hpp {
DevicePtr_t
d
(
device_
.
lock
());
xy_
=
d
->
getJointAtConfigRank
(
xyId_
);
rz_
=
d
->
getJointAtConfigRank
(
rzId_
);
wheels_
=
steeringMethod
::
getWheelsFrom
e
Parameter
(
problem
,
rz_
);
wheels_
=
steeringMethod
::
getWheelsFromParameter
(
problem
,
rz_
);
turningRadius
(
problem
->
getParameter
(
"SteeringMethod/Carlike/turningRadius"
).
floatValue
());
}
...
...
src/steering-method/car-like.cc
View file @
69b7bfaf
...
...
@@ -37,7 +37,7 @@ namespace hpp {
DevicePtr_t
d
(
device_
.
lock
());
xy_
=
d
->
getJointAtConfigRank
(
0
);
rz_
=
d
->
getJointAtConfigRank
(
2
);
wheels_
=
getWheelsFrom
e
Parameter
(
problem
,
rz_
);
wheels_
=
getWheelsFromParameter
(
problem
,
rz_
);
turningRadius
(
problem
->
getParameter
(
"SteeringMethod/Carlike/turningRadius"
).
floatValue
());
}
...
...
@@ -72,7 +72,7 @@ namespace hpp {
rho_
=
rho
;
}
std
::
vector
<
JointPtr_t
>
getWheelsFrom
e
Parameter
std
::
vector
<
JointPtr_t
>
getWheelsFromParameter
(
const
ProblemConstPtr_t
&
problem
,
const
JointPtr_t
&
rz
)
{
std
::
vector
<
JointPtr_t
>
wheels
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment