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
337999cd
Commit
337999cd
authored
9 years ago
by
Antonio El Khoury
Browse files
Options
Downloads
Patches
Plain Diff
[Python] Add StdVec::index binding to emulate python list behavior.
* It is defined only for string vectors for now.
parent
de2b8e5d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/python/model.hpp
+38
-11
38 additions, 11 deletions
src/python/model.hpp
with
38 additions
and
11 deletions
src/python/model.hpp
+
38
−
11
View file @
337999cd
//
// Copyright (c) 2015 CNRS
// Copyright (c) 2015 Wandercraft, 86 rue de Paris 91400 Orsay, France.
//
// This file is part of Pinocchio
// Pinocchio is free software: you can redistribute it
...
...
@@ -192,20 +193,46 @@ namespace se3
static
std
::
string
toString
(
const
ModelHandler
&
m
)
{
std
::
ostringstream
s
;
s
<<
*
m
;
return
s
.
str
();
}
///
/// \brief Provide equivalent to python list index function for
/// vectors.
///
/// \param[in] x The input vector.
/// \param[in] v The value of to look for in the vector.
///
/// \return The index of the matching element of the vector. If
/// no element is found, return -1.
///
template
<
typename
T
>
static
Model
::
Index
index
(
std
::
vector
<
T
>
const
&
x
,
typename
std
::
vector
<
T
>::
value_type
const
&
v
)
{
Model
::
Index
i
=
0
;
for
(
typename
std
::
vector
<
T
>::
const_iterator
it
=
x
.
begin
();
it
!=
x
.
end
();
++
it
,
++
i
)
{
if
(
*
it
==
v
)
{
return
i
;
}
}
return
-
1
;
}
/* --- Expose --------------------------------------------------------- */
static
void
expose
()
{
bp
::
class_
<
std
::
vector
<
Index
>
>
(
"StdVec_Index"
)
.
def
(
bp
::
vector_indexing_suite
<
std
::
vector
<
Index
>
>
());
bp
::
class_
<
std
::
vector
<
std
::
string
>
>
(
"StdVec_StdString"
)
.
def
(
bp
::
vector_indexing_suite
<
std
::
vector
<
std
::
string
>
>
());
bp
::
class_
<
std
::
vector
<
bool
>
>
(
"StdVec_Bool"
)
.
def
(
bp
::
vector_indexing_suite
<
std
::
vector
<
bool
>
>
());
bp
::
class_
<
std
::
vector
<
double
>
>
(
"StdVec_double"
)
.
def
(
bp
::
vector_indexing_suite
<
std
::
vector
<
double
>
>
());
bp
::
class_
<
JointModelVector
>
(
"StdVec_JointModelVector"
)
.
def
(
bp
::
vector_indexing_suite
<
JointModelVector
,
true
>
());
bp
::
class_
<
std
::
vector
<
Index
>
>
(
"StdVec_Index"
)
.
def
(
bp
::
vector_indexing_suite
<
std
::
vector
<
Index
>
>
());
bp
::
class_
<
std
::
vector
<
std
::
string
>
>
(
"StdVec_StdString"
)
.
def
(
bp
::
vector_indexing_suite
<
std
::
vector
<
std
::
string
>
>
())
.
def
(
"index"
,
&
ModelPythonVisitor
::
index
<
std
::
string
>
);
bp
::
class_
<
std
::
vector
<
bool
>
>
(
"StdVec_Bool"
)
.
def
(
bp
::
vector_indexing_suite
<
std
::
vector
<
bool
>
>
());
bp
::
class_
<
std
::
vector
<
double
>
>
(
"StdVec_double"
)
.
def
(
bp
::
vector_indexing_suite
<
std
::
vector
<
double
>
>
());
bp
::
class_
<
JointModelVector
>
(
"StdVec_JointModelVector"
)
.
def
(
bp
::
vector_indexing_suite
<
JointModelVector
,
true
>
());
bp
::
class_
<
ModelHandler
>
(
"Model"
,
"Articulated rigid body model (const)"
,
bp
::
no_init
)
...
...
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