Changeset 162
- Timestamp:
- 04/15/07 08:51:17 (2 years ago)
- Files:
-
- GtkRadiant/trunk/CHANGES (modified) (1 diff)
- GtkRadiant/trunk/contrib/brushexport/export.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
GtkRadiant/trunk/CHANGES
r159 r162 1 1 This is the changelog for developers, != changelog for the end user 2 2 that we distribute with the binaries. (see changelog) 3 4 15/03/2007 5 namespace 6 - Fixed brushexport2 output float-format (Shaderman) 3 7 4 8 27/03/2007 GtkRadiant/trunk/contrib/brushexport/export.cpp
r128 r162 192 192 // vertices 193 193 for(size_t i = 0; i < w.numpoints; ++i) 194 out << "v " << w[i].vertex.x() << " " << w[i].vertex.y() << " " << w[i].vertex.z() << "\n";194 out << "v " << FloatFormat(w[i].vertex.x(), 1, 6) << " " << FloatFormat(w[i].vertex.y(), 1, 6) << " " << FloatFormat(w[i].vertex.z(), 1, 6) << "\n"; 195 195 } 196 196 out << "\n"; … … 202 202 // texcoords 203 203 for(size_t i = 0; i < w.numpoints; ++i) 204 out << "vt " << w[i].texcoord.x() << " " << w[i].texcoord.y() << "\n";204 out << "vt " << FloatFormat(w[i].texcoord.x(), 1, 6) << " " << FloatFormat(w[i].texcoord.y(), 1, 6) << "\n"; 205 205 } 206 206
