Beispiel #1
0
    def execute(self, context):
        """
        Make the mesh watertight and manifold but might detroy some edges.
        """

        global step

        step = manifold.correction(True, context.scene.FastProcessing)
        self.report({"INFO"}, "The mesh is now correct")
        return {'FINISHED'}
Beispiel #2
0
    def execute(self, context):
        """
        Make the mesh watertight and often manifold but does not destroy it.
        """

        global step

        step = manifold.correction(False, context.scene.FastProcessing)
        self.report({"INFO"}, "The mesh is now correct")
        return {'FINISHED'}