Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pinocchio
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Stack Of Tasks
pinocchio
Commits
6e69b245
Commit
6e69b245
authored
9 years ago
by
jcarpent
Browse files
Options
Downloads
Patches
Plain Diff
[C++] Define configuration and tangent vector for jointModelBase
parent
312971a7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/multibody/joint/joint-base.hpp
+15
-13
15 additions, 13 deletions
src/multibody/joint/joint-base.hpp
with
15 additions
and
13 deletions
src/multibody/joint/joint-base.hpp
+
15
−
13
View file @
6e69b245
...
...
@@ -204,6 +204,9 @@ namespace se3
{
typedef
typename
traits
<
_JointModel
>::
Joint
Joint
;
SE3_JOINT_TYPEDEF_TEMPLATE
;
typedef
Eigen
::
Matrix
<
double
,
NQ
,
1
>
ConfigVector_t
;
typedef
Eigen
::
Matrix
<
double
,
NV
,
1
>
TangentVector_t
;
JointModel
&
derived
()
{
return
*
static_cast
<
JointModel
*>
(
this
);
}
const
JointModel
&
derived
()
const
{
return
*
static_cast
<
const
JointModel
*>
(
this
);
}
...
...
@@ -221,12 +224,11 @@ namespace se3
int
i_q
;
// Index of the joint configuration in the joint configuration vector.
int
i_v
;
// Index of the joint velocity in the joint velocity vector.
Eigen
::
Matrix
<
double
,
NQ
,
1
>
position_lower
;
Eigen
::
Matrix
<
double
,
NQ
,
1
>
position_upper
;
Eigen
::
Matrix
<
double
,
NV
,
1
>
effortMax
;
Eigen
::
Matrix
<
double
,
NV
,
1
>
velocityMax
;
ConfigVector_t
position_lower
;
ConfigVector_t
position_upper
;
TangentVector_t
effortMax
;
TangentVector_t
velocityMax
;
int
nv
()
const
{
return
derived
().
nv_impl
();
}
int
nq
()
const
{
return
derived
().
nq_impl
();
}
...
...
@@ -238,30 +240,30 @@ namespace se3
const
int
&
idx_v
()
const
{
return
i_v
;
}
const
Index
&
id
()
const
{
return
i_id
;
}
const
Eigen
::
Matrix
<
double
,
NQ
,
1
>
&
lowerPosLimit
()
const
{
return
position_lower
;}
const
Eigen
::
Matrix
<
double
,
NQ
,
1
>
&
upperPosLimit
()
const
{
return
position_upper
;}
const
ConfigVector_t
&
lowerPosLimit
()
const
{
return
position_lower
;}
const
ConfigVector_t
&
upperPosLimit
()
const
{
return
position_upper
;}
const
Eigen
::
Matrix
<
double
,
NV
,
1
>
&
maxEffortLimit
()
const
{
return
effortMax
;}
const
Eigen
::
Matrix
<
double
,
NV
,
1
>
&
maxVelocityLimit
()
const
{
return
velocityMax
;}
const
TangentVector_t
&
maxEffortLimit
()
const
{
return
effortMax
;}
const
TangentVector_t
&
maxVelocityLimit
()
const
{
return
velocityMax
;}
void
setIndexes
(
Index
id
,
int
q
,
int
v
)
{
i_id
=
id
,
i_q
=
q
;
i_v
=
v
;
}
void
setLowerPositionLimit
(
const
Eigen
::
Vector
Xd
&
lowerPos
)
void
setLowerPositionLimit
(
const
Config
Vector
_t
&
lowerPos
)
{
position_lower
=
lowerPos
;
}
void
setUpperPositionLimit
(
const
Eigen
::
Vector
Xd
&
upperPos
)
void
setUpperPositionLimit
(
const
Config
Vector
_t
&
upperPos
)
{
position_upper
=
upperPos
;
}
void
setMaxEffortLimit
(
const
Ei
gen
::
Vector
Xd
&
effort
)
void
setMaxEffortLimit
(
const
Tan
gen
t
Vector
_t
&
effort
)
{
effortMax
=
effort
;
}
void
setMaxVelocityLimit
(
const
Ei
gen
::
Vector
Xd
&
v
)
void
setMaxVelocityLimit
(
const
Tan
gen
t
Vector
_t
&
v
)
{
velocityMax
=
v
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment