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
Stack Of Tasks
sot-dynamic-pinocchio
Commits
74f79967
Commit
74f79967
authored
Jan 05, 2011
by
Thomas Moulard
Browse files
Remove unused parameter names to fix warning.
parent
e29f10c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/dynamic.cpp
View file @
74f79967
...
...
@@ -930,7 +930,7 @@ computeInertiaReal( ml::Matrix& res,int time )
}
double
&
Dynamic
::
computeFootHeight
(
double
&
foot
,
int
time
)
computeFootHeight
(
double
&
,
int
time
)
{
sotDEBUGIN
(
25
);
newtonEulerSINTERN
(
time
);
...
...
@@ -1095,7 +1095,7 @@ initNewtonEuler( int& dummy,int time )
}
ml
::
Vector
&
Dynamic
::
getUpperJointLimits
(
ml
::
Vector
&
res
,
const
int
&
time
)
getUpperJointLimits
(
ml
::
Vector
&
res
,
const
int
&
)
{
sotDEBUGIN
(
15
);
const
unsigned
int
NBJ
=
m_HDR
->
numberDof
();
...
...
@@ -1110,7 +1110,7 @@ getUpperJointLimits( ml::Vector& res,const int& time )
}
ml
::
Vector
&
Dynamic
::
getLowerJointLimits
(
ml
::
Vector
&
res
,
const
int
&
time
)
getLowerJointLimits
(
ml
::
Vector
&
res
,
const
int
&
)
{
sotDEBUGIN
(
15
);
const
unsigned
int
NBJ
=
m_HDR
->
numberDof
();
...
...
Write
Preview
Supports
Markdown
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