X-Git-Url: http://git.salome-platform.org/gitweb/?p=modules%2Fsmesh.git;a=blobdiff_plain;f=src%2FTools%2Fsmesh_plugins.py;h=66aa07bd9392eea2135d5f6e3373ac0924e4798b;hp=6126162af659c5f934c5ccbd197644c669f52d13;hb=fb33951dbaa23a7988cae66f3f892cb95728dcb0;hpb=9eb8f2ba00a775bbf204b50a0a34d46b7dbf121a diff --git a/src/Tools/smesh_plugins.py b/src/Tools/smesh_plugins.py index 6126162af..66aa07bd9 100644 --- a/src/Tools/smesh_plugins.py +++ b/src/Tools/smesh_plugins.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -# Copyright (C) 2011-2019 EDF R&D +# Copyright (C) 2011-2021 EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -91,3 +91,14 @@ except Exception as e: #print 'probleme zcracks' salome_pluginsmanager.logger.info('ERROR: Zcrack plug-in is unavailable: {}'.format(e)) pass + +# Topological to volumic mesh plugin +try: + from TopIIVolMeshPlugin import TopIIVolMeshLct + salome_pluginsmanager.AddFunction('Run Topological Volumic mesher', + 'run topological volumic mesher', + TopIIVolMeshLct) +except Exception as e: + #print 'probleme zcracks' + salome_pluginsmanager.logger.info('ERROR: TopIIVolMesh plug-in is unavailable: {}'.format(e)) + pass