Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hpp-fcl
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
Guilhem Saurel
hpp-fcl
Commits
bdade023
Commit
bdade023
authored
5 years ago
by
Joseph Mirabel
Browse files
Options
Downloads
Patches
Plain Diff
Workaround Assimp bug related to undefined symbols.
parent
9360a7c3
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
include/hpp/fcl/mesh_loader/assimp.h
+5
-1
5 additions, 1 deletion
include/hpp/fcl/mesh_loader/assimp.h
src/mesh_loader/assimp.cpp
+13
-13
13 additions, 13 deletions
src/mesh_loader/assimp.cpp
with
18 additions
and
14 deletions
include/hpp/fcl/mesh_loader/assimp.h
+
5
−
1
View file @
bdade023
...
...
@@ -41,6 +41,9 @@
#include
<hpp/fcl/BVH/BVH_model.h>
class
aiScene
;
namespace
Assimp
{
class
Importer
;
}
namespace
hpp
{
...
...
@@ -62,7 +65,8 @@ struct Loader {
void
load
(
const
std
::
string
&
resource_path
);
aiScene
*
scene
;
Assimp
::
Importer
*
importer
;
aiScene
const
*
scene
;
};
/**
...
...
This diff is collapsed.
Click to expand it.
src/mesh_loader/assimp.cpp
+
13
−
13
View file @
bdade023
...
...
@@ -58,18 +58,10 @@ namespace fcl
namespace
internal
{
Loader
::
Loader
()
:
scene
(
NULL
)
{}
Loader
::~
Loader
()
Loader
::
Loader
()
:
importer
(
new
Assimp
::
Importer
())
{
if
(
scene
)
delete
scene
;
}
void
Loader
::
load
(
const
std
::
string
&
resource_path
)
{
Assimp
::
Importer
importer
;
// set list of ignored parameters (parameters used for rendering)
importer
.
SetPropertyInteger
(
AI_CONFIG_PP_RVC_FLAGS
,
importer
->
SetPropertyInteger
(
AI_CONFIG_PP_RVC_FLAGS
,
aiComponent_TANGENTS_AND_BITANGENTS
|
aiComponent_COLORS
|
aiComponent_BONEWEIGHTS
|
...
...
@@ -82,7 +74,16 @@ void Loader::load (const std::string & resource_path)
aiComponent_NORMALS
);
importer
.
ReadFile
(
resource_path
.
c_str
(),
}
Loader
::~
Loader
()
{
if
(
importer
)
delete
importer
;
}
void
Loader
::
load
(
const
std
::
string
&
resource_path
)
{
scene
=
importer
->
ReadFile
(
resource_path
.
c_str
(),
aiProcess_SortByPType
|
aiProcess_Triangulate
|
aiProcess_RemoveComponent
|
...
...
@@ -94,11 +95,10 @@ void Loader::load (const std::string & resource_path)
aiProcess_JoinIdenticalVertices
);
scene
=
importer
.
GetOrphanedScene
();
if
(
!
scene
)
{
const
std
::
string
exception_message
(
std
::
string
(
"Could not load resource "
)
+
resource_path
+
std
::
string
(
"
\n
"
)
+
importer
.
GetErrorString
()
+
std
::
string
(
"
\n
"
)
+
importer
->
GetErrorString
()
+
std
::
string
(
"
\n
"
)
+
"Hint: the mesh directory may be wrong."
);
throw
std
::
invalid_argument
(
exception_message
);
}
...
...
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