1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

0029000: Update documentation of Boolean operations according to the new Error/Warning reporting system

The documentation of Boolean Component has been updated - calls to ErrorStatus() method have been replaced with calls to HasErrors() method.
This commit is contained in:
emv
2017-08-16 10:30:22 +03:00
committed by abv
parent efe9d99730
commit a743814be9
8 changed files with 40 additions and 567 deletions

View File

@@ -102,8 +102,8 @@ class BOPAlgo_PaveFiller;
//! aMV.SetIntersect(bIntersect); //intersect or not the shapes from <aLS>
//! //
//! aMV.Perform(); //perform the operation
//! if (aMV.ErrorStatus()) { //check error status
//! return;
//! if (aMV.HasErrors()) { //check error status
//! return;
//! }
//! //
//! const TopoDS_Shape& aResult = aMV.Shape(); //result of the operation