Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hpp-manipulation
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
Humanoid Path Planner
hpp-manipulation
Commits
7ccf8d76
Commit
7ccf8d76
authored
8 years ago
by
Joseph Mirabel
Committed by
Joseph Mirabel
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix use of Transform3f
parent
085c1216
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/axial-handle.cc
+3
-2
3 additions, 2 deletions
src/axial-handle.cc
src/handle.cc
+4
-1
4 additions, 1 deletion
src/handle.cc
with
7 additions
and
3 deletions
src/axial-handle.cc
+
3
−
2
View file @
7ccf8d76
...
@@ -30,6 +30,7 @@
...
@@ -30,6 +30,7 @@
namespace
hpp
{
namespace
hpp
{
namespace
manipulation
{
namespace
manipulation
{
static
const
matrix3_t
I3
=
matrix3_t
::
Identity
();
NumericalConstraintPtr_t
AxialHandle
::
createGrasp
NumericalConstraintPtr_t
AxialHandle
::
createGrasp
(
const
GripperPtr_t
&
gripper
)
const
(
const
GripperPtr_t
&
gripper
)
const
...
@@ -69,7 +70,7 @@ namespace hpp {
...
@@ -69,7 +70,7 @@ namespace hpp {
using
boost
::
assign
::
list_of
;
using
boost
::
assign
::
list_of
;
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
true
)(
true
)(
true
)(
true
)(
false
);
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
true
)(
true
)(
true
)(
true
)(
false
);
Transform3f
transform
=
gripper
->
objectPositionInJoint
()
Transform3f
transform
=
gripper
->
objectPositionInJoint
()
*
Transform3f
(
fcl
::
Vec3f
(
shift
,
0
,
0
));
*
Transform3f
(
I3
,
vector3_t
(
shift
,
0
,
0
));
return
NumericalConstraintPtr_t
return
NumericalConstraintPtr_t
(
NumericalConstraint
::
create
(
RelativeTransformation
::
create
(
NumericalConstraint
::
create
(
RelativeTransformation
::
create
(
"Transformation_(1,1,1,1,1,0)_"
+
name
()
(
"Transformation_(1,1,1,1,1,0)_"
+
name
()
...
@@ -89,7 +90,7 @@ namespace hpp {
...
@@ -89,7 +90,7 @@ namespace hpp {
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
false
)(
false
)(
false
)(
false
)
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
false
)(
false
)(
false
)(
false
)
(
false
);
(
false
);
Transform3f
transform
=
gripper
->
objectPositionInJoint
()
Transform3f
transform
=
gripper
->
objectPositionInJoint
()
*
Transform3f
(
fcl
::
Vec3f
(
shift
,
0
,
0
));
*
Transform3f
(
I3
,
vector3_t
(
shift
,
0
,
0
));
return
NumericalConstraintPtr_t
return
NumericalConstraintPtr_t
(
NumericalConstraint
::
create
(
RelativeTransformation
::
create
(
NumericalConstraint
::
create
(
RelativeTransformation
::
create
(
"Transformation_(1,0,0,0,0,0)_"
+
name
()
(
"Transformation_(1,0,0,0,0,0)_"
+
name
()
...
...
This diff is collapsed.
Click to expand it.
src/handle.cc
+
4
−
1
View file @
7ccf8d76
...
@@ -21,6 +21,7 @@
...
@@ -21,6 +21,7 @@
#include
<boost/assign/list_of.hpp>
#include
<boost/assign/list_of.hpp>
#include
<pinocchio/multibody/joint/joint.hpp>
#include
<pinocchio/multibody/joint/joint-free-flyer.hpp>
#include
<pinocchio/multibody/joint/joint-free-flyer.hpp>
#include
<hpp/util/debug.hh>
#include
<hpp/util/debug.hh>
...
@@ -38,6 +39,8 @@
...
@@ -38,6 +39,8 @@
namespace
hpp
{
namespace
hpp
{
namespace
manipulation
{
namespace
manipulation
{
namespace
{
namespace
{
static
const
matrix3_t
I3
=
matrix3_t
::
Identity
();
struct
ZeroDiffFunc
:
public
constraints
::
DifferentiableFunction
{
struct
ZeroDiffFunc
:
public
constraints
::
DifferentiableFunction
{
ZeroDiffFunc
(
size_type
sIn
,
size_type
sInD
,
ZeroDiffFunc
(
size_type
sIn
,
size_type
sInD
,
std
::
string
name
=
std
::
string
(
"Empty function"
))
std
::
string
name
=
std
::
string
(
"Empty function"
))
...
@@ -106,7 +109,7 @@ namespace hpp {
...
@@ -106,7 +109,7 @@ namespace hpp {
using
boost
::
assign
::
list_of
;
using
boost
::
assign
::
list_of
;
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
true
)(
true
)(
true
)(
true
)(
true
);
std
::
vector
<
bool
>
mask
=
list_of
(
true
)(
true
)(
true
)(
true
)(
true
)(
true
);
Transform3f
transform
=
gripper
->
objectPositionInJoint
()
Transform3f
transform
=
gripper
->
objectPositionInJoint
()
*
Transform3f
(
fcl
::
Vec3f
(
shift
,
0
,
0
));
*
Transform3f
(
I3
,
vector3_t
(
shift
,
0
,
0
));
return
NumericalConstraintPtr_t
return
NumericalConstraintPtr_t
(
NumericalConstraint
::
create
(
RelativeTransformation
::
create
(
NumericalConstraint
::
create
(
RelativeTransformation
::
create
(
"Pregrasp_(1,1,1,1,1,1)_"
+
name
()
(
"Pregrasp_(1,1,1,1,1,1)_"
+
name
()
...
...
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