Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guilhem Saurel
hpp-fcl
Commits
cae9fb73
Commit
cae9fb73
authored
Apr 28, 2020
by
Joseph Mirabel
Browse files
[Python] Bind functions to create BVHModel.
parent
950f90b9
Changes
2
Show whitespace changes
Inline
Side-by-side
python/collision-geometries.cc
View file @
cae9fb73
...
...
@@ -97,6 +97,7 @@ void exposeBVHModel (const std::string& bvname)
class_
<
BVHModel_t
,
bases
<
BVHModelBase
>
,
shared_ptr
<
BVHModel_t
>
>
(
type
.
c_str
(),
doxygen
::
class_doc
<
BVHModel_t
>
(),
no_init
)
.
def
(
dv
::
init
<
BVHModel_t
>
())
.
def
(
dv
::
init
<
BVHModel_t
,
BVHModel_t
>
())
;
}
...
...
@@ -359,6 +360,9 @@ void exposeCollisionGeometries ()
exposeShapes
();
typedef
std
::
vector
<
Vec3f
>
Vec3fs
;
typedef
std
::
vector
<
Triangle
>
Triangles
;
class_
<
BVHModelBase
,
bases
<
CollisionGeometry
>
,
BVHModelPtr_t
,
noncopyable
>
(
"BVHModelBase"
,
no_init
)
.
def
(
"vertices"
,
&
BVHModelBaseWrapper
::
vertices
,
...
...
@@ -371,6 +375,20 @@ void exposeCollisionGeometries ()
.
def_readonly
(
"convex"
,
&
BVHModelBase
::
convex
)
.
def
(
"buildConvexRepresentation"
,
&
BVHModelBase
::
buildConvexRepresentation
)
// Expose function to build a BVH
.
def
(
dv
::
member_func
(
"beginModel"
,
&
BVHModelBase
::
beginModel
))
.
def
(
dv
::
member_func
(
"addVertex"
,
&
BVHModelBase
::
addVertex
))
.
def
(
dv
::
member_func
(
"addTriangle"
,
&
BVHModelBase
::
addTriangle
))
.
def
(
dv
::
member_func
<
int
(
BVHModelBase
::*
)(
const
Vec3fs
&
,
const
Triangles
&
)
>
(
"addSubModel"
,
&
BVHModelBase
::
addSubModel
))
.
def
(
dv
::
member_func
<
int
(
BVHModelBase
::*
)(
const
Vec3fs
&
)
>
(
"addSubModel"
,
&
BVHModelBase
::
addSubModel
))
.
def
(
dv
::
member_func
(
"endModel"
,
&
BVHModelBase
::
endModel
))
// Expose function to replace a BVH
.
def
(
dv
::
member_func
(
"beginReplaceModel"
,
&
BVHModelBase
::
beginReplaceModel
))
.
def
(
dv
::
member_func
(
"replaceVertex"
,
&
BVHModelBase
::
replaceVertex
))
.
def
(
dv
::
member_func
(
"replaceTriangle"
,
&
BVHModelBase
::
replaceTriangle
))
.
def
(
dv
::
member_func
(
"replaceSubModel"
,
&
BVHModelBase
::
replaceSubModel
))
.
def
(
dv
::
member_func
(
"endReplaceModel"
,
&
BVHModelBase
::
endReplaceModel
))
;
exposeBVHModel
<
OBB
>
(
"OBB"
);
exposeBVHModel
<
OBBRSS
>
(
"OBBRSS"
);
...
...
python/math.cc
View file @
cae9fb73
...
...
@@ -33,6 +33,7 @@
// POSSIBILITY OF SUCH DAMAGE.
#include <boost/python.hpp>
#include <boost/python/suite/indexing/vector_indexing_suite.hpp>
#include <eigenpy/eigenpy.hpp>
#include <eigenpy/geometry.hpp>
...
...
@@ -116,4 +117,17 @@ void exposeMaths ()
.
def
(
"__getitem__"
,
&
TriangleWrapper
::
getitem
)
.
def
(
"__setitem__"
,
&
TriangleWrapper
::
setitem
)
;
if
(
!
eigenpy
::
register_symbolic_link_to_registered_type
<
std
::
vector
<
Vec3f
>
>
())
{
class_
<
std
::
vector
<
Vec3f
>
>
(
"StdVec_Vec3f"
)
.
def
(
vector_indexing_suite
<
std
::
vector
<
Vec3f
>
>
())
;
}
if
(
!
eigenpy
::
register_symbolic_link_to_registered_type
<
std
::
vector
<
Triangle
>
>
())
{
class_
<
std
::
vector
<
Triangle
>
>
(
"StdVec_Triangle"
)
.
def
(
vector_indexing_suite
<
std
::
vector
<
Triangle
>
>
())
;
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment