Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ACGL
acgl
Commits
7375fea4
Commit
7375fea4
authored
Mar 25, 2013
by
Janis Born
Browse files
deprecate old OBJ loader and call the new function instead
parent
0467bfe9
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/ACGL/OpenGL/Controller/GeometryDataControlFileOBJ.cc
View file @
7375fea4
...
...
@@ -9,6 +9,8 @@
#include <ACGL/Base/StringOperations.hh>
#include <ACGL/OpenGL/Data/GeometryDataLoadStore.hh>
#include <vector>
#include <iostream>
#include <fstream>
...
...
@@ -21,6 +23,12 @@ using namespace ACGL::Base;
bool
GeometryDataControlFileOBJ
::
load
(
SharedGeometryData
&
geometry
)
const
{
if
(
geometry
=
loadGeometryDataFromOBJ
(
getFullFilePath
()))
return
true
;
else
return
false
;
/*
std::string fullFileName = getFullFilePath();
std::string line = "";
...
...
@@ -296,5 +304,5 @@ bool GeometryDataControlFileOBJ::load(SharedGeometryData& geometry) const
}
return true;
*/
}
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