Main Page
Related Pages
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
x
z
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
f
g
i
j
l
m
n
p
q
r
s
t
u
v
x
y
z
Enumerations
Enumerator
a
b
c
e
f
g
j
l
m
o
p
r
s
u
v
w
Classes
Class List
Class Hierarchy
Class Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
p
q
r
s
t
u
v
z
Enumerations
Enumerator
a
b
c
d
f
i
l
m
n
o
r
s
u
v
Related Functions
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
Functions
a
b
c
d
e
f
g
i
j
l
m
n
o
p
q
r
s
t
u
w
Variables
a
b
c
d
e
f
g
h
i
k
l
m
o
p
r
s
t
u
v
Typedefs
a
c
d
g
j
m
p
r
s
t
v
Enumerator
Macros
_
a
b
d
e
f
h
i
j
k
m
o
p
q
r
s
v
Examples
bindings
python
utils
dependencies.cpp
Go to the documentation of this file.
1
//
2
// Copyright (c) 2020-2021 INRIA
3
//
4
5
#include <boost/python.hpp>
6
7
namespace
pinocchio
8
{
9
namespace
python
10
{
11
12
namespace
bp
=
boost::python
;
13
14
void
exposeDependencies
()
15
{
16
bp::scope().attr(
"WITH_HPP_FCL"
) =
17
#ifdef PINOCCHIO_WITH_HPP_FCL
18
true
;
19
#else
20
false
;
21
#endif
22
23
bp::scope().attr(
"WITH_URDFDOM"
) =
24
#ifdef PINOCCHIO_WITH_URDFDOM
25
true
;
26
#else
27
false
;
28
#endif
29
30
bp::scope().attr(
"WITH_CPPAD"
) =
31
#ifdef PINOCCHIO_WITH_CPPAD
32
true
;
33
#else
34
false
;
35
#endif
36
37
bp::scope().attr(
"WITH_OPENMP"
) =
38
#ifdef PINOCCHIO_PYTHON_INTERFACE_WITH_OPENMP
39
true
;
40
#else
41
false
;
42
#endif
43
44
bp::scope().attr(
"WITH_SDFORMAT"
) =
45
#ifdef PINOCCHIO_WITH_SDFORMAT
46
true
;
47
#else
48
false
;
49
#endif
50
}
51
52
}
// namespace python
53
}
// namespace pinocchio
boost::python
python
pinocchio::python::exposeDependencies
void exposeDependencies()
Definition:
dependencies.cpp:14
pinocchio
Main pinocchio namespace.
Definition:
timings.cpp:33
pinocchio
Author(s):
autogenerated on Wed Apr 16 2025 02:41:46