mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-25 02:41:22 +00:00
- Fixed brushexport2 output float-format (Shaderman)
git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@162 8a3a26a2-13c4-0310-b231-cf6edde360e5
This commit is contained in:
parent
6763fa2719
commit
389cb33239
2 changed files with 6 additions and 2 deletions
4
CHANGES
4
CHANGES
|
@ -1,6 +1,10 @@
|
||||||
This is the changelog for developers, != changelog for the end user
|
This is the changelog for developers, != changelog for the end user
|
||||||
that we distribute with the binaries. (see changelog)
|
that we distribute with the binaries. (see changelog)
|
||||||
|
|
||||||
|
15/03/2007
|
||||||
|
namespace
|
||||||
|
- Fixed brushexport2 output float-format (Shaderman)
|
||||||
|
|
||||||
27/03/2007
|
27/03/2007
|
||||||
namespace
|
namespace
|
||||||
- Fix: Added missing xml-writer pop-calls
|
- Fix: Added missing xml-writer pop-calls
|
||||||
|
|
|
@ -191,7 +191,7 @@ bool ExportDataAsWavefront::WriteToFile(const std::string& path) const
|
||||||
|
|
||||||
// vertices
|
// vertices
|
||||||
for(size_t i = 0; i < w.numpoints; ++i)
|
for(size_t i = 0; i < w.numpoints; ++i)
|
||||||
out << "v " << w[i].vertex.x() << " " << w[i].vertex.y() << " " << w[i].vertex.z() << "\n";
|
out << "v " << FloatFormat(w[i].vertex.x(), 1, 6) << " " << FloatFormat(w[i].vertex.y(), 1, 6) << " " << FloatFormat(w[i].vertex.z(), 1, 6) << "\n";
|
||||||
}
|
}
|
||||||
out << "\n";
|
out << "\n";
|
||||||
|
|
||||||
|
@ -201,7 +201,7 @@ bool ExportDataAsWavefront::WriteToFile(const std::string& path) const
|
||||||
|
|
||||||
// texcoords
|
// texcoords
|
||||||
for(size_t i = 0; i < w.numpoints; ++i)
|
for(size_t i = 0; i < w.numpoints; ++i)
|
||||||
out << "vt " << w[i].texcoord.x() << " " << w[i].texcoord.y() << "\n";
|
out << "vt " << FloatFormat(w[i].texcoord.x(), 1, 6) << " " << FloatFormat(w[i].texcoord.y(), 1, 6) << "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
for(std::list<const Face*>::const_iterator it(git->faces.begin()); it != end; ++it)
|
for(std::list<const Face*>::const_iterator it(git->faces.begin()); it != end; ++it)
|
||||||
|
|
Loading…
Reference in a new issue