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
bc9631f3
Verified
Commit
bc9631f3
authored
6 years ago
by
Justin Carpentier
Committed by
Justin Carpentier
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
[Spatial/Force] Improve efficiency of operator=
parent
fa0425fe
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/spatial/force-dense.hpp
+8
-1
8 additions, 1 deletion
src/spatial/force-dense.hpp
src/spatial/force-tpl.hpp
+7
-0
7 additions, 0 deletions
src/spatial/force-tpl.hpp
with
15 additions
and
1 deletion
src/spatial/force-dense.hpp
+
8
−
1
View file @
bc9631f3
...
...
@@ -48,6 +48,7 @@ namespace se3
using
Base
::
angular
;
using
Base
::
derived
;
using
Base
::
isApprox
;
using
Base
::
operator
=
;
Derived
&
setZero
()
{
linear
().
setZero
();
angular
().
setZero
();
return
derived
();
}
Derived
&
setRandom
()
{
linear
().
setRandom
();
angular
().
setRandom
();
return
derived
();
}
...
...
@@ -62,7 +63,7 @@ namespace se3
// Arithmetic operators
template
<
typename
D2
>
Derived
&
operator
=
(
const
ForceDense
<
D2
>
&
other
)
Derived
&
__equl__
(
const
ForceDense
<
D2
>
&
other
)
{
linear
()
=
other
.
linear
();
angular
()
=
other
.
angular
();
...
...
@@ -78,6 +79,12 @@ namespace se3
return
derived
();
}
template
<
typename
D2
>
Derived
&
operator
=
(
const
ForceDense
<
D2
>
&
other
)
{
return
derived
().
__equl__
(
other
.
derived
());
}
ForcePlain
operator
-
()
const
{
return
derived
().
__opposite__
();
}
template
<
typename
M1
>
ForcePlain
operator
+
(
const
ForceDense
<
M1
>
&
v
)
const
{
return
derived
().
__plus__
(
v
.
derived
());
}
...
...
This diff is collapsed.
Click to expand it.
src/spatial/force-tpl.hpp
+
7
−
0
View file @
bc9631f3
...
...
@@ -85,6 +85,13 @@ namespace se3
explicit
ForceTpl
(
const
ForceDense
<
M2
>
&
clone
)
{
linear
()
=
clone
.
linear
();
angular
()
=
clone
.
angular
();
}
template
<
int
O2
>
ForceTpl
&
__equl__
(
const
ForceTpl
<
Scalar
,
O2
>
&
other
)
{
m_data
=
other
.
toVector
();
return
*
this
;
}
// initializers
static
ForceTpl
Zero
()
{
return
ForceTpl
(
Vector6
::
Zero
());
}
static
ForceTpl
Random
()
{
return
ForceTpl
(
Vector6
::
Random
());
}
...
...
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