Line |
Branch |
Exec |
Source |
1 |
|
|
// Copyright (c) 2015-2018, CNRS |
2 |
|
|
// Authors: Justin Carpentier <jcarpent@laas.fr> |
3 |
|
|
|
4 |
|
|
#ifndef __multicontact_api_python_expose_geometry_hpp__ |
5 |
|
|
#define __multicontact_api_python_expose_geometry_hpp__ |
6 |
|
|
|
7 |
|
|
namespace multicontact_api { |
8 |
|
|
namespace python { |
9 |
|
|
|
10 |
|
|
void exposeEllipsoid(); |
11 |
|
|
void exposeLinearCone(); |
12 |
|
|
void exposeSecondOrderCone(); |
13 |
|
|
|
14 |
|
3 |
inline void exposeGeometry() { |
15 |
|
3 |
exposeEllipsoid(); |
16 |
|
3 |
exposeLinearCone(); |
17 |
|
3 |
exposeSecondOrderCone(); |
18 |
|
3 |
} |
19 |
|
|
|
20 |
|
|
} // namespace python |
21 |
|
|
} // namespace multicontact_api |
22 |
|
|
|
23 |
|
|
#endif // ifndef __multicontact_api_python_expose_geometry_hpp__ |
24 |
|
|
|