0027998: Self-intersection is not detected
[occt.git] / src / BOPAlgo / BOPAlgo_CheckerSI.hxx
CommitLineData
42cf5bc1 1// Created by: Peter Kurnev
2// Copyright (c) 2010-2014 OPEN CASCADE SAS
3// Copyright (c) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
4// Copyright (c) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, CEDRAT,
5// EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6//
7// This file is part of Open CASCADE Technology software library.
8//
9// This library is free software; you can redistribute it and/or modify it under
10// the terms of the GNU Lesser General Public License version 2.1 as published
11// by the Free Software Foundation, with special exception defined in the file
12// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
13// distribution for complete text of the license and disclaimer of any warranty.
14//
15// Alternatively, this file may be used under the terms of Open CASCADE
16// commercial license or contractual agreement.
17
18#ifndef _BOPAlgo_CheckerSI_HeaderFile
19#define _BOPAlgo_CheckerSI_HeaderFile
20
21#include <Standard.hxx>
22#include <Standard_DefineAlloc.hxx>
23#include <Standard_Handle.hxx>
24
25#include <Standard_Integer.hxx>
26#include <Standard_Boolean.hxx>
42cf5bc1 27#include <BOPAlgo_PaveFiller.hxx>
28
29
25dfc507 30//! Checks the shape on self-interference.<br>
31//! In case of error the algorithm may return the following ErrorStatus:<br>
32//! 10 - The number of the input arguments is not one;<br>
33//! 11 - The check has been aborted during intersection of sub-shapes.<br>
34//! In case the error has occurred during intersection of sub-shapes, i.e.
35//! in BOPAlgo_PaveFiller::PerformInternal() method, the ErrorStatus from this method
36//! directly will be returned.
37
42cf5bc1 38class BOPAlgo_CheckerSI : public BOPAlgo_PaveFiller
39{
40public:
41
42 DEFINE_STANDARD_ALLOC
43
25dfc507 44
42cf5bc1 45 Standard_EXPORT BOPAlgo_CheckerSI();
25dfc507 46 Standard_EXPORT virtual ~BOPAlgo_CheckerSI();
42cf5bc1 47
48 Standard_EXPORT virtual void Perform() Standard_OVERRIDE;
49
25dfc507 50 //! Sets the level of checking shape on self-interference.<br>
51 //! It defines which interferences will be checked:<br>
52 //! 0 - only V/V;<br>
53 //! 1 - V/V and V/E;<br>
54 //! 2 - V/V, V/E and E/E;<br>
55 //! 3 - V/V, V/E, E/E and V/F;<br>
56 //! 4 - V/V, V/E, E/E, V/F and E/F;<br>
57 //! 5 - V/V, V/E, E/E, V/F, E/F and F/F;<br>
58 //! 6 - V/V, V/E, E/E, V/F, E/F, F/F and V/S;<br>
59 //! 7 - V/V, V/E, E/E, V/F, E/F, F/F, V/S and E/S;<br>
60 //! 8 - V/V, V/E, E/E, V/F, E/F, F/F, V/S, E/S and F/S;<br>
61 //! 9 - V/V, V/E, E/E, V/F, E/F, F/F, V/S, E/S, F/S and S/S - all interferences (Default value)
42cf5bc1 62 Standard_EXPORT void SetLevelOfCheck (const Standard_Integer theLevel);
42cf5bc1 63
64protected:
65
42cf5bc1 66 Standard_EXPORT virtual void Init() Standard_OVERRIDE;
25dfc507 67
68 //! Treats the intersection results
42cf5bc1 69 Standard_EXPORT void PostTreat();
42cf5bc1 70
f48cb55d 71 Standard_EXPORT void CheckFaceSelfIntersection();
72
25dfc507 73 //! Methods for intersection with solids
42cf5bc1 74
25dfc507 75 //! Vertex/Solid intersection
76 Standard_EXPORT virtual void PerformVZ();
42cf5bc1 77
25dfc507 78 //! Edge/Solid intersection
79 Standard_EXPORT virtual void PerformEZ();
42cf5bc1 80
25dfc507 81 //! Face/Solid intersection
82 Standard_EXPORT virtual void PerformFZ();
42cf5bc1 83
25dfc507 84 //! Solid/Solid intersection
85 Standard_EXPORT virtual void PerformZZ();
42cf5bc1 86
25dfc507 87 //! Used for intersection of edges and faces with solids
88 Standard_EXPORT virtual void PerformSZ(const TopAbs_ShapeEnum aTS);
42cf5bc1 89
25dfc507 90 Standard_Integer myLevelOfCheck;
42cf5bc1 91
25dfc507 92private:
42cf5bc1 93
94};
95
42cf5bc1 96#endif // _BOPAlgo_CheckerSI_HeaderFile