mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-22 22:24:01 -06:00
Fixed typo which broke export of toolpaths to obj file
This commit is contained in:
parent
4a1c42b3d5
commit
95c05aae3b
1 changed files with 1 additions and 1 deletions
|
@ -1100,7 +1100,7 @@ void GCodeViewer::export_toolpaths_to_obj(const char* filename) const
|
||||||
// save vertices to file
|
// save vertices to file
|
||||||
fprintf(fp, "\n# vertices\n");
|
fprintf(fp, "\n# vertices\n");
|
||||||
for (const Vec3f& v : out_vertices) {
|
for (const Vec3f& v : out_vertices) {
|
||||||
fprintf(fp, "v %g %g %g\n", v.x(), v.y(), v.x());
|
fprintf(fp, "v %g %g %g\n", v.x(), v.y(), v.z());
|
||||||
}
|
}
|
||||||
|
|
||||||
// save normals to file
|
// save normals to file
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue