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
0f1e7056
Commit
0f1e7056
authored
8 years ago
by
Joseph Mirabel
Committed by
Joseph Mirabel
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix unit tests
parent
66e458d3
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
tests/path-projection.cc
+51
-51
51 additions, 51 deletions
tests/path-projection.cc
with
51 additions
and
51 deletions
tests/path-projection.cc
+
51
−
51
View file @
0f1e7056
...
@@ -14,10 +14,6 @@
...
@@ -14,10 +14,6 @@
// received a copy of the GNU Lesser General Public License along with
// received a copy of the GNU Lesser General Public License along with
// hpp-manipulation. If not, see <http://www.gnu.org/licenses/>.
// hpp-manipulation. If not, see <http://www.gnu.org/licenses/>.
#include
<hpp/core/path-projector/progressive.hh>
#include
<hpp/core/steering-method-straight.hh>
#include
<hpp/core/numerical-constraint.hh>
#define ARM_LENGTH 1
#define ARM_LENGTH 1
#define FOREARM_LENGTH 1
#define FOREARM_LENGTH 1
#define STEP_PATH (value_type)0.01
#define STEP_PATH (value_type)0.01
...
@@ -26,16 +22,20 @@
...
@@ -26,16 +22,20 @@
#include
<boost/assign/list_of.hpp>
#include
<boost/assign/list_of.hpp>
#include
<pinocchio/multibody/model.hpp>
#include
<hpp/pinocchio/device.hh>
#include
<hpp/pinocchio/joint.hh>
#include
<hpp/pinocchio/configuration.hh>
#include
<hpp/core/path-projector/progressive.hh>
#include
<hpp/core/steering-method-straight.hh>
#include
<hpp/core/numerical-constraint.hh>
#include
<hpp/core/weighed-distance.hh>
#include
<hpp/core/weighed-distance.hh>
#include
<hpp/core/config-projector.hh>
#include
<hpp/core/config-projector.hh>
#include
<hpp/core/constraint-set.hh>
#include
<hpp/core/constraint-set.hh>
#include
<hpp/core/problem.hh>
#include
<hpp/core/problem.hh>
#include
<hpp/model/device.hh>
#include
<hpp/model/joint.hh>
#include
<hpp/model/configuration.hh>
#include
<hpp/model/object-factory.hh>
#include
<hpp/constraints/generic-transformation.hh>
#include
<hpp/constraints/generic-transformation.hh>
#define REQUIRE_MESSAGE(b,m) do {\
#define REQUIRE_MESSAGE(b,m) do {\
...
@@ -45,12 +45,13 @@
...
@@ -45,12 +45,13 @@
}}\
}}\
while (0)
while (0)
using
hpp
::
model
::
Device
;
using
hpp
::
pinocchio
::
Device
;
using
hpp
::
model
::
DevicePtr_t
;
using
hpp
::
pinocchio
::
DevicePtr_t
;
using
hpp
::
model
::
JointPtr_t
;
using
hpp
::
pinocchio
::
JointPtr_t
;
using
hpp
::
model
::
BodyPtr_t
;
using
hpp
::
pinocchio
::
BodyPtr_t
;
using
hpp
::
model
::
Configuration_t
;
using
hpp
::
pinocchio
::
Configuration_t
;
using
hpp
::
model
::
value_type
;
using
hpp
::
pinocchio
::
value_type
;
using
hpp
::
pinocchio
::
Transform3f
;
using
hpp
::
constraints
::
Position
;
using
hpp
::
constraints
::
Position
;
using
hpp
::
constraints
::
PositionPtr_t
;
using
hpp
::
constraints
::
PositionPtr_t
;
...
@@ -79,47 +80,45 @@ using hpp::core::pathProjector::Progressive;
...
@@ -79,47 +80,45 @@ using hpp::core::pathProjector::Progressive;
using
hpp
::
core
::
Problem
;
using
hpp
::
core
::
Problem
;
using
hpp
::
core
::
ProblemPtr_t
;
using
hpp
::
core
::
ProblemPtr_t
;
hpp
::
model
::
ObjectFactory
objectFactory
;
const
matrix3_t
I3
(
matrix3_t
::
Identity
())
;
namespace
hpp_test
{
namespace
hpp_test
{
template
<
typename
JointModel
>
static
void
addJointAndBody
(
se3
::
Model
&
model
,
const
se3
::
JointModelBase
<
JointModel
>
&
joint
,
const
vector3_t
shift
,
const
se3
::
JointIndex
&
parent
,
const
std
::
string
&
name
)
{
typedef
typename
JointModel
::
ConfigVector_t
CV
;
typedef
typename
JointModel
::
TangentVector_t
TV
;
se3
::
JointIndex
idx
;
idx
=
model
.
addJoint
(
parent
,
joint
,
se3
::
SE3
(
I3
,
shift
),
name
,
TV
::
Random
()
+
TV
::
Constant
(
1
),
TV
::
Random
()
+
TV
::
Constant
(
1
),
CV
::
Random
()
-
CV
::
Constant
(
1
),
CV
::
Random
()
+
CV
::
Constant
(
1
));
model
.
appendBodyToJoint
(
idx
,
se3
::
Inertia
::
Random
(),
se3
::
SE3
::
Identity
(),
name
+
"_BODY"
);
}
DevicePtr_t
createRobot
()
DevicePtr_t
createRobot
()
{
{
DevicePtr_t
robot
=
Device
::
create
(
"test"
);
DevicePtr_t
robot
=
Device
::
create
(
"test"
);
BodyPtr_t
body
;
se3
::
Model
&
model
=
robot
->
model
();
fcl
::
Transform3f
pos
;
fcl
::
Matrix3f
orient
;
// lleg
orient
(
0
,
0
)
=
1
;
orient
(
0
,
1
)
=
0
;
orient
(
0
,
2
)
=
0
;
addJointAndBody
(
model
,
se3
::
JointModelRX
(),
vector3_t
::
Zero
(),
0
,
"ARM"
);
orient
(
1
,
0
)
=
0
;
orient
(
1
,
1
)
=
1
;
orient
(
1
,
2
)
=
0
;
addJointAndBody
(
model
,
se3
::
JointModelRX
(),
vector3_t
(
0
,
ARM_LENGTH
,
0
),
1
,
"FOREARM"
);
orient
(
2
,
0
)
=
0
;
orient
(
2
,
1
)
=
0
;
orient
(
2
,
2
)
=
1
;
model
.
addFrame
(
se3
::
Frame
(
"EE"
,
2
,
se3
::
SE3
::
Identity
(),
se3
::
FIXED_JOINT
));
pos
.
setRotation
(
orient
);
// Arm joint
pos
.
setTranslation
(
fcl
::
Vec3f
(
0
,
0
,
0
));
JointPtr_t
arm
=
objectFactory
.
createBoundedJointRotation
(
pos
);
robot
->
rootJoint
(
arm
);
arm
->
name
(
"ARM"
);
body
=
objectFactory
.
createBody
();
body
->
name
(
"ARM_BODY"
);
arm
->
setLinkedBody
(
body
);
// Forearm joint
pos
.
setTranslation
(
fcl
::
Vec3f
(
0
,
ARM_LENGTH
,
0
));
JointPtr_t
forearm
=
objectFactory
.
createBoundedJointRotation
(
pos
);
forearm
->
name
(
"FOREARM"
);
arm
->
addChildJoint
(
forearm
);
body
=
objectFactory
.
createBody
();
body
->
name
(
"FOREARM_BODY"
);
forearm
->
setLinkedBody
(
body
);
// End effector joint
pos
.
setTranslation
(
fcl
::
Vec3f
(
0
,
FOREARM_LENGTH
,
0
));
JointPtr_t
ee
=
objectFactory
.
createJointAnchor
(
pos
);
ee
->
name
(
"EE"
);
body
=
objectFactory
.
createBody
();
body
->
name
(
"EE"
);
ee
->
setLinkedBody
(
body
);
forearm
->
addChildJoint
(
ee
);
//body = objectFactory.createBody ();
//body->name ("RLEG_BODY2");
//joint->setLinkedBody (body);
robot
->
createData
();
robot
->
controlComputation
((
Device
::
Computation_t
)
(
Device
::
JOINT_POSITION
|
Device
::
JACOBIAN
));
robot
->
currentConfiguration
(
robot
->
neutralConfiguration
());
robot
->
computeForwardKinematics
();
return
robot
;
return
robot
;
}
}
...
@@ -175,7 +174,8 @@ int main (int , char**) {
...
@@ -175,7 +174,8 @@ int main (int , char**) {
JointPtr_t
ee
=
r
->
getJointByName
(
"FOREARM"
);
JointPtr_t
ee
=
r
->
getJointByName
(
"FOREARM"
);
vector3_t
target
(
0
,
(
ARM_LENGTH
+
FOREARM_LENGTH
)
/
2
,
0
),
vector3_t
target
(
0
,
(
ARM_LENGTH
+
FOREARM_LENGTH
)
/
2
,
0
),
origin
(
0
,
FOREARM_LENGTH
,
0
);
origin
(
0
,
FOREARM_LENGTH
,
0
);
PositionPtr_t
c
=
Position
::
create
(
"Pos"
,
r
,
ee
,
origin
,
target
,
PositionPtr_t
c
=
Position
::
create
(
"Pos"
,
r
,
ee
,
Transform3f
(
I3
,
origin
),
Transform3f
(
I3
,
target
),
list_of
(
false
)(
true
)(
false
).
convert_to_container
<
std
::
vector
<
bool
>
>
());
list_of
(
false
)(
true
)(
false
).
convert_to_container
<
std
::
vector
<
bool
>
>
());
ConstraintSetPtr_t
cs
=
ConstraintSet
::
create
(
r
,
"test-cs"
);
ConstraintSetPtr_t
cs
=
ConstraintSet
::
create
(
r
,
"test-cs"
);
ConfigProjectorPtr_t
proj
=
ConfigProjector
::
create
(
r
,
"test"
,
1e-4
,
20
);
ConfigProjectorPtr_t
proj
=
ConfigProjector
::
create
(
r
,
"test"
,
1e-4
,
20
);
...
...
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