1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00

0023129: BRepTools::OuterShell() works wrong - it always returns the first shell

This commit is contained in:
pkv
2012-09-27 12:03:12 +04:00
parent 73a97e76da
commit 4b66ae7692
3 changed files with 234 additions and 59 deletions

View File

@@ -46,22 +46,19 @@ is
DataMap from TCollection(Shape from TopoDS,
Address from Standard,
ShapeMapHasher from TopTools);
class SolidExplorer;
class SolidPassiveClassifier instantiates Classifier3d from TopClass
(Intersector3d from BRepClass3d);
class SolidPassiveClassifier instantiates
Classifier3d from TopClass (Intersector3d from BRepClass3d);
---class SClassifier instantiates SolidClassifier from TopClass
--- (SolidExplorer from BRepClass3d,
--- Intersector3d from BRepClass3d);
class SClassifier;
class SolidClassifier;
OuterShell(S : Solid from TopoDS)
returns Shell from TopoDS;
---Purpose: Returns the outer most shell of <S>. Returns a Null
-- shell if <S> has no outer shell.
end BRepClass3d;