Skip to content

Commit 13c1d09

Browse files
Do compute normals in toString
1 parent 8c7ef47 commit 13c1d09

File tree

1 file changed

+1
-1
lines changed
  • cadquery/occ_impl/exporters

1 file changed

+1
-1
lines changed

cadquery/occ_impl/exporters/vtk.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def toString(
1818

1919
writer = vtkXMLPolyDataWriter()
2020
writer.SetWriteToOutputString(True)
21-
writer.SetInputData(shape.toVtkPolyData(tolerance, angularTolerance))
21+
writer.SetInputData(shape.toVtkPolyData(tolerance, angularTolerance, True))
2222
writer.Write()
2323

2424
return writer.GetOutputString()

0 commit comments

Comments
 (0)