mirror of
https://git.salome-platform.org/gitpub/modules/geom.git
synced 2024-12-25 08:50:36 +05:00
PAL7715: Unfriendly message after Glue Faces
This commit is contained in:
parent
8b908bd978
commit
53576d597d
@ -22,6 +22,9 @@ using namespace std;
|
|||||||
#include <Standard_NullObject.hxx>
|
#include <Standard_NullObject.hxx>
|
||||||
#include <Standard_Failure.hxx>
|
#include <Standard_Failure.hxx>
|
||||||
|
|
||||||
|
#define MSG_BAD_TOLERANCE "Tolerance is too big"
|
||||||
|
#define MSG_BAD_ARG_SHAPE "Argument shape is not a compound of hexahedral solids"
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : GEOMImpl_GlueDriver
|
//function : GEOMImpl_GlueDriver
|
||||||
//purpose :
|
//purpose :
|
||||||
@ -64,14 +67,22 @@ TopoDS_Shape GEOMImpl_GlueDriver::GlueFacesWithWarnings (const TopoDS_Shape& the
|
|||||||
case 2:
|
case 2:
|
||||||
Standard_Failure::Raise("No vertices found in source shape");
|
Standard_Failure::Raise("No vertices found in source shape");
|
||||||
break;
|
break;
|
||||||
|
case 3:
|
||||||
|
case 4:
|
||||||
|
Standard_Failure::Raise(MSG_BAD_TOLERANCE " or " MSG_BAD_ARG_SHAPE);
|
||||||
|
break;
|
||||||
case 5:
|
case 5:
|
||||||
Standard_Failure::Raise("Source shape is Null");
|
Standard_Failure::Raise("Source shape is Null");
|
||||||
break;
|
break;
|
||||||
case 6:
|
case 6:
|
||||||
Standard_Failure::Raise("Result shape is Null");
|
Standard_Failure::Raise("Result shape is Null");
|
||||||
break;
|
break;
|
||||||
|
case 100:
|
||||||
|
Standard_Failure::Raise(MSG_BAD_TOLERANCE);
|
||||||
|
break;
|
||||||
case 101:
|
case 101:
|
||||||
Standard_Failure::Raise("Argument shape is not a compound of hexahedral solids");
|
case 102:
|
||||||
|
Standard_Failure::Raise(MSG_BAD_ARG_SHAPE);
|
||||||
break;
|
break;
|
||||||
case 200:
|
case 200:
|
||||||
Standard_Failure::Raise("Error occured during check of geometric coincidence");
|
Standard_Failure::Raise("Error occured during check of geometric coincidence");
|
||||||
|
Loading…
Reference in New Issue
Block a user