We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 30f1274 commit b1bef1cCopy full SHA for b1bef1c
src/flitter/render/window/models.pyx
@@ -683,7 +683,10 @@ cdef class SnapEdges(UnaryOperation):
683
return trimesh_model
684
685
cpdef object build_manifold(self):
686
- return self.original.get_manifold().calculate_normals(0, 360*self.snap_angle)
+ manifold = self.original.get_manifold()
687
+ if manifold is not None:
688
+ manifold = manifold.calculate_normals(0, 360*self.snap_angle)
689
+ return manifold
690
691
692
cdef class Transform(UnaryOperation):
0 commit comments