- the OpenMesh STLReader now also reads face normals if requested
- added corresponding unittests - removed duplicate code closes #1719 git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@962 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
@@ -120,10 +120,10 @@ private:
|
||||
enum STL_Type { STLA, STLB, NONE };
|
||||
STL_Type check_stl_type(const std::string& _filename) const;
|
||||
|
||||
bool read_stla(const std::string& _filename, BaseImporter& _bi) const;
|
||||
bool read_stla(std::istream& _in, BaseImporter& _bi) const;
|
||||
bool read_stlb(const std::string& _filename, BaseImporter& _bi) const;
|
||||
bool read_stlb(std::istream& _in, BaseImporter& _bi) const;
|
||||
bool read_stla(const std::string& _filename, BaseImporter& _bi, Options& _opt) const;
|
||||
bool read_stla(std::istream& _in, BaseImporter& _bi, Options& _opt) const;
|
||||
bool read_stlb(const std::string& _filename, BaseImporter& _bi, Options& _opt) const;
|
||||
bool read_stlb(std::istream& _in, BaseImporter& _bi, Options& _opt) const;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user