# -*- coding: utf-8 -*-## This file is subject to the terms and conditions defined in# file 'LICENSE.txt', which is part of this source code package.#fromMuscat.Helpers.FactoryimportFactory
[docs]defCheckIntegrity(GUI=False):fromMuscat.MeshTools.MeshCreationToolsimportCreateDiskmesh=CreateDisk(ofTriangles=True)fromMuscat.MeshToolsimportRemeshasRR.InitAllRemesher()print(R.GetAvailableRemesher())forbackendinR.GetAvailableRemesher():print(f"Remeshing with {backend}")mesh2=R.Remesh(mesh,backEnd=backend)return"ok"