geom/src/NMTAlgo/NMTAlgo_Splitter_1.cxx

692 lines
21 KiB
C++
Raw Normal View History

2004-12-01 10:39:14 +00:00
// File: NMTAlgo_Splitter_1.cxx
// Created: Mon Feb 2 14:58:54 2004
// Author: Peter KURNEV
// <pkv@irinox>
#include <NMTAlgo_Splitter.ixx>
#include <TopExp_Explorer.hxx>
#include <TopoDS_Shape.hxx>
#include <TopoDS_Compound.hxx>
#include <TopTools_MapOfShape.hxx>
#include <TopTools_DataMapOfShapeListOfShape.hxx>
#include <TopTools_MapIteratorOfMapOfShape.hxx>
#include <TopTools_ListOfShape.hxx>
#include <TopTools_ListIteratorOfListOfShape.hxx>
#include <TopExp.hxx>
#include <TopoDS_Iterator.hxx>
#include <TopTools_DataMapIteratorOfDataMapOfShapeListOfShape.hxx>
#include <TopoDS.hxx>
#include <TopoDS_Edge.hxx>
#include <TopoDS_Face.hxx>
#include <NMTAlgo_Loop3d.hxx>
#include <Precision.hxx>
#include <BRep_Tool.hxx>
#include <BRepClass3d_SolidClassifier.hxx>
#include <gp_Pnt.hxx>
#include <TopoDS_Solid.hxx>
#include <NMTAlgo_Loop3d.hxx>
#include <TopTools_DataMapIteratorOfDataMapOfShapeShape.hxx>
//=======================================================================
//function : ShellsAndSolids
//purpose :
//=======================================================================
void NMTAlgo_Splitter::ShellsAndSolids()
{
Standard_Boolean bMakeSolids;
TopAbs_ShapeEnum aType;
TopTools_ListIteratorOfListOfShape aItS;
TopTools_ListOfShape aLNS;
//
myAddedFacesMap.Clear();
bMakeSolids=(myLimit==TopAbs_SHAPE || myLimit<TopAbs_SHELL);
//
aItS.Initialize(myListShapes);
for ( ;aItS.More(); aItS.Next()) {
const TopoDS_Shape& aS=aItS.Value();
//
if (myToolShapes.Contains(aS)) {
continue;
}
//
aType=aS.ShapeType();
if (aType > TopAbs_SHELL) {
continue;//face,wire,...
}
//
aLNS.Clear();
//
MakeShells (aS, aLNS);
//
if (bMakeSolids && aType==TopAbs_SOLID) {
MakeSolids(aS, aLNS);
}
//
TopTools_ListIteratorOfListOfShape it (aLNS);
for (; it.More(); it.Next()) {
myBuilder.Add (myShape, it.Value());
}
}
//
// add split faces
aItS.Initialize(myListShapes);
for ( ;aItS.More(); aItS.Next()) {
const TopoDS_Shape& aS=aItS.Value();
//
aType=aS.ShapeType();
if (aType!=TopAbs_FACE || myMapTools.Contains(aS)) {
continue;
}
//
const TopoDS_Shape& aCSF=myImageShape.Image(aS).First();
TopoDS_Iterator itS(aCSF);
for (; itS.More(); itS.Next()){
const TopoDS_Shape& aF=itS.Value();
if (!myAddedFacesMap.Contains(aF)){
myBuilder.Add (myShape, aF);
}
}
}
}
//=======================================================================
//function : MakeShells
//purpose : split S into compound of shells
//=======================================================================
void NMTAlgo_Splitter::MakeShells(const TopoDS_Shape& aS,
TopTools_ListOfShape& aLNS)
{
NMTAlgo_Loop3d aShellMaker;
//
// get compound of split faces of aS
const TopoDS_Shape& aFC=myImageShape.Image(aS).First();
aShellMaker.AddConstFaces(aFC);
//
// add split faces inside aS
if (myClosedShapes.Contains(aS)) {
//
// internal faces compound
2005-01-20 06:24:17 +00:00
//modified by NIZNHY-PKV Thu Dec 23 16:34:05 2004 f
Standard_Integer aNbIF;
//
aNbIF=myInternalFaces.Extent();
//modified by NIZNHY-PKV Thu Dec 23 16:34:07 2004 t
2004-12-01 10:39:14 +00:00
TopoDS_Shape aIFC=FindFacesInside(aS, Standard_True);
2005-01-20 06:24:17 +00:00
aNbIF=myInternalFaces.Extent();
2004-12-01 10:39:14 +00:00
aShellMaker.AddSectionFaces(aIFC);
}
//
aLNS=aShellMaker.MakeShells(myAddedFacesMap);
//
// Add faces added to new shell to myAddedFacesMap:
// avoid rebuilding twice common part of 2 solids.
TopTools_ListIteratorOfListOfShape itS(aLNS);
TopExp_Explorer expF;
for (; itS.More(); itS.Next()) {
const TopoDS_Shape& aSh=itS.Value();
expF.Init (aSh, TopAbs_FACE);
for (; expF.More(); expF.Next()){
myAddedFacesMap.Add (expF.Current());
}
}
}
//=======================================================================
//function : MakeSolids
//purpose : make solids out of Shells
//=======================================================================
void NMTAlgo_Splitter::MakeSolids(const TopoDS_Shape& theSolid,
TopTools_ListOfShape& theShellList)
{
// for a solid wrapping other shells or solids without intersection,
// it is necessary to find shells making holes in it
Standard_Boolean isWrapping;
TopTools_ListOfShape aNewSolids; // result
TopTools_ListOfShape aHoleShells;
TopoDS_Shape anInfinitePointShape;
TopTools_DataMapOfShapeShape aInOutMap;
TopTools_ListIteratorOfListOfShape aShellIt, aSolisIt;
//
isWrapping = myWrappingSolid.Contains(theSolid);
if (!isWrapping && !theShellList.IsEmpty()) {
// check if theSolid initially has internal shells
TopoDS_Iterator aShellExp (theSolid);
aShellExp.Next();
isWrapping = aShellExp.More();
}
//
aShellIt.Initialize(theShellList);
for ( ; aShellIt.More(); aShellIt.Next()) {
const TopoDS_Shape & aShell = aShellIt.Value();
// check if a shell is a hole of theSolid
if (isWrapping && IsInside(anInfinitePointShape, aShell)){
aHoleShells.Append(aShell);
}
else {
// make a solid from a shell
TopoDS_Solid Solid;
myBuilder.MakeSolid( Solid );
myBuilder.Add (Solid, aShell);
aNewSolids.Append (Solid);
}
}
//
// find outer a shell most close to each hole shell
aShellIt.Initialize(aHoleShells);
for (; aShellIt.More(); aShellIt.Next()){
const TopoDS_Shape & aHole = aShellIt.Value();
//
aSolisIt.Initialize(aNewSolids);
for ( ; aSolisIt.More(); aSolisIt.Next()) {
const TopoDS_Shape & aSolid = aSolisIt.Value();
//
if (! IsInside(aHole, aSolid)){
continue;
}
//
if ( aInOutMap.IsBound (aHole)){
const TopoDS_Shape & aSolid2 = aInOutMap( aHole );
if ( IsInside( aSolid, aSolid2 )) {
aInOutMap.UnBind( aHole );
aInOutMap.Bind ( aHole, aSolid );
}
}
else{
aInOutMap.Bind (aHole, aSolid);
}
}
//
// add aHole to a solid
if (aInOutMap.IsBound( aHole )){
TopoDS_Shape & aSolid=aInOutMap(aHole);
myBuilder.Add (aSolid, aHole);
}
}
theShellList.Clear();
theShellList.Append( aNewSolids );
}
//=======================================================================
//function : FindFacesInside
//purpose : return compound of faces of other shapes that are
// inside <theShape>.
// <theShape> is an object shape.
// <CheckClosed> makes avoid faces that do not form a
// closed shell
// <All> makes return already added faces
//=======================================================================
TopoDS_Shape NMTAlgo_Splitter::FindFacesInside(const TopoDS_Shape& theShape,
const Standard_Boolean CheckClosed,
const Standard_Boolean All)
{
TopExp_Explorer expl;
//
// ================================================
// check if internal faces have been already found
// ================================================
if (myInternalFaces.IsBound(theShape)) {
TopoDS_Shape aIntFComp = myInternalFaces.Find (theShape);
TopoDS_Shape aIntRemFComp = myIntNotClFaces.Find (theShape);
expl.Init( aIntRemFComp, TopAbs_FACE);
if (CheckClosed || !expl.More()){
return aIntFComp;
}
//
TopoDS_Compound C;
myBuilder.MakeCompound( C );
// add removed faces
for (; expl.More(); expl.Next()){
myBuilder.Add( C, expl.Current() );
}
// add good internal faces
expl.Init( aIntFComp, TopAbs_FACE);
for (; expl.More(); expl.Next()) {
myBuilder.Add( C, expl.Current() );
}
//
return C;
}
// ===================================
// get data for internal faces search
// ===================================
//
TopTools_MapOfShape MSE, MFP;
TopTools_DataMapOfShapeListOfShape DMSEFP;
2005-01-20 06:24:17 +00:00
TopTools_IndexedDataMapOfShapeListOfShape DMEF;
2004-12-01 10:39:14 +00:00
TopTools_MapIteratorOfMapOfShape itm;
TopTools_ListOfShape EmptyL;
TopTools_ListIteratorOfListOfShape itl;
2005-01-20 06:24:17 +00:00
//
// compound of split faces of theShape
const TopoDS_Shape& CSF=myImageShape.Image(theShape).First();
2004-12-01 10:39:14 +00:00
// MSE filling: map of new section edges of CSF
expl.Init(CSF, TopAbs_EDGE);
for (; expl.More(); expl.Next()) {
const TopoDS_Shape& aE = expl.Current() ;
MSE.Add(aE);
}
//
// DMEF: map edge of CSF - faces of CSF
TopExp::MapShapesAndAncestors(CSF, TopAbs_EDGE, TopAbs_FACE, DMEF);
//
// Fill
// 1. MFP - a map of faces to process: map of resulting faces except
// those of theShape; we`ll add to C those of them which are inside CSF
// 2. DMSEFP - edge of MSE => faces of MFP
//
itl.Initialize(myListShapes);
for (;itl.More(); itl.Next()) {
const TopoDS_Shape& aShape = itl.Value();
//
if ( theShape.IsSame(aShape)) {
continue;
}
// fill maps
// iterate on split faces of aShape
const TopoDS_Shape& CSF1 = myImageShape.Image(aShape).First();
TopoDS_Iterator itF (CSF1);
for ( ; itF.More(); itF.Next()) {
const TopoDS_Shape& aF1 = itF.Value();
MFP.Add(aF1);
// iterate on edges of split faces of aShape,
// add to DMSEFP edges that are new
expl.Init(aF1, TopAbs_EDGE);
for (; expl.More(); expl.Next()) {
TopoDS_Shape aE1 = expl.Current();
if ( MSE.Contains(aE1)) {// section edge
if (!DMSEFP.IsBound(aE1)) {
DMSEFP.Bind(aE1, EmptyL);
}
DMSEFP(aE1).Append(aF1);
}
}
}
}//for (;itl.More(); itl.Next())
//
// ===========================
// find faces inside theShape
// ===========================
Standard_Boolean skipAlreadyAdded = Standard_False;
2005-01-20 06:24:17 +00:00
Standard_Boolean GoodOri, inside, sameDom1, sameDom2, isSectionE;
2004-12-01 10:39:14 +00:00
Standard_Real dot;
2005-01-20 06:24:17 +00:00
TopoDS_Face aFace1, anOrigFace, origF1, origF2; //, anOrigFace2;
2004-12-01 10:39:14 +00:00
TopTools_ListOfShape KeepFaces;
TopTools_DataMapIteratorOfDataMapOfShapeListOfShape Mapit;
2005-01-20 06:24:17 +00:00
//
2004-12-01 10:39:14 +00:00
// iterate on section edges, check faces of other shapes
// sharing section edges and put internal faces to KeepFaces
Mapit.Initialize(DMSEFP);
for (; Mapit.More() ; Mapit.Next() ) {
// a new edge of theShape
const TopoDS_Edge& E = TopoDS::Edge (Mapit.Key());
2005-01-20 06:24:17 +00:00
//
isSectionE=IsSectionEdge(E);
//
2004-12-01 10:39:14 +00:00
// split faces of other shapes sharing E
TopTools_ListOfShape& LSF = DMSEFP.ChangeFind(E);
2005-01-20 06:24:17 +00:00
//
2004-12-01 10:39:14 +00:00
itl.Initialize( LSF );
while (itl.More()) {
// a split faces of other shape
2005-01-20 06:24:17 +00:00
aFace1 = TopoDS::Face(itl.Value());
2004-12-01 10:39:14 +00:00
// remove aFace1 form DMSEFP and MFP
LSF.Remove( itl ); // == itl.Next();
if (!MFP.Remove( aFace1 ))
continue; // was not is MFP ( i.e already checked)
2005-01-20 06:24:17 +00:00
//
2004-12-01 10:39:14 +00:00
// check if aFace1 was already added to 2 shells
if (!All &&
myAddedFacesMap.Contains(aFace1) &&
myAddedFacesMap.Contains(aFace1.Reversed())) {
skipAlreadyAdded = Standard_True;
}
//
// find another face which originates from the same face as aFace1:
// usually aFace2 is internal if aFace1 is not and vice versa
2005-01-20 06:24:17 +00:00
anOrigFace = aFace1;
2004-12-01 10:39:14 +00:00
if (myImagesFaces.IsImage(aFace1)){
2005-01-20 06:24:17 +00:00
anOrigFace = TopoDS::Face(myImagesFaces.Root(aFace1));
2004-12-01 10:39:14 +00:00
}
//
2005-01-20 06:24:17 +00:00
//modified by NIZNHY-PKV Fri Dec 24 10:59:45 2004 f
/*
TopoDS_Face aFace2;
//
if (!isSectionE) {
while (itl.More()) { //#2
aFace2 = TopoDS::Face(itl.Value());
2004-12-01 10:39:14 +00:00
//
2005-01-20 06:24:17 +00:00
anOrigFace2 = aFace2;
2004-12-01 10:39:14 +00:00
if (myImagesFaces.IsImage(aFace2)) {
2005-01-20 06:24:17 +00:00
anOrigFace2 = TopoDS::Face(myImagesFaces.Root(aFace2));
2004-12-01 10:39:14 +00:00
}
//
if (!MFP.Contains( aFace2 )) {
LSF.Remove( itl );
continue;
}
2005-01-20 06:24:17 +00:00
//
2004-12-01 10:39:14 +00:00
if (anOrigFace.IsSame(anOrigFace2)) {
break;
}
itl.Next();
2005-01-20 06:24:17 +00:00
}// while (itl.More()) { #2
//
2004-12-01 10:39:14 +00:00
if (itl.More()) { // aFace2 found, remove it from maps
LSF.Remove( itl );
MFP.Remove(aFace2);
}
else{
aFace2.Nullify();
}
itl.Initialize( LSF );
2005-01-20 06:24:17 +00:00
} // if (!isSectionE) {
*/
//modified by NIZNHY-PKV Fri Dec 24 10:59:52 2004 t
//
2004-12-01 10:39:14 +00:00
// check that anOrigFace is not same domain with CSF faces it intersects
//
2005-01-20 06:24:17 +00:00
//faces of CSF sharing E
//
const TopTools_ListOfShape& FL = DMEF.FindFromKey(E);
const TopoDS_Face& aFE1=TopoDS::Face(FL.First());
const TopoDS_Face& aFE2=TopoDS::Face(FL.Last());
//
origF1=aFE1;
if (myImagesFaces.IsImage(aFE1)) {
origF1=TopoDS::Face(myImagesFaces.Root(aFE1));
}
origF2=aFE2;
if (myImagesFaces.IsImage(aFE2)) {
origF2=TopoDS::Face(myImagesFaces.Root(aFE2));
}
//
sameDom1 = anOrigFace.IsSame( origF1 );
sameDom2 = anOrigFace.IsSame( origF2 );
//
if (!(sameDom1 || sameDom2) && HasSameDomainF(anOrigFace)) {
sameDom1 = IsSameDomainF(anOrigFace, origF1);
2004-12-01 10:39:14 +00:00
if (origF1 == origF2) {
sameDom2 = sameDom1;
}
}
2005-01-20 06:24:17 +00:00
//
2004-12-01 10:39:14 +00:00
if (sameDom1 && sameDom2){
continue;
}
2005-01-20 06:24:17 +00:00
//
2004-12-01 10:39:14 +00:00
if (sameDom1 || sameDom2) {
2005-01-20 06:24:17 +00:00
inside = NMTAlgo_Loop3d::IsInside (E, aFE1, aFE2, 1, dot, GoodOri);
if (inside || (dot + Precision::Angular() >= 1.0)) {
2004-12-01 10:39:14 +00:00
continue; // E is convex between origF1 and origF2 or they are tangent
2005-01-20 06:24:17 +00:00
}
2004-12-01 10:39:14 +00:00
}
//
2005-01-20 06:24:17 +00:00
// Keep one of found faces
//
2004-12-01 10:39:14 +00:00
//face of CSF sharing E
2005-01-20 06:24:17 +00:00
const TopoDS_Face& aShapeFace = sameDom1 ? aFE2 : aFE1;
2004-12-01 10:39:14 +00:00
// analyse aFace1 state
2005-01-20 06:24:17 +00:00
inside = NMTAlgo_Loop3d::IsInside (E, aShapeFace, aFace1, 1, dot, GoodOri);
2004-12-01 10:39:14 +00:00
if (inside) { //IFV 27.08.04
// aFace1 must be tested with both adjacent faces of CSF
2005-01-20 06:24:17 +00:00
const TopoDS_Face& aShapeFace2 = sameDom1 ? aFE1 : aFE2;
2004-12-01 10:39:14 +00:00
if (aShapeFace2 != aShapeFace){
2005-01-20 06:24:17 +00:00
inside =
NMTAlgo_Loop3d::IsInside(E, aShapeFace2, aFace1, 1, dot, GoodOri);
2004-12-01 10:39:14 +00:00
}
}
//
// store internal face
2005-01-20 06:24:17 +00:00
if (inside) {
KeepFaces.Append(aFace1);
}
//
//modified by NIZNHY-PKV Fri Dec 24 11:02:55 2004 f
/*
2004-12-01 10:39:14 +00:00
else if (!aFace2.IsNull()) {
if (dot + Precision::Angular() >= 1.0) {
2005-01-20 06:24:17 +00:00
// aFace2 state is not clear, it will be analysed alone, put it back to the maps
MFP.Add(aFace2);
LSF.Append(aFace2);
2004-12-01 10:39:14 +00:00
}
2005-01-20 06:24:17 +00:00
else {
KeepFaces.Append(aFace2);
}
2004-12-01 10:39:14 +00:00
}
2005-01-20 06:24:17 +00:00
*/
//modified by NIZNHY-PKV Fri Dec 24 11:03:03 2004 t
}// while (itl.More()) {
}// for (; Mapit.More() ; Mapit.Next() ) {
//
2004-12-01 10:39:14 +00:00
// ===================================================
// add not distributed faces connected with KeepFaces
// ===================================================
// ultimate list of internal faces
TopTools_ListOfShape KeptFaces;
//
if (MFP.IsEmpty())
KeptFaces.Append (KeepFaces);
//
while (!KeepFaces.IsEmpty()) {
// KeepEdges : map of edges of faces kept last time
TopTools_IndexedMapOfShape KeepEdges;
for ( itl.Initialize(KeepFaces); itl.More(); itl.Next() ) {
TopExp::MapShapes( itl.Value(), TopAbs_EDGE, KeepEdges);
KeptFaces.Append( itl.Value() );
}
//
KeepFaces.Clear();
//
// keep faces connected with already kept faces by KeepEdges
for ( itm.Initialize(MFP); itm.More(); itm.Next() ) {
const TopoDS_Shape& FP = itm.Key();
for (expl.Init(FP,TopAbs_EDGE); expl.More(); expl.Next()) {
const TopoDS_Shape& se = expl.Current();
if (!MSE.Contains(se) && KeepEdges.Contains(se) ) {
KeepFaces.Append(FP);
MFP.Remove(FP);
break;
}
}
}
}
// ===============================================================
// here MFP contains faces outer of theShape and those of shapes
// which do not interfere with theShape at all and between which
// there may be those wrapped by theShape and whose faces may be
// needed to be returned as well
// ===============================================================
Standard_Boolean isSolid = (theShape.ShapeType() == TopAbs_SOLID);
if (All || isSolid) // All is for sub-result removal
{
for ( itm.Initialize( MFP ); itm.More(); itm.Next() ) {
TopoDS_Shape aFace = itm.Key();
// find a shape aFace originates from
TopoDS_Shape anOrigShape = GetOriginalShape( aFace );
// find out if all faces of anOrigShape are not in MFP
// and by the way remove them from MFP
Standard_Boolean isAllOut = Standard_True;
TopoDS_Shape aSplitFaces = anOrigShape;
if (myImageShape.HasImage(anOrigShape))
aSplitFaces = myImageShape.Image(anOrigShape).First();
TopTools_ListOfShape aSplitFaceL;
for (expl.Init( aSplitFaces, TopAbs_FACE ); expl.More(); expl.Next())
{
const TopoDS_Shape & aSpFace = expl.Current();
// a tool face which become object has image but the whole tool shape has not
if (myImageShape.HasImage( aSpFace ))
{
TopExp_Explorer exF (myImageShape.Image( aSpFace ).First(), TopAbs_FACE );
for ( ; exF.More(); exF.Next() )
{
aSplitFaceL.Append( exF.Current() );
if ( ! MFP.Remove( exF.Current() ))
isAllOut = Standard_False;
}
}
else
{
aSplitFaceL.Append( aSpFace );
if ( ! MFP.Remove( aSpFace ))
isAllOut = Standard_False;
}
}
itm.Initialize( MFP );
if ( !isAllOut )
continue;
// classify anOrigShape against theShape
if (IsInside (anOrigShape, theShape)) {
if (isSolid && myClosedShapes.Contains(anOrigShape)) {
// to make a special care at solid reconstruction
myWrappingSolid.Add ( theShape );
}
// keep faces of an internal shape anOrigShape
KeptFaces.Append( aSplitFaceL );
}
}
}
// ====================================================
// check if kept faces form a shell without free edges
// ====================================================
DMEF.Clear(); // edge - kept faces
MFP.Clear(); // reuse it for wrong faces
if (CheckClosed) {
for (itl.Initialize(KeptFaces); itl.More(); itl.Next() )
TopExp::MapShapesAndAncestors(itl.Value(), TopAbs_EDGE, TopAbs_FACE, DMEF);
Standard_Integer i, nb = DMEF.Extent();
Standard_Boolean isClosed = Standard_False;
while (!isClosed) {
isClosed = Standard_True;
for (i=1; isClosed && i<=nb; ++i) {
const TopoDS_Shape& E = DMEF.FindKey( i );
if (! BRep_Tool::Degenerated( TopoDS::Edge( E )) &&
! MSE.Contains( E ))
isClosed = ( DMEF(i).Extent() != 1 );
}
if (!isClosed) {
const TopoDS_Shape& F = DMEF.FindFromIndex( i-1 ).First(); // bad face
MFP.Add( F );
// remove bad face from DMEF
for (expl.Init( F, TopAbs_EDGE); expl.More(); expl.Next()) {
const TopoDS_Shape& E = expl.Current();
TopTools_ListOfShape& FL = DMEF.ChangeFromKey( E );
for (itl.Initialize( FL ); itl.More(); itl.Next() ) {
if ( F.IsSame( itl.Value() )) {
FL.Remove( itl );
break;
}
}
}
}
}
}
// ==============
// make a result
// ==============
TopoDS_Compound C;
// compound of removed internal faces
TopoDS_Compound CNotCl;
myBuilder.MakeCompound(C);
myBuilder.MakeCompound(CNotCl);
// add to compounds
itl.Initialize(KeptFaces);
for (; itl.More(); itl.Next() ) {
TopoDS_Shape & aIntFace = itl.Value();
//
if (!All &&
myAddedFacesMap.Contains(aIntFace) &&
myAddedFacesMap.Contains(aIntFace.Reversed())) {
continue;
}
//
if (! MFP.Contains( aIntFace )){
myBuilder.Add(C, aIntFace);
}
else{
myBuilder.Add(CNotCl, aIntFace);
}
}
//
if (!skipAlreadyAdded && CheckClosed) {
myInternalFaces.Bind(theShape, C);
myIntNotClFaces.Bind(theShape, CNotCl);
}
//
//
if (!myMapSIFC.IsBound(theShape)) {
TopoDS_Compound aCIF;
myBuilder.MakeCompound(aCIF);
//
itl.Initialize(KeptFaces);
for (; itl.More(); itl.Next() ) {
TopoDS_Shape & aIntFace = itl.Value();
if (! MFP.Contains(aIntFace )){
myBuilder.Add(aCIF, aIntFace);
}
}
myMapSIFC.Bind(theShape, aCIF);
}
//
return C;
}
//=======================================================================
//function : IsInside
//purpose : Return True if the first vertex of S1 inside S2.
// If S1.IsNull(), check infinite point against S2.
//=======================================================================
Standard_Boolean NMTAlgo_Splitter::IsInside (const TopoDS_Shape& theS1,
const TopoDS_Shape& theS2)
{
BRepClass3d_SolidClassifier aClassifier( theS2 );
//
TopExp_Explorer expl(theS1, TopAbs_VERTEX);
//
if (!expl.More()){
aClassifier.PerformInfinitePoint( ::RealSmall());
}
else {
const TopoDS_Vertex & aVertex = TopoDS::Vertex( expl.Current() );
aClassifier.Perform (BRep_Tool::Pnt( aVertex ),
BRep_Tool::Tolerance( aVertex ));
}
//
return ( aClassifier.State() == TopAbs_IN );
}
//=======================================================================
//function : GetOriginalShape
//purpose : Return the shape aShape originates from. aShape
// should be a face or more complex result shape
//=======================================================================
TopoDS_Shape NMTAlgo_Splitter::GetOriginalShape(const TopoDS_Shape& theShape) const
{
TopoDS_Shape anOrigShape;
TopExp_Explorer expl( theShape, TopAbs_FACE);
if (expl.More()) {
TopoDS_Shape aFace = expl.Current();
if (myImagesFaces.IsImage( aFace ))
aFace = myImagesFaces.Root( aFace );
anOrigShape = myFaceShapeMap.Find( aFace );
}
return anOrigShape;
}