Skip to content

Commit

Permalink
fix-cpp-wirte
Browse files Browse the repository at this point in the history
  • Loading branch information
zhouhang95 committed Sep 12, 2023
1 parent b55c937 commit 26ea7d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zeno/src/nodes/neo/WriteObjPrim.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace {

void dump_obj(PrimitiveObject *prim, std::ostream &fout) {
fout << "# https://github.com/zenustech/zeno\n";
fout << std::setiosflags(std::ios::fixed) << std::setprecision(6);
fout << std::setprecision(8);
for (auto const &[x, y, z]: prim->verts) {
fout << "v " << x << ' ' << y << ' ' << z << '\n';
}
Expand Down

0 comments on commit 26ea7d2

Please sign in to comment.