Fix OBJ material files and face color (Thanks to Sven-Kristofer Pilz for the patch)

This commit is contained in:
Jan Möbius
2016-02-11 14:49:44 +01:00
parent d43d7d2148
commit 44cb2ebc4d

View File

@@ -118,7 +118,7 @@ write(const std::string& _filename, BaseExporter& _be, Options _opt, std::stream
dot = _filename.find_last_of("."); dot = _filename.find_last_of(".");
if(dot != std::string::npos) if(dot != std::string::npos)
objName_ = objName_.substr(0,dot-1); objName_ = objName_.substr(0,dot);
} }
bool result = write(out, _be, _opt, _precision); bool result = write(out, _be, _opt, _precision);
@@ -184,7 +184,7 @@ writeMaterial(std::ostream& _out, BaseExporter& _be, Options _opt) const
for (size_t i=0; i < materialA_.size(); i++){ for (size_t i=0; i < materialA_.size(); i++){
_out << "newmtl " << "mat" << i << '\n'; _out << "newmtl " << "mat" << i << '\n';
_out << "Ka 0.5000 0.5000 0.5000" << '\n'; _out << "Ka 0.5000 0.5000 0.5000" << '\n';
_out << "Kd " << materialA_[i][0] << materialA_[i][1] << materialA_[i][2] << '\n';; _out << "Kd " << materialA_[i][0] << ' ' << materialA_[i][1] << ' ' << materialA_[i][2] << '\n';
_out << "Tr " << materialA_[i][3] << '\n'; _out << "Tr " << materialA_[i][3] << '\n';
_out << "illum 1" << '\n'; _out << "illum 1" << '\n';
} }
@@ -192,7 +192,7 @@ writeMaterial(std::ostream& _out, BaseExporter& _be, Options _opt) const
for (size_t i=0; i < material_.size(); i++){ for (size_t i=0; i < material_.size(); i++){
_out << "newmtl " << "mat" << i << '\n'; _out << "newmtl " << "mat" << i << '\n';
_out << "Ka 0.5000 0.5000 0.5000" << '\n'; _out << "Ka 0.5000 0.5000 0.5000" << '\n';
_out << "Kd " << material_[i][0] << material_[i][1] << material_[i][2] << '\n';; _out << "Kd " << material_[i][0] << ' ' << material_[i][1] << ' ' << material_[i][2] << '\n';
_out << "illum 1" << '\n'; _out << "illum 1" << '\n';
} }