1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-03 14:10:33 +03:00

0028880: Modeling Algorithms - add missing BRepFeat_SplitShape::Right() getter

- Added Right() method to BRepFeat_SplitShape;
- Added an option in command buc60854, which allows to select Left() or Right() method;
- Modified method BUC60854 in QABugs_14.cxx;
- Added new option to the help of command buc60854;
- Modified test case buc60854. Now its state is "OK";
- Added check Right() in buc60854 test case.
This commit is contained in:
antonavt
2020-03-02 12:16:14 +03:00
committed by bugmaster
parent 62afcbbb4a
commit 68064d7bc3
4 changed files with 64 additions and 12 deletions

View File

@@ -105,6 +105,9 @@ public:
//! Raises NotDone if IsDone returns <Standard_False>.
Standard_EXPORT const TopTools_ListOfShape& Left() const;
//! Returns the faces of the "right" part on the shape.
Standard_EXPORT const TopTools_ListOfShape& Right() const;
//! Builds the cut and the resulting faces and edges as well.
Standard_EXPORT void Build() Standard_OVERRIDE;
@@ -130,6 +133,8 @@ private:
LocOpe_Spliter mySShape;
Handle(LocOpe_WiresOnShape) myWOnShape;
mutable TopTools_ListOfShape myRight;
};