mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-21 10:13:43 +03:00
In order to improve performance of Boolean Operations on the relatively fast cases the following improvements have been made: 1. Initialization of the FaceInfo information for the faces participating in Face/Face interference, even when the gluing is ON, to take into account intersection of their sub-shapes. 2. Code simplification & duplication removal - the methods BOPAlgo_ShellSplitter::MakeConnexityBlocks and BOPAlgo_WireSplitter::MakeConnexityBlocks have been unified into BOPTools_AlgoTools::MakeConnexityBlocks. 3. Avoid unnecessary bounding box computation for solids during DS initialization. The bounding boxes for solids will be computed during the building stage to find faces located inside solids. For the shape self-interference check (performed by the BOPAlgo_CheckerSI), the bounding box is still computed, as it is necessary to resolve Shape/Solid intersections. 4. Use only three sample points to check coincidence of line and plane. 5. Perform necessity of planes intersection only when the gluing is off. 6. Avoid repeated initialization of 2D classifier while building splits of the faces. 7. Post treat stage: 7.1. Method CorrectWires: Save edge's data (PCurve, parameter of the vertex, range) to avoid its recalculation. 7.2. Method CheckEdge: While checking vertices on edges avoid unnecessary calculation of their location. 8. Provide possibility to disable the classification of the input solids on the inverted status (to be the holes in the space). 9. Avoid building of bounding boxes for faces/solids during splitting of the input arguments for their classification relatively hole faces/shells if there are no holes created. 10. Avoid rebuilding of the faces/solids from arguments which does not acquire any inside parts from other arguments during the operation by using their draft versions as their splits. Test cases for the issue. Correction of the test cases boolean gdml_public A9 and bugs modalg_7 bug28485 as they are improvements. Additional test case for the issue #28485 as it is fixed by the current changes.
99 lines
2.9 KiB
C++
99 lines
2.9 KiB
C++
// Created by: Peter KURNEV
|
|
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
|
|
#include <BOPCol_ListOfShape.hxx>
|
|
#include <BOPTools.hxx>
|
|
#include <TopExp_Explorer.hxx>
|
|
#include <TopoDS_Shape.hxx>
|
|
|
|
//=======================================================================
|
|
//function : MapShapes
|
|
//purpose :
|
|
//=======================================================================
|
|
void BOPTools::MapShapes(const TopoDS_Shape& S,
|
|
BOPCol_MapOfShape& M)
|
|
{
|
|
M.Add(S);
|
|
TopoDS_Iterator It(S);
|
|
while (It.More()) {
|
|
MapShapes(It.Value(),M);
|
|
It.Next();
|
|
}
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : MapShapes
|
|
//purpose :
|
|
//=======================================================================
|
|
void BOPTools::MapShapes(const TopoDS_Shape& S,
|
|
BOPCol_IndexedMapOfShape& M)
|
|
{
|
|
M.Add(S);
|
|
TopoDS_Iterator It(S);
|
|
while (It.More()) {
|
|
MapShapes(It.Value(),M);
|
|
It.Next();
|
|
}
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : MapShapes
|
|
//purpose :
|
|
//=======================================================================
|
|
void BOPTools::MapShapes(const TopoDS_Shape& S,
|
|
const TopAbs_ShapeEnum T,
|
|
BOPCol_IndexedMapOfShape& M)
|
|
{
|
|
TopExp_Explorer Ex(S,T);
|
|
while (Ex.More()) {
|
|
M.Add(Ex.Current());
|
|
Ex.Next();
|
|
}
|
|
}
|
|
//=======================================================================
|
|
//function : MapShapesAndAncestors
|
|
//purpose :
|
|
//=======================================================================
|
|
void BOPTools::MapShapesAndAncestors
|
|
(const TopoDS_Shape& S,
|
|
const TopAbs_ShapeEnum TS,
|
|
const TopAbs_ShapeEnum TA,
|
|
BOPCol_IndexedDataMapOfShapeListOfShape& Map)
|
|
{
|
|
// visit ancestors
|
|
TopExp_Explorer aExA(S, TA);
|
|
for (; aExA.More(); aExA.Next())
|
|
{
|
|
// visit shapes
|
|
const TopoDS_Shape& anAnc = aExA.Current();
|
|
//
|
|
TopExp_Explorer aExS(anAnc, TS);
|
|
for (; aExS.More(); aExS.Next())
|
|
{
|
|
const TopoDS_Shape& aSS = aExS.Current();
|
|
BOPCol_ListOfShape* pLA = Map.ChangeSeek(aSS);
|
|
if (!pLA)
|
|
pLA = &Map(Map.Add(aSS, BOPCol_ListOfShape()));
|
|
pLA->Append(anAnc);
|
|
}
|
|
}
|
|
|
|
// visit shapes not under ancestors
|
|
TopExp_Explorer aExS(S, TS, TA);
|
|
for (; aExS.More(); aExS.Next())
|
|
Map.Add(aExS.Current(), BOPCol_ListOfShape());
|
|
}
|