- added precision option to openmesh writers
refs #1075 git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@746 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
@@ -93,17 +93,17 @@ public:
|
||||
std::string get_description() const { return "Stereolithography Format"; }
|
||||
std::string get_extensions() const { return "stla stlb"; }
|
||||
|
||||
bool write(const std::string&, BaseExporter&, Options) const;
|
||||
bool write(const std::string&, BaseExporter&, Options, std::streamsize _precision = 6) const;
|
||||
|
||||
bool write(std::ostream&, BaseExporter&, Options) const;
|
||||
bool write(std::ostream&, BaseExporter&, Options, std::streamsize _precision = 6) const;
|
||||
|
||||
size_t binary_size(BaseExporter&, Options) const;
|
||||
|
||||
private:
|
||||
bool write_stla(const std::string&, BaseExporter&, Options) const;
|
||||
bool write_stla(std::ostream&, BaseExporter&, Options) const;
|
||||
bool write_stla(std::ostream&, BaseExporter&, Options, std::streamsize _precision = 6) const;
|
||||
bool write_stlb(const std::string&, BaseExporter&, Options) const;
|
||||
bool write_stlb(std::ostream&, BaseExporter&, Options) const;
|
||||
bool write_stlb(std::ostream&, BaseExporter&, Options, std::streamsize _precision = 6) const;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user