mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0029363: No history for shapes which were produced as a result of intersection
1. Implementation of the *Generated* method for the algorithms in Boolean Component. In terms of these algorithms the shape from the arguments can have Generated shapes only if these new shapes have been obtained as a result of pure intersection (not overlapping) of this shape with any other shapes from arguments. Thus, the Generated shapes are always: * VERTICES created from the intersection points and may be Generated from edges and faces only; * EDGES created from the intersection edges and may be Generated from faces only. So, only EDGES and FACES could have information about Generated shapes. For all other types of shapes the list of Generated shapes will be empty. 2. Optimization and simplification of the *Modified* and *IsDeleted* methods based on the correct filling of the *BOPAlgo_BuilderShape::myImagesResult* map. 3. Provide history of unification of the solids in the CellsBuilder algorithm. 4. Update of the documentation of Boolean Operations User guide with new chapter "History Information" describing rules for filling history for operations in Boolean Component. 5. Test cases for the issue. New grid "history" has been added into "boolean" category.
This commit is contained in:
parent
0c129fdf43
commit
f76d42b445
@ -2226,6 +2226,159 @@ Performance improvement from using the GlueShift option in this case is about 70
|
||||
Performance improvement in this case is also about 70 percent.
|
||||
|
||||
|
||||
@section occt_algorithms_history History Information
|
||||
|
||||
The chapter describes the rules for filling the History Information (or just History) for the arguments of the operations in Boolean Component.
|
||||
The History is available only for the VERTICES, EDGES, FACES and SOLIDS from the input arguments.
|
||||
|
||||
The History allows tracking the modification of the input shapes during the operation. It consists of the following information:
|
||||
* Information about Deleted shapes;
|
||||
* Information about Modified shapes;
|
||||
* Information about Generated shapes;
|
||||
|
||||
All History information is filled basing on the result of current operation. History cannot return any shapes not contained in the result.
|
||||
Thus if the result of the operation is empty shape, all input shapes will be considered as Deleted and none will have Modified and Generated shapes.
|
||||
|
||||
@subsection occt_algorithms_history_del Deleted shapes
|
||||
|
||||
The shape is considered as Deleted if the result shape do not contain the shape itself and none of its splits.
|
||||
For example, the result of CUT operation of two overlapping planar faces (see the example below) does not contain any parts from the tool face. Thus, the tool faces is considered as Deleted.
|
||||
If the faces are not fully coinciding, the result must contain some parts of the object face. In this case object face will be considered as not deleted.
|
||||
But if the faces are fully coinciding, the result must be empty, and both faces will be considered as Deleted.
|
||||
|
||||
To get the information about Deleted shapes it is necessary to use the method *Standard_Boolean IsDeleted(const TopoDS_Shape& theS)*.
|
||||
|
||||
To get the information about Deleted shapes in DRAW it is necessary to use the command *bisdeleted shape*.
|
||||
|
||||
Example of the overlapping faces:
|
||||
|
||||
~~~~
|
||||
plane p 0 0 0 0 0 1
|
||||
mkface f1 p -10 10 -10 10
|
||||
mkface f2 p 0 20 -10 10
|
||||
|
||||
bclearobjects
|
||||
bcleartools
|
||||
baddobjects f1
|
||||
baddtools f2
|
||||
bfillds
|
||||
bbop r 2
|
||||
|
||||
bisdeleted f1
|
||||
# Not deleted
|
||||
|
||||
bisdeleted f2
|
||||
# Deleted
|
||||
~~~~
|
||||
|
||||
@subsection occt_algorithms_history_modif Modified shapes
|
||||
|
||||
The shape is considered as Modified if the result shape contains any of the splits of the shape, not the shape itself. The shape can be modified only into the shapes with same dimension.
|
||||
The splits of the shape contained in the result shape are Modified from the shape.
|
||||
|
||||
For example, in the FUSE operation of two edges intersecting in one point (see the example below), both edges will be split by the intersection point. All these splits will be contained in the result.
|
||||
Thus, each of the input edges will be Modified into its two splits.
|
||||
But in the CUT operation on the same edges, the tool edge will be Deleted from the result and, thus, will not have any Modified shapes.
|
||||
|
||||
To get the information about Modified shapes it is necessary to use the method *const TopTools_ListOfShape& Modified(const TopoDS_Shape& theS)*.
|
||||
The list of Modified elements will contain only those which are contained in the result of the operation. If the list is empty the shape has not been modified and it is necessary to check if it has been Deleted.
|
||||
|
||||
To get the information about Modified shapes in DRAW it is necessary to use the command *bmodified modif shape*.
|
||||
|
||||
Example of the intersecting edges:
|
||||
|
||||
~~~~
|
||||
line l1 0 0 0 1 0 0
|
||||
mkedge e1 l1 -10 10
|
||||
|
||||
line l2 0 0 0 0 1 0
|
||||
mkedge e2 l2 -10 10
|
||||
|
||||
bclearobjects
|
||||
bcleartools
|
||||
baddobjects e1
|
||||
baddtools e2
|
||||
bfillds
|
||||
|
||||
# fuse operation
|
||||
bbop r 1
|
||||
|
||||
bmodified m1 e1
|
||||
nbshapes m1
|
||||
# EDGES: 2
|
||||
|
||||
bmodified m2 e2
|
||||
nbshapes m2
|
||||
# EDGES: 2
|
||||
|
||||
# cut operation
|
||||
bbop r 2
|
||||
|
||||
bmodified m1 e1
|
||||
nbshapes m1
|
||||
# EDGES: 2
|
||||
|
||||
bmodified m2 e2
|
||||
# The shape has not been modified
|
||||
|
||||
~~~~
|
||||
|
||||
|
||||
@subsection occt_algorithms_history_gen Generated shapes
|
||||
|
||||
In terms of the algorithms in Boolean Component the shape from the arguments can have Generated shapes only if these new shapes have been obtained as a result of pure intersection (not overlapping)
|
||||
of this shape with any other shapes from arguments. Thus, the Generated shapes are always:
|
||||
* VERTICES created from the intersection points and may be Generated from edges and faces only;
|
||||
* EDGES created from the intersection edges and may be Generated from faces only.
|
||||
|
||||
So, only EDGES and FACES could have information about Generated shapes. For all other types of shapes the list of Generated shapes will be empty.
|
||||
|
||||
For example, the two intersecting edges will both have the intersection vertices Generated from them.
|
||||
|
||||
To get the information about Generated shapes it is necessary to use the method *const TopTools_ListOfShape& Generated(const TopoDS_Shape& theS)*.
|
||||
The list of Generated elements will contain only those which are contained in the result of the operation. If the list is empty no new shapes have been Generated from the shape.
|
||||
|
||||
To get the information about Generated shapes in DRAW it is necessary to use the command *bgenerated gen shape*.
|
||||
|
||||
Example of interfering faces
|
||||
|
||||
~~~~
|
||||
plane p1 0 0 0 0 0 1
|
||||
mkface f1 p1 -10 10 -10 10
|
||||
|
||||
plane p2 0 0 0 1 0 0
|
||||
mkface f2 p2 -10 10 -10 10
|
||||
|
||||
bclearobjects
|
||||
bcleartools
|
||||
baddobjects f1
|
||||
baddtools f2
|
||||
bfillds
|
||||
|
||||
# fuse operation
|
||||
bbop r 1
|
||||
|
||||
bgenerated gf1 f1
|
||||
nbshapes gf1
|
||||
# EDGES: 1
|
||||
|
||||
bgenerated gf2 f2
|
||||
nbshapes gf2
|
||||
# EDGES: 1
|
||||
|
||||
|
||||
# common operation - result is empty
|
||||
bbop r 0
|
||||
|
||||
bgenerated gf1 f1
|
||||
# No shapes were generated from the shape
|
||||
|
||||
bgenerated gf2 f2
|
||||
# No shapes were generated from the shape
|
||||
|
||||
~~~~
|
||||
|
||||
|
||||
@section occt_algorithms_11b Usage
|
||||
|
||||
The chapter contains some examples of the OCCT Boolean Component usage. The usage is possible on two levels: C++ and Tcl.
|
||||
|
@ -122,6 +122,7 @@
|
||||
{
|
||||
myHistShapes.Clear();
|
||||
myMapShape.Clear();
|
||||
myImagesResult.Clear();
|
||||
myHasDeleted=Standard_False;
|
||||
myHasGenerated=Standard_False;
|
||||
myHasModified=Standard_False;
|
||||
|
@ -17,12 +17,12 @@
|
||||
|
||||
|
||||
#include <BOPAlgo_Builder.hxx>
|
||||
#include <BOPAlgo_PaveFiller.hxx>
|
||||
#include <BOPCol_ListOfShape.hxx>
|
||||
#include <BOPCol_MapOfShape.hxx>
|
||||
#include <BOPDS_DS.hxx>
|
||||
#include <BOPTools.hxx>
|
||||
#include <BOPTools_AlgoTools.hxx>
|
||||
#include <BOPTools_AlgoTools3D.hxx>
|
||||
#include <IntTools_Context.hxx>
|
||||
#include <TopoDS_Iterator.hxx>
|
||||
#include <TopoDS_Shape.hxx>
|
||||
@ -32,9 +32,112 @@
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
const TopTools_ListOfShape& BOPAlgo_Builder::Generated
|
||||
(const TopoDS_Shape&)
|
||||
(const TopoDS_Shape& theS)
|
||||
{
|
||||
// The rules for Generated shapes are these:
|
||||
// 1. The EDGE may be generated from the FACES as an intersection edge;
|
||||
// 2. The VERTEX may be generated from the EDGES and FACES as an intersection vertex.
|
||||
//
|
||||
// The list of generated elements will contain only those which are contained
|
||||
// in the result of the operation.
|
||||
|
||||
myHistShapes.Clear();
|
||||
|
||||
if (!myHasGenerated)
|
||||
return myHistShapes;
|
||||
|
||||
if (theS.IsNull())
|
||||
return myHistShapes;
|
||||
|
||||
// Only EDGES and FACES should be considered
|
||||
TopAbs_ShapeEnum aType = theS.ShapeType();
|
||||
if (aType != TopAbs_EDGE && aType != TopAbs_FACE)
|
||||
// Wrong type
|
||||
return myHistShapes;
|
||||
|
||||
// Check that DS contains the shape, i.e. it is from the arguments of the operation
|
||||
Standard_Integer nS = myDS->Index(theS);
|
||||
if (nS < 0)
|
||||
// Unknown shape
|
||||
return myHistShapes;
|
||||
|
||||
// Check that the shape has participated in any intersections
|
||||
const BOPDS_ShapeInfo& aSI = myDS->ShapeInfo(nS);
|
||||
if (!aSI.HasReference())
|
||||
// Untouched shape
|
||||
return myHistShapes;
|
||||
|
||||
// Analyze all types of Interferences which can produce
|
||||
// new vertices - Edge/Edge and Edge/Face
|
||||
BOPDS_VectorOfInterfEE& aEEs = myDS->InterfEE();
|
||||
BOPDS_VectorOfInterfEF& aEFs = myDS->InterfEF();
|
||||
|
||||
// Fence map to avoid duplicates in the list of Generated;
|
||||
BOPCol_MapOfInteger aMFence;
|
||||
|
||||
// Analyze each interference and find those in which the given shape has participated
|
||||
|
||||
// No need to analyze Edge/Edge interferences for the shapes of type FACE
|
||||
Standard_Boolean isFace = (aType == TopAbs_FACE);
|
||||
|
||||
for (Standard_Integer k = (isFace ? 1 : 0); k < 2; ++k)
|
||||
{
|
||||
Standard_Integer aNbLines = !k ? aEEs.Length() : aEFs.Length();
|
||||
for (Standard_Integer i = 0; i < aNbLines; ++i)
|
||||
{
|
||||
BOPDS_Interf *aInt = !k ? (BOPDS_Interf*)(&aEEs(i)) : (BOPDS_Interf*)(&aEFs(i));
|
||||
if (!aInt->HasIndexNew())
|
||||
// No new vertices created
|
||||
continue;
|
||||
|
||||
if (!aInt->Contains(nS))
|
||||
continue;
|
||||
|
||||
Standard_Integer nVNew = aInt->IndexNew();
|
||||
myDS->HasShapeSD(nVNew, nVNew);
|
||||
if (!aMFence.Add(nVNew))
|
||||
continue;
|
||||
|
||||
// Get the new vertex
|
||||
const TopoDS_Shape& aVNew = myDS->Shape(nVNew);
|
||||
|
||||
// Check that the result shape contains vertex
|
||||
if (myMapShape.Contains(aVNew))
|
||||
// Save the vertex as generated
|
||||
myHistShapes.Append(aVNew);
|
||||
}
|
||||
}
|
||||
|
||||
if (!isFace)
|
||||
return myHistShapes;
|
||||
|
||||
// For the FACE it is also necessary to collect all
|
||||
// section elements created in FACE/FACE interferences.
|
||||
// This information is available in the FaceInfo structure.
|
||||
const BOPDS_FaceInfo& aFI = myDS->FaceInfo(nS);
|
||||
|
||||
// Section edges of the face
|
||||
const BOPDS_IndexedMapOfPaveBlock& aMPBSc = aFI.PaveBlocksSc();
|
||||
// Save section edges contained in the result shape
|
||||
Standard_Integer aNb = aMPBSc.Extent();
|
||||
for (Standard_Integer i = 1; i <= aNb; ++i)
|
||||
{
|
||||
const TopoDS_Shape& aENew = myDS->Shape(aMPBSc(i)->Edge());
|
||||
if (myMapShape.Contains(aENew))
|
||||
myHistShapes.Append(aENew);
|
||||
}
|
||||
|
||||
// Section vertices of the face
|
||||
const BOPCol_MapOfInteger& aMVSc = aFI.VerticesSc();
|
||||
// Save section vertices contained in the result shape
|
||||
BOPCol_MapOfInteger::Iterator aItM(aMVSc);
|
||||
for (; aItM.More(); aItM.Next())
|
||||
{
|
||||
const TopoDS_Shape& aVNew = myDS->Shape(aItM.Value());
|
||||
if (myMapShape.Contains(aVNew))
|
||||
myHistShapes.Append(aVNew);
|
||||
}
|
||||
|
||||
return myHistShapes;
|
||||
}
|
||||
//=======================================================================
|
||||
@ -44,99 +147,51 @@ const TopTools_ListOfShape& BOPAlgo_Builder::Generated
|
||||
const TopTools_ListOfShape& BOPAlgo_Builder::Modified
|
||||
(const TopoDS_Shape& theS)
|
||||
{
|
||||
Standard_Boolean bHasImage, bToReverse;
|
||||
TopAbs_ShapeEnum aType;
|
||||
BOPCol_ListIteratorOfListOfShape aIt;
|
||||
//
|
||||
myHistShapes.Clear();
|
||||
//
|
||||
if (theS.IsNull()) {
|
||||
|
||||
if (!myHasModified)
|
||||
// No modified elements
|
||||
return myHistShapes;
|
||||
}
|
||||
//
|
||||
bHasImage=myImages.IsBound(theS);
|
||||
if (!bHasImage) {
|
||||
|
||||
const BOPCol_ListOfShape* pLSp = myImagesResult.Seek(theS);
|
||||
if (!pLSp)
|
||||
// No track in the result -> no modified
|
||||
return myHistShapes;
|
||||
|
||||
// For modification check if the shape is not linked to itself
|
||||
if (pLSp->Extent() == 1)
|
||||
{
|
||||
if (theS.IsSame(pLSp->First()) && !myImages.IsBound(theS))
|
||||
// Shape is not modified
|
||||
return myHistShapes;
|
||||
}
|
||||
//
|
||||
aType=theS.ShapeType();
|
||||
//
|
||||
if (!(aType==TopAbs_EDGE || aType==TopAbs_FACE ||
|
||||
aType==TopAbs_VERTEX || aType==TopAbs_SOLID)) {
|
||||
return myHistShapes;
|
||||
}
|
||||
//
|
||||
//PrepareHistory();
|
||||
//
|
||||
const BOPCol_ListOfShape& aLSp=myImages.Find(theS);
|
||||
aIt.Initialize(aLSp);
|
||||
for (; aIt.More(); aIt.Next()) {
|
||||
TopoDS_Shape aSp=aIt.Value();
|
||||
if (myShapesSD.IsBound(aSp)) {
|
||||
aSp = myShapesSD.Find(aSp);
|
||||
}
|
||||
//
|
||||
if (myMapShape.Contains(aSp)) {
|
||||
//
|
||||
if (aType==TopAbs_VERTEX || aType==TopAbs_SOLID) {
|
||||
aSp.Orientation(theS.Orientation());
|
||||
}
|
||||
else {
|
||||
bToReverse=
|
||||
BOPTools_AlgoTools::IsSplitToReverse(aSp, theS, myContext);
|
||||
if (bToReverse) {
|
||||
aSp.Reverse();
|
||||
}
|
||||
}
|
||||
//
|
||||
myHistShapes.Append(aSp);
|
||||
}
|
||||
|
||||
// Iterate on all splits and save them with proper orientation into the result list
|
||||
BOPCol_ListIteratorOfListOfShape aIt(*pLSp);
|
||||
for (; aIt.More(); aIt.Next())
|
||||
{
|
||||
TopoDS_Shape aSp = aIt.Value();
|
||||
// Use the orientation of the input shape
|
||||
TopAbs_ShapeEnum aType = aSp.ShapeType();
|
||||
if (aType == TopAbs_VERTEX || aType == TopAbs_SOLID)
|
||||
aSp.Orientation(theS.Orientation());
|
||||
else if (BOPTools_AlgoTools::IsSplitToReverse(aSp, theS, myContext))
|
||||
aSp.Reverse();
|
||||
|
||||
myHistShapes.Append(aSp);
|
||||
}
|
||||
//
|
||||
|
||||
return myHistShapes;
|
||||
}
|
||||
//=======================================================================
|
||||
//function : IsDeleted
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
Standard_Boolean BOPAlgo_Builder::IsDeleted
|
||||
(const TopoDS_Shape& theS)
|
||||
Standard_Boolean BOPAlgo_Builder::IsDeleted(const TopoDS_Shape& theS)
|
||||
{
|
||||
Standard_Boolean bRet;
|
||||
TopAbs_ShapeEnum aType;
|
||||
BOPCol_ListIteratorOfListOfShape aIt;
|
||||
//
|
||||
bRet = Standard_True;
|
||||
//
|
||||
if (theS.IsNull()) {
|
||||
return bRet;
|
||||
}
|
||||
//
|
||||
aType = theS.ShapeType();
|
||||
if (!(aType==TopAbs_EDGE || aType==TopAbs_FACE ||
|
||||
aType==TopAbs_VERTEX || aType==TopAbs_SOLID)) {
|
||||
return bRet;
|
||||
}
|
||||
//
|
||||
if (!myImages.IsBound(theS)) {
|
||||
bRet = !myMapShape.Contains(theS);
|
||||
return bRet;
|
||||
}
|
||||
//
|
||||
const BOPCol_ListOfShape& aLSp = myImages.Find(theS);
|
||||
aIt.Initialize(aLSp);
|
||||
for (; aIt.More(); aIt.Next()) {
|
||||
const TopoDS_Shape& aSp = aIt.Value();
|
||||
const TopoDS_Shape& aSpR = myShapesSD.IsBound(aSp) ?
|
||||
myShapesSD.Find(aSp) : aSp;
|
||||
//
|
||||
if (myMapShape.Contains(aSpR)) {
|
||||
bRet = Standard_False;
|
||||
break;
|
||||
}
|
||||
}
|
||||
//
|
||||
return bRet;
|
||||
// The shape is considered as Deleted if the result shape
|
||||
// does not contain the shape itself and none of its splits
|
||||
return myHasDeleted && !myImagesResult.Contains(theS);
|
||||
}
|
||||
//=======================================================================
|
||||
//function : PrepareHistory
|
||||
@ -144,85 +199,103 @@ Standard_Boolean BOPAlgo_Builder::IsDeleted
|
||||
//=======================================================================
|
||||
void BOPAlgo_Builder::PrepareHistory()
|
||||
{
|
||||
if (!myFlagHistory) {
|
||||
if (!myFlagHistory)
|
||||
{
|
||||
// Clearing
|
||||
BOPAlgo_BuilderShape::PrepareHistory();
|
||||
return;
|
||||
}
|
||||
//
|
||||
if(myShape.IsNull()) {
|
||||
return;
|
||||
}
|
||||
//
|
||||
Standard_Boolean bHasImage;
|
||||
TopAbs_ShapeEnum aType;
|
||||
BOPCol_MapOfShape aMS;
|
||||
BOPCol_ListIteratorOfListOfShape aIt;
|
||||
BOPCol_MapIteratorOfMapOfShape aItM;
|
||||
//
|
||||
// 1. Clearing
|
||||
|
||||
// Clearing from previous operations
|
||||
BOPAlgo_BuilderShape::PrepareHistory();
|
||||
//
|
||||
// 2. myMapShape - all shapes of result with theirs sub-shapes
|
||||
BOPTools::MapShapes(myShape, myMapShape);
|
||||
//
|
||||
// 3. MS - all argument shapes with theirs sub-shapes
|
||||
const BOPCol_ListOfShape& aArguments=myDS->Arguments();
|
||||
aIt.Initialize(aArguments);
|
||||
for (; aIt.More(); aIt.Next()) {
|
||||
const TopoDS_Shape& aSx=aIt.Value();
|
||||
BOPTools::MapShapes(aSx, aMS);
|
||||
myFlagHistory = Standard_True;
|
||||
|
||||
if (myShape.IsNull() ||
|
||||
BOPTools_AlgoTools3D::IsEmptyShape(myShape))
|
||||
{
|
||||
// The result shape is a null shape or empty shape,
|
||||
// thus, no modified, no generated, all deleted
|
||||
myHasModified = Standard_False;
|
||||
myHasGenerated = Standard_False;
|
||||
myHasDeleted = Standard_True;
|
||||
return;
|
||||
}
|
||||
//
|
||||
// 4. Treatment
|
||||
aItM.Initialize(aMS);
|
||||
for (; aItM.More(); aItM.Next()) {
|
||||
const TopoDS_Shape& aSx=aItM.Key();
|
||||
aType = aSx.ShapeType();
|
||||
if (!(aType == TopAbs_VERTEX || aType == TopAbs_EDGE ||
|
||||
aType == TopAbs_FACE || aType == TopAbs_SOLID)) {
|
||||
|
||||
// Map the result shape
|
||||
BOPTools::MapShapes(myShape, myMapShape);
|
||||
|
||||
// Among all input shapes find those that have any trace in the result
|
||||
// and save them into myImagesResult map with connection to parts
|
||||
// kept in the result shape.
|
||||
// Also, set the proper values to the history flags:
|
||||
// - myHasDeleted for Deleted shapes;
|
||||
// - myHasModified for Modified shapes;
|
||||
// - myHasGenerated for Generated shapes.
|
||||
Standard_Integer aNbS = myDS->NbSourceShapes();
|
||||
for (Standard_Integer i = 0; i < aNbS; ++i)
|
||||
{
|
||||
const TopoDS_Shape& aS = myDS->Shape(i);
|
||||
|
||||
// History information is only available for the shapes of type
|
||||
// VERTEX, EDGE, FACE and SOLID. Skip all shapes of different type.
|
||||
TopAbs_ShapeEnum aType = aS.ShapeType();
|
||||
if (!(aType == TopAbs_VERTEX ||
|
||||
aType == TopAbs_EDGE ||
|
||||
aType == TopAbs_FACE ||
|
||||
aType == TopAbs_SOLID))
|
||||
continue;
|
||||
|
||||
// Check if the shape has any splits
|
||||
const BOPCol_ListOfShape* pLSp = myImages.Seek(aS);
|
||||
if (!pLSp)
|
||||
{
|
||||
// No splits, check if the result shape contains the shape itself
|
||||
if (myMapShape.Contains(aS))
|
||||
// Shape has passed into result without modifications -> link the shape to itself
|
||||
myImagesResult(myImagesResult.Add(aS, BOPCol_ListOfShape())).Append(aS);
|
||||
else
|
||||
// No trace of the shape in the result -> Deleted element is found
|
||||
myHasDeleted = Standard_True;
|
||||
}
|
||||
//
|
||||
// 4.1 .myImagesResult
|
||||
bHasImage=myImages.IsBound(aSx);
|
||||
//
|
||||
BOPCol_ListOfShape aLSx;
|
||||
if (!bHasImage) {
|
||||
if (myMapShape.Contains(aSx)) {
|
||||
aLSx.Append(aSx);
|
||||
myImagesResult.Add(aSx, aLSx);
|
||||
}
|
||||
}
|
||||
else {
|
||||
const BOPCol_ListOfShape& aLSp=myImages.Find(aSx);
|
||||
aIt.Initialize(aLSp);
|
||||
for (; aIt.More(); aIt.Next()) {
|
||||
const TopoDS_Shape& aSp=aIt.Value();
|
||||
if (myMapShape.Contains(aSp)) {
|
||||
aLSx.Append(aSp);
|
||||
else
|
||||
{
|
||||
// Find all splits of the shape which are kept in the result
|
||||
BOPCol_ListOfShape *pLSpKept = NULL;
|
||||
BOPCol_ListIteratorOfListOfShape aIt(*pLSp);
|
||||
for (; aIt.More(); aIt.Next())
|
||||
{
|
||||
TopoDS_Shape aSp = aIt.Value();
|
||||
|
||||
// Check SD shapes
|
||||
const TopoDS_Shape* pSpSD = myShapesSD.Seek(aSp);
|
||||
if (pSpSD)
|
||||
aSp = *pSpSD;
|
||||
|
||||
// Check if the result shape contains the split
|
||||
if (myMapShape.Contains(aSp))
|
||||
{
|
||||
if (!pLSpKept)
|
||||
pLSpKept = &myImagesResult(myImagesResult.Add(aS, BOPCol_ListOfShape()));
|
||||
|
||||
// Link the shape to the split
|
||||
pLSpKept->Append(aSp);
|
||||
}
|
||||
}
|
||||
myImagesResult.Add(aSx, aLSx);
|
||||
}
|
||||
// <- A
|
||||
//
|
||||
// 4.2 As it was
|
||||
if (!myHasDeleted) {
|
||||
myHasDeleted=IsDeleted(aSx);
|
||||
}
|
||||
//
|
||||
if (!myHasModified && bHasImage) {
|
||||
if (aType==TopAbs_EDGE || aType==TopAbs_FACE ||
|
||||
aType==TopAbs_VERTEX || aType==TopAbs_SOLID) {
|
||||
|
||||
if (pLSpKept)
|
||||
// Modified element is found
|
||||
myHasModified = Standard_True;
|
||||
}
|
||||
else
|
||||
// Deleted element is found
|
||||
myHasDeleted = Standard_True;
|
||||
}
|
||||
//
|
||||
if (!myHasGenerated) {
|
||||
if (aType==TopAbs_FACE) {
|
||||
const TopTools_ListOfShape& aLG = Generated(aSx);
|
||||
myHasGenerated = aLG.Extent() > 0;
|
||||
}
|
||||
|
||||
// Try to find generated shapes
|
||||
if (!myHasGenerated)
|
||||
{
|
||||
// Temporarily set the HasGenerated flag to look for the shapes generated from aS
|
||||
myHasGenerated = Standard_True;
|
||||
myHasGenerated = (Generated(aS).Extent() > 0);
|
||||
}
|
||||
}
|
||||
myFlagHistory=Standard_True;
|
||||
}
|
||||
|
@ -21,8 +21,11 @@
|
||||
|
||||
#include <TopExp_Explorer.hxx>
|
||||
|
||||
#include <BOPDS_DS.hxx>
|
||||
|
||||
#include <BOPTools.hxx>
|
||||
#include <BOPTools_AlgoTools.hxx>
|
||||
#include <BOPTools_AlgoTools3D.hxx>
|
||||
|
||||
#include <BOPAlgo_BuilderSolid.hxx>
|
||||
|
||||
@ -48,7 +51,7 @@ BOPAlgo_CellsBuilder::BOPAlgo_CellsBuilder()
|
||||
myIndex(100, myAllocator),
|
||||
myMaterials(100, myAllocator),
|
||||
myShapeMaterial(100, myAllocator),
|
||||
myMapGenerated(100, myAllocator)
|
||||
myMapModified(100, myAllocator)
|
||||
{
|
||||
}
|
||||
|
||||
@ -64,7 +67,7 @@ BOPAlgo_CellsBuilder::BOPAlgo_CellsBuilder
|
||||
myIndex(100, myAllocator),
|
||||
myMaterials(100, myAllocator),
|
||||
myShapeMaterial(100, myAllocator),
|
||||
myMapGenerated(100, myAllocator)
|
||||
myMapModified(100, myAllocator)
|
||||
{
|
||||
}
|
||||
|
||||
@ -88,7 +91,7 @@ void BOPAlgo_CellsBuilder::Clear()
|
||||
myIndex.Clear();
|
||||
myMaterials.Clear();
|
||||
myShapeMaterial.Clear();
|
||||
myMapGenerated.Clear();
|
||||
myMapModified.Clear();
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
@ -313,7 +316,7 @@ void BOPAlgo_CellsBuilder::AddAllToResult(const Standard_Integer theMaterial,
|
||||
aBB.MakeCompound(aResult);
|
||||
myShapeMaterial.Clear();
|
||||
myMaterials.Clear();
|
||||
myMapGenerated.Clear();
|
||||
myMapModified.Clear();
|
||||
//
|
||||
TopoDS_Iterator aIt(myAllParts);
|
||||
for (; aIt.More(); aIt.Next()) {
|
||||
@ -453,7 +456,7 @@ void BOPAlgo_CellsBuilder::RemoveAllFromResult()
|
||||
//
|
||||
myMaterials.Clear();
|
||||
myShapeMaterial.Clear();
|
||||
myMapGenerated.Clear();
|
||||
myMapModified.Clear();
|
||||
//
|
||||
PrepareHistory();
|
||||
}
|
||||
@ -669,195 +672,234 @@ Standard_Integer BOPAlgo_CellsBuilder::RemoveInternals(const BOPCol_ListOfShape&
|
||||
const TopoDS_Shape& aSS = aMG(i);
|
||||
const TopoDS_Shape& aSGen = anUnify.Generated(aSS);
|
||||
if (!aSGen.IsNull() && !aSS.IsSame(aSGen)) {
|
||||
myMapGenerated.Bind(aSS, aSGen);
|
||||
myMapModified.Bind(aSS, aSGen);
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (aType == TopAbs_SOLID) {
|
||||
// build all solids from the faces
|
||||
BOPCol_ListOfShape aLSF;
|
||||
BRep_Builder aBB;
|
||||
TopoDS_Compound aSolids;
|
||||
aBB.MakeCompound(aSolids);
|
||||
//
|
||||
for (BOPCol_ListIteratorOfListOfShape aIt(theLS); aIt.More(); aIt.Next()) {
|
||||
const TopoDS_Shape& aS = aIt.Value();
|
||||
BOPCol_ListIteratorOfListOfShape aItLS(theLS);
|
||||
for (; aItLS.More(); aItLS.Next()) {
|
||||
const TopoDS_Shape& aSol = aItLS.Value();
|
||||
aBB.Add(aSolids, aSol);
|
||||
}
|
||||
//
|
||||
// Make connexity blocks of solids to create from each isolated block one solid.
|
||||
// It will allow attaching internal entities of the solids to new solid.
|
||||
BOPCol_ListOfShape aLCB;
|
||||
BOPTools_AlgoTools::MakeConnexityBlocks(aSolids, TopAbs_FACE, TopAbs_SOLID, aLCB);
|
||||
//
|
||||
// for each block remove internal faces
|
||||
BOPCol_ListIteratorOfListOfShape aItLCB(aLCB);
|
||||
for (; aItLCB.More(); aItLCB.Next()) {
|
||||
const TopoDS_Shape& aCB = aItLCB.Value();
|
||||
//
|
||||
aExp.Init(aS, TopAbs_FACE);
|
||||
for (; aExp.More(); aExp.Next()) {
|
||||
const TopoDS_Shape& aF = aExp.Current();
|
||||
aLSF.Append(aF);
|
||||
}
|
||||
}
|
||||
//
|
||||
BOPAlgo_BuilderSolid aBS;
|
||||
aBS.SetShapes(aLSF);
|
||||
aBS.Perform();
|
||||
//
|
||||
iErr = aBS.ErrorStatus();
|
||||
if (iErr) {
|
||||
return iErr;
|
||||
}
|
||||
//
|
||||
theLSNew = aBS.Areas();
|
||||
if (theLSNew.Extent() == 1) {
|
||||
return iErr;
|
||||
}
|
||||
//
|
||||
// result is a list of solids. we need to select external faces.
|
||||
BOPCol_IndexedDataMapOfShapeListOfShape aDMFS;
|
||||
BOPCol_ListOfShape aLFNew;
|
||||
Standard_Integer i, aNb;
|
||||
//
|
||||
// map faces and solids
|
||||
for (BOPCol_ListIteratorOfListOfShape aIt(theLSNew); aIt.More(); aIt.Next()) {
|
||||
const TopoDS_Shape& aS = aIt.Value();
|
||||
// Map faces and solids to find boundary faces that can be removed
|
||||
BOPCol_IndexedDataMapOfShapeListOfShape aDMFS;
|
||||
// internal entities
|
||||
BOPCol_ListOfShape aLSInt;
|
||||
//
|
||||
aExp.Init(aS, TopAbs_FACE);
|
||||
for (; aExp.More(); aExp.Next()) {
|
||||
const TopoDS_Shape& aF = aExp.Current();
|
||||
if (aDMFS.Contains(aF)) {
|
||||
BOPCol_ListOfShape& aLFS = aDMFS.ChangeFromKey(aF);
|
||||
aLFS.Append(aS);
|
||||
}
|
||||
else {
|
||||
BOPCol_ListOfShape aLFS;
|
||||
aLFS.Append(aS);
|
||||
aDMFS.Add(aF, aLFS);
|
||||
TopoDS_Iterator aItS(aCB);
|
||||
for (; aItS.More(); aItS.Next()) {
|
||||
const TopoDS_Shape& aSol = aItS.Value();
|
||||
//
|
||||
TopoDS_Iterator aItIS(aSol);
|
||||
for (; aItIS.More(); aItIS.Next()) {
|
||||
const TopoDS_Shape& aSI = aItIS.Value();
|
||||
if (aSI.Orientation() == TopAbs_INTERNAL) {
|
||||
aLSInt.Append(aSI);
|
||||
}
|
||||
else {
|
||||
TopoDS_Iterator aItF(aSI);
|
||||
for (; aItF.More(); aItF.Next()) {
|
||||
const TopoDS_Shape& aF = aItF.Value();
|
||||
BOPCol_ListOfShape *pLSols = aDMFS.ChangeSeek(aF);
|
||||
if (!pLSols) {
|
||||
pLSols = &aDMFS(aDMFS.Add(aF, BOPCol_ListOfShape()));
|
||||
}
|
||||
pLSols->Append(aSol);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
//
|
||||
// select faces attached to only one solid
|
||||
aNb = aDMFS.Extent();
|
||||
for (i = 1; i <= aNb; ++i) {
|
||||
const BOPCol_ListOfShape& aLS = aDMFS(i);
|
||||
if (aLS.Extent() == 1) {
|
||||
const TopoDS_Shape& aF = aDMFS.FindKey(i);
|
||||
aLFNew.Append(aF);
|
||||
//
|
||||
// to build unified solid, select only faces attached to only one solid
|
||||
BOPCol_ListOfShape aLFUnique;
|
||||
Standard_Integer i, aNb = aDMFS.Extent();
|
||||
for (i = 1; i <= aNb; ++i) {
|
||||
if (aDMFS(i).Extent() == 1) {
|
||||
aLFUnique.Append(aDMFS.FindKey(i));
|
||||
}
|
||||
}
|
||||
//
|
||||
if (aNb == aLFUnique.Extent()) {
|
||||
// no faces to remove
|
||||
aItS.Initialize(aCB);
|
||||
for (; aItS.More(); aItS.Next()) {
|
||||
theLSNew.Append(aItS.Value());
|
||||
}
|
||||
continue;
|
||||
}
|
||||
//
|
||||
// build new solid
|
||||
BOPAlgo_BuilderSolid aBS;
|
||||
aBS.SetShapes(aLFUnique);
|
||||
aBS.Perform();
|
||||
//
|
||||
iErr = aBS.ErrorStatus();
|
||||
if (!iErr && aBS.Areas().Extent() != 1)
|
||||
iErr = 1;
|
||||
if (iErr)
|
||||
return iErr;
|
||||
|
||||
TopoDS_Solid& aSNew = *(TopoDS_Solid*)&aBS.Areas().First();
|
||||
//
|
||||
// put all internal parts into new solid
|
||||
aSNew.Free(Standard_True);
|
||||
BOPCol_ListIteratorOfListOfShape aItLSI(aLSInt);
|
||||
for (; aItLSI.More(); aItLSI.Next()) {
|
||||
aBB.Add(aSNew, aItLSI.Value());
|
||||
}
|
||||
aSNew.Free(Standard_False);
|
||||
//
|
||||
theLSNew.Append(aSNew);
|
||||
|
||||
// Save information about the fuse of the solids into a history map
|
||||
aItS.Initialize(aCB);
|
||||
for (; aItS.More(); aItS.Next())
|
||||
myMapModified.Bind(aItS.Value(), aSNew);
|
||||
}
|
||||
//
|
||||
if (aNb == aLFNew.Extent()) {
|
||||
return iErr;
|
||||
}
|
||||
//
|
||||
// build new solid
|
||||
BOPAlgo_BuilderSolid aBS1;
|
||||
aBS1.SetShapes(aLFNew);
|
||||
aBS1.Perform();
|
||||
//
|
||||
iErr = aBS1.ErrorStatus();
|
||||
if (iErr) {
|
||||
return iErr;
|
||||
}
|
||||
//
|
||||
theLSNew = aBS1.Areas();
|
||||
}
|
||||
//
|
||||
return iErr;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : IsDeleted
|
||||
//function : PrepareHistory
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
Standard_Boolean BOPAlgo_CellsBuilder::IsDeleted(const TopoDS_Shape& theS)
|
||||
void BOPAlgo_CellsBuilder::PrepareHistory()
|
||||
{
|
||||
Standard_Boolean bRet = Standard_True;
|
||||
if (theS.IsNull()) {
|
||||
return bRet;
|
||||
if (!myFlagHistory)
|
||||
{
|
||||
// Clearing
|
||||
BOPAlgo_BuilderShape::PrepareHistory();
|
||||
return;
|
||||
}
|
||||
//
|
||||
TopAbs_ShapeEnum aType = theS.ShapeType();
|
||||
if (!(aType==TopAbs_EDGE || aType==TopAbs_FACE ||
|
||||
aType==TopAbs_VERTEX || aType==TopAbs_SOLID)) {
|
||||
return bRet;
|
||||
|
||||
// Clearing from previous operations
|
||||
BOPAlgo_BuilderShape::PrepareHistory();
|
||||
myFlagHistory = Standard_True;
|
||||
|
||||
if (myShape.IsNull() ||
|
||||
BOPTools_AlgoTools3D::IsEmptyShape(myShape))
|
||||
{
|
||||
// The result shape is a null shape or empty shape,
|
||||
// thus, no modified, no generated, all deleted
|
||||
myHasModified = Standard_False;
|
||||
myHasGenerated = Standard_False;
|
||||
myHasDeleted = Standard_True;
|
||||
return;
|
||||
}
|
||||
//
|
||||
Standard_Boolean bHasImage, bHasGenerated;
|
||||
//
|
||||
bHasImage = myImages.IsBound(theS);
|
||||
bHasGenerated = myMapGenerated.IsBound(theS);
|
||||
if (!bHasImage && !bHasGenerated) {
|
||||
bRet = !myMapShape.Contains(theS);
|
||||
return bRet;
|
||||
}
|
||||
//
|
||||
if (bHasGenerated) {
|
||||
const TopoDS_Shape& aSG = myMapGenerated.Find(theS);
|
||||
if (myMapShape.Contains(aSG)) {
|
||||
bRet = Standard_False;
|
||||
return bRet;
|
||||
}
|
||||
}
|
||||
//
|
||||
if (bHasImage) {
|
||||
const BOPCol_ListOfShape& aLSp = myImages.Find(theS);
|
||||
BOPCol_ListIteratorOfListOfShape aIt(aLSp);
|
||||
for (; aIt.More(); aIt.Next()) {
|
||||
const TopoDS_Shape& aSp = aIt.Value();
|
||||
const TopoDS_Shape& aSpR = myShapesSD.IsBound(aSp) ?
|
||||
myShapesSD.Find(aSp) : aSp;
|
||||
//
|
||||
const TopoDS_Shape& aSpRG = myMapGenerated.IsBound(aSpR) ?
|
||||
myMapGenerated.Find(aSpR) : aSpR;
|
||||
if (myMapShape.Contains(aSpRG)) {
|
||||
bRet = Standard_False;
|
||||
break;
|
||||
|
||||
// Map the result shape
|
||||
BOPTools::MapShapes(myShape, myMapShape);
|
||||
|
||||
// Among all input shapes find those that have any trace in the result
|
||||
// and save them into myImagesResult map with connection to parts
|
||||
// kept in the result shape.
|
||||
// Also, set the proper values to the history flags:
|
||||
// - myHasDeleted for Deleted shapes;
|
||||
// - myHasModified for Modified shapes;
|
||||
// - myHasGenerated for Generated shapes.
|
||||
Standard_Integer aNbS = myDS->NbSourceShapes();
|
||||
for (Standard_Integer i = 0; i < aNbS; ++i)
|
||||
{
|
||||
const TopoDS_Shape& aS = myDS->Shape(i);
|
||||
|
||||
// History information is only available for the shapes of type
|
||||
// VERTEX, EDGE, FACE and SOLID. Skip all shapes of different type.
|
||||
TopAbs_ShapeEnum aType = aS.ShapeType();
|
||||
if (!(aType == TopAbs_VERTEX ||
|
||||
aType == TopAbs_EDGE ||
|
||||
aType == TopAbs_FACE ||
|
||||
aType == TopAbs_SOLID))
|
||||
continue;
|
||||
|
||||
// Check if the shape has any splits
|
||||
const BOPCol_ListOfShape* pLSp = myImages.Seek(aS);
|
||||
if (!pLSp)
|
||||
{
|
||||
// No splits from GF builder.
|
||||
// Check if the shape has been locally modified,
|
||||
// i.e. has participated in the Removal of internal boundaries
|
||||
// and have been unified with other shapes
|
||||
const TopoDS_Shape* pSU = myMapModified.Seek(aS);
|
||||
// Check if the result contains the shape or its unified image
|
||||
const TopoDS_Shape* pSR = !pSU ? &aS : pSU;
|
||||
if (myMapShape.Contains(*pSR))
|
||||
{
|
||||
// Link the shape to itself or to its unified image
|
||||
myImagesResult(myImagesResult.Add(aS, BOPCol_ListOfShape())).Append(*pSR);
|
||||
if (pSU)
|
||||
// Modified element is found
|
||||
myHasModified = Standard_True;
|
||||
}
|
||||
else
|
||||
{
|
||||
// No trace of the shape in the result -> Deleted element is found
|
||||
myHasDeleted = Standard_True;
|
||||
}
|
||||
}
|
||||
}
|
||||
//
|
||||
return bRet;
|
||||
}
|
||||
else
|
||||
{
|
||||
// Find all splits of the shape which are kept in the result
|
||||
BOPCol_ListOfShape *pLSpKept = NULL;
|
||||
BOPCol_ListIteratorOfListOfShape aIt(*pLSp);
|
||||
for (; aIt.More(); aIt.Next())
|
||||
{
|
||||
TopoDS_Shape aSp = aIt.Value();
|
||||
|
||||
//=======================================================================
|
||||
//function : Generated
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
const TopTools_ListOfShape& BOPAlgo_CellsBuilder::Generated(const TopoDS_Shape& theS)
|
||||
{
|
||||
myHistShapes.Clear();
|
||||
if (theS.IsNull()) {
|
||||
return myHistShapes;
|
||||
}
|
||||
//
|
||||
TopAbs_ShapeEnum aType = theS.ShapeType();
|
||||
if (!(aType==TopAbs_EDGE || aType==TopAbs_FACE || aType==TopAbs_VERTEX)) {
|
||||
return myHistShapes;
|
||||
}
|
||||
//
|
||||
Standard_Boolean bHasGenerated = myMapGenerated.IsBound(theS);
|
||||
if (bHasGenerated) {
|
||||
const TopoDS_Shape& aSG = myMapGenerated.Find(theS);
|
||||
if (myMapShape.Contains(aSG)) {
|
||||
myHistShapes.Append(aSG);
|
||||
}
|
||||
return myHistShapes;
|
||||
}
|
||||
//
|
||||
Standard_Boolean bHasImage = myImages.IsBound(theS);
|
||||
if (!bHasImage) {
|
||||
return myHistShapes;
|
||||
}
|
||||
//
|
||||
BOPCol_MapOfShape aMFence;
|
||||
const BOPCol_ListOfShape& aLSp = myImages.Find(theS);
|
||||
BOPCol_ListIteratorOfListOfShape aIt(aLSp);
|
||||
for (; aIt.More(); aIt.Next()) {
|
||||
const TopoDS_Shape aSp = aIt.Value();
|
||||
const TopoDS_Shape& aSpR = myShapesSD.IsBound(aSp) ?
|
||||
myShapesSD.Find(aSp) : aSp;
|
||||
//
|
||||
if (myMapGenerated.IsBound(aSpR)) {
|
||||
const TopoDS_Shape& aSG = myMapGenerated.Find(aSpR);
|
||||
if (myMapShape.Contains(aSG)) {
|
||||
if (aMFence.Add(aSG)) {
|
||||
myHistShapes.Append(aSG);
|
||||
// Check SD shapes
|
||||
const TopoDS_Shape* pSpSD = myShapesSD.Seek(aSp);
|
||||
if (pSpSD)
|
||||
aSp = *pSpSD;
|
||||
|
||||
// Check local modification of the shape (unification with other shapes)
|
||||
const TopoDS_Shape* pSU = myMapModified.Seek(aSp);
|
||||
if (pSU)
|
||||
aSp = *pSU;
|
||||
|
||||
// Check if the result shape contains the split
|
||||
if (myMapShape.Contains(aSp))
|
||||
{
|
||||
if (!pLSpKept)
|
||||
pLSpKept = &myImagesResult(myImagesResult.Add(aS, BOPCol_ListOfShape()));
|
||||
|
||||
// Link the shape to the split
|
||||
pLSpKept->Append(aSp);
|
||||
}
|
||||
}
|
||||
|
||||
if (pLSpKept)
|
||||
// Modified element is found
|
||||
myHasModified = Standard_True;
|
||||
else
|
||||
// Deleted element is found
|
||||
myHasDeleted = Standard_True;
|
||||
}
|
||||
|
||||
// Try to find generated shapes
|
||||
if (!myHasGenerated)
|
||||
{
|
||||
// Temporarily set the HasGenerated flag to look for the shapes generated from aS
|
||||
myHasGenerated = Standard_True;
|
||||
myHasGenerated = (Generated(aS).Extent() > 0);
|
||||
}
|
||||
}
|
||||
//
|
||||
return myHistShapes;
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
|
@ -84,8 +84,6 @@
|
||||
//! VERTEX, EDGE, FACE. This information available through the methods
|
||||
//! IsDeleted() and Modified(). In DRAW Test Harness it is available through the same
|
||||
//! commands as for Boolean Operations (bmodified, bgenerated and bisdeleted).
|
||||
//! There could be Generated shapes only after removing of the internal boundaries
|
||||
//! between faces and edges, i.e. after using ShapeUpgrade_UnifySameDomain tool.
|
||||
//!
|
||||
//! Examples:
|
||||
//! 1. API
|
||||
@ -213,15 +211,13 @@ class BOPAlgo_CellsBuilder : public BOPAlgo_Builder
|
||||
//! Makes the Containers of proper type from the parts added to result.
|
||||
Standard_EXPORT void MakeContainers();
|
||||
|
||||
//! Returns the list of shapes generated from the shape theS.
|
||||
Standard_EXPORT virtual const TopTools_ListOfShape& Generated(const TopoDS_Shape& theS) Standard_OVERRIDE;
|
||||
|
||||
//! Returns true if the shape theS has been deleted.
|
||||
Standard_EXPORT virtual Standard_Boolean IsDeleted (const TopoDS_Shape& theS) Standard_OVERRIDE;
|
||||
|
||||
protected:
|
||||
|
||||
//! Redefined method Prepare - no need to prepare history
|
||||
//! Prepare information for history support taking into account
|
||||
//! local modification map of unified elements.
|
||||
Standard_EXPORT virtual void PrepareHistory() Standard_OVERRIDE;
|
||||
|
||||
//! Redefined method Prepare - no need to prepare history
|
||||
//! information on the default result as it is empty compound.
|
||||
Standard_EXPORT virtual void Prepare() Standard_OVERRIDE;
|
||||
|
||||
@ -254,7 +250,7 @@ class BOPAlgo_CellsBuilder : public BOPAlgo_Builder
|
||||
BOPCol_IndexedDataMapOfShapeListOfShape myIndex;
|
||||
BOPCol_DataMapOfIntegerListOfShape myMaterials;
|
||||
BOPCol_DataMapOfShapeInteger myShapeMaterial;
|
||||
BOPCol_DataMapOfShapeShape myMapGenerated;
|
||||
BOPCol_DataMapOfShapeShape myMapModified;
|
||||
|
||||
private:
|
||||
|
||||
|
@ -13,7 +13,6 @@
|
||||
// commercial license or contractual agreement.
|
||||
|
||||
|
||||
#include <BOPAlgo_BuilderSolid.hxx>
|
||||
#include <BOPAlgo_PaveFiller.hxx>
|
||||
#include <BOPAlgo_Section.hxx>
|
||||
#include <BOPCol_DataMapOfShapeShape.hxx>
|
||||
@ -31,7 +30,6 @@
|
||||
#include <BOPDS_VectorOfListOfPaveBlock.hxx>
|
||||
#include <BOPTools.hxx>
|
||||
#include <BOPTools_AlgoTools.hxx>
|
||||
#include <BOPTools_AlgoTools3D.hxx>
|
||||
#include <BRep_Builder.hxx>
|
||||
#include <BRep_Tool.hxx>
|
||||
#include <TopAbs_ShapeEnum.hxx>
|
||||
@ -41,8 +39,6 @@
|
||||
#include <TopoDS_Iterator.hxx>
|
||||
#include <TopoDS_Shape.hxx>
|
||||
|
||||
//
|
||||
//
|
||||
//=======================================================================
|
||||
//function :
|
||||
//purpose :
|
||||
@ -372,45 +368,3 @@ void BOPAlgo_Section::BuildSection()
|
||||
//
|
||||
myShape=aRC;
|
||||
}
|
||||
//=======================================================================
|
||||
//function : Generated
|
||||
//purpose :
|
||||
//=======================================================================
|
||||
const TopTools_ListOfShape& BOPAlgo_Section::Generated
|
||||
(const TopoDS_Shape& theS)
|
||||
{
|
||||
myHistShapes.Clear();
|
||||
if (theS.IsNull()) {
|
||||
return myHistShapes;
|
||||
}
|
||||
//
|
||||
TopAbs_ShapeEnum aType = theS.ShapeType();
|
||||
if (aType != TopAbs_FACE) {
|
||||
return myHistShapes;
|
||||
}
|
||||
//
|
||||
Standard_Integer nS = myDS->Index(theS);
|
||||
if (nS < 0) {
|
||||
return myHistShapes;
|
||||
}
|
||||
//
|
||||
if (!myDS->HasFaceInfo(nS)) {
|
||||
return myHistShapes;
|
||||
}
|
||||
//
|
||||
//collect section edges of the face theS
|
||||
Standard_Integer i, aNb, nSp;
|
||||
//
|
||||
const BOPDS_FaceInfo& aFI = myDS->FaceInfo(nS);
|
||||
const BOPDS_IndexedMapOfPaveBlock& aMPBSc = aFI.PaveBlocksSc();
|
||||
aNb = aMPBSc.Extent();
|
||||
for (i = 1; i <= aNb; ++i) {
|
||||
const Handle(BOPDS_PaveBlock)& aPB = aMPBSc(i);
|
||||
nSp = aPB->Edge();
|
||||
const TopoDS_Shape& aSp = myDS->Shape(nSp);
|
||||
myHistShapes.Append(aSp);
|
||||
}
|
||||
//
|
||||
return myHistShapes;
|
||||
}
|
||||
|
||||
|
@ -43,46 +43,24 @@ public:
|
||||
|
||||
//! Empty constructor
|
||||
Standard_EXPORT BOPAlgo_Section();
|
||||
Standard_EXPORT virtual ~BOPAlgo_Section();
|
||||
|
||||
//! Empty constructor
|
||||
//!
|
||||
//! protected methods
|
||||
Standard_EXPORT virtual ~BOPAlgo_Section();
|
||||
|
||||
//! Constructor with allocator
|
||||
Standard_EXPORT BOPAlgo_Section(const BOPCol_BaseAllocator& theAllocator);
|
||||
|
||||
Standard_EXPORT virtual void BuildSection();
|
||||
|
||||
//! Returns the list of shapes generated from the
|
||||
//! shape theS.
|
||||
Standard_EXPORT virtual const TopTools_ListOfShape& Generated (const TopoDS_Shape& theS) Standard_OVERRIDE;
|
||||
|
||||
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
|
||||
//! Checks the data before performing the operation
|
||||
Standard_EXPORT virtual void CheckData() Standard_OVERRIDE;
|
||||
|
||||
//! Performs calculations using prepared Filler
|
||||
//! object <thePF>
|
||||
Standard_EXPORT virtual void PerformInternal1 (const BOPAlgo_PaveFiller& thePF) Standard_OVERRIDE;
|
||||
|
||||
|
||||
//! Combine the result of section operation
|
||||
Standard_EXPORT virtual void BuildSection();
|
||||
|
||||
//! Performs calculations using prepared Filler object <thePF>
|
||||
Standard_EXPORT virtual void PerformInternal1(const BOPAlgo_PaveFiller& thePF) Standard_OVERRIDE;
|
||||
|
||||
private:
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
#endif // _BOPAlgo_Section_HeaderFile
|
||||
|
@ -26,3 +26,4 @@
|
||||
026 gdml_public
|
||||
027 gdml_private
|
||||
028 cells_test
|
||||
029 history
|
163
tests/boolean/history/A1
Normal file
163
tests/boolean/history/A1
Normal file
@ -0,0 +1,163 @@
|
||||
puts "Check History of Boolean operations"
|
||||
|
||||
puts "Case with intersecting circles (two intersection points)"
|
||||
|
||||
circle c1 0 0 0 10
|
||||
mkedge e1 c1
|
||||
|
||||
circle c2 10 0 0 10
|
||||
mkedge e2 c2
|
||||
|
||||
bclearobjects
|
||||
bcleartools
|
||||
baddobjects e1
|
||||
baddtools e2
|
||||
bfillds
|
||||
|
||||
puts "Common operation"
|
||||
bbop rcom 0
|
||||
|
||||
# check that both e1 and e2 have been deleted
|
||||
if {[string trim [bisdeleted e1]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bisdeleted e2]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that none of the e1 and e2 have been Modified
|
||||
if {[string trim [bmodified rm e1]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modified shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bmodified rm e2]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modified shapes"
|
||||
}
|
||||
|
||||
# check that none of the e1 and e2 have Generated shapes
|
||||
if {[string trim [bgenerated rg e1]] != "No shapes were generated from the shape"} {
|
||||
puts "Error: Incorrect information about Generated shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bgenerated rg e2]] != "No shapes were generated from the shape"} {
|
||||
puts "Error: Incorrect information about Generated shapes"
|
||||
}
|
||||
|
||||
|
||||
puts "Fuse operation"
|
||||
bbop rfuse 1
|
||||
|
||||
# check that both e1 and e2 have not been deleted
|
||||
if {[string trim [bisdeleted e1]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bisdeleted e2]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that both e1 and e2 have been Modified
|
||||
bmodified rm e1
|
||||
checknbshapes rm -edge 3 -m "Information about modification of e1"
|
||||
|
||||
bmodified rm e2
|
||||
checknbshapes rm -edge 3 -m "Information about modification of e2"
|
||||
|
||||
# check that both e1 and e2 have Generated vertices
|
||||
bgenerated rg e1
|
||||
checknbshapes rg -vertex 2 -m "Information about shapes Generated from e1"
|
||||
|
||||
bgenerated rg e2
|
||||
checknbshapes rg -vertex 2 -m "Information about shapes Generated from e2"
|
||||
|
||||
|
||||
puts "CUT operation"
|
||||
bbop rcut 2
|
||||
|
||||
# check that e1 has not been deleted
|
||||
if {[string trim [bisdeleted e1]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that e2 has been deleted
|
||||
if {[string trim [bisdeleted e2]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that e1 has been modified
|
||||
bmodified rm e1
|
||||
checknbshapes rm -edge 3 -m "Information about modification of e1"
|
||||
|
||||
# check that e2 has not been modified
|
||||
if {[string trim [bmodified rm e2]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modified shapes"
|
||||
}
|
||||
|
||||
# check that both e1 and e2 have Generated vertices
|
||||
bgenerated rg e1
|
||||
checknbshapes rg -vertex 2 -m "Information about shapes Generated from e1"
|
||||
|
||||
bgenerated rg e2
|
||||
checknbshapes rg -vertex 2 -m "Information about shapes Generated from e2"
|
||||
|
||||
|
||||
puts "TUC operation"
|
||||
bbop rtuc 3
|
||||
|
||||
# check that e1 has been deleted
|
||||
if {[string trim [bisdeleted e1]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that e2 has not been deleted
|
||||
if {[string trim [bisdeleted e2]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that e1 has not been modified
|
||||
if {[string trim [bmodified rm e1]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modified shapes"
|
||||
}
|
||||
|
||||
# check that e2 has been modified
|
||||
bmodified rm e2
|
||||
checknbshapes rm -edge 3 -m "Information about modification of e1"
|
||||
|
||||
|
||||
# check that both e1 and e2 have Generated vertices
|
||||
bgenerated rg e1
|
||||
checknbshapes rg -vertex 2 -m "Information about shapes Generated from e1"
|
||||
|
||||
bgenerated rg e2
|
||||
checknbshapes rg -vertex 2 -m "Information about shapes Generated from e2"
|
||||
|
||||
|
||||
|
||||
puts "SECTION operation"
|
||||
bbop rsec 4
|
||||
|
||||
# check that both e1 and e2 have been deleted
|
||||
if {[string trim [bisdeleted e1]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bisdeleted e2]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that none of the e1 and e2 have been Modified
|
||||
if {[string trim [bmodified rm e1]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modified shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bmodified rm e2]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modified shapes"
|
||||
}
|
||||
|
||||
# check that both e1 and e2 have Generated vertices
|
||||
bgenerated rg e1
|
||||
checknbshapes rg -vertex 2 -m "Information about shapes Generated from e1"
|
||||
|
||||
bgenerated rg e2
|
||||
checknbshapes rg -vertex 2 -m "Information about shapes Generated from e2"
|
163
tests/boolean/history/A2
Normal file
163
tests/boolean/history/A2
Normal file
@ -0,0 +1,163 @@
|
||||
puts "Check History of Boolean operations"
|
||||
|
||||
puts "Case with intersecting planes (two intersection edges)"
|
||||
|
||||
plane p 0 0 0 0 0 1
|
||||
mkface f1 p -10 10 -10 10
|
||||
|
||||
polyline p -5 0 -5 -5 0 10 5 0 10 5 0 -5 2 0 -5 2 0 5 -2 0 5 -2 0 -5 -5 0 -5
|
||||
mkplane f2 p
|
||||
|
||||
bclearobjects
|
||||
bcleartools
|
||||
baddobjects f1
|
||||
baddtools f2
|
||||
bfillds
|
||||
|
||||
puts "Common operation"
|
||||
bbop rcom 0
|
||||
|
||||
# check that both f1 and f2 have been deleted
|
||||
if {[string trim [bisdeleted f1]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bisdeleted f2]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that none of the f1 and f2 have been Modified
|
||||
if {[string trim [bmodified rm f1]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modified shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bmodified rm f2]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modified shapes"
|
||||
}
|
||||
|
||||
# check that none of the f1 and f2 have Generated shapes
|
||||
if {[string trim [bgenerated rg f1]] != "No shapes were generated from the shape"} {
|
||||
puts "Error: Incorrect information about Generated shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bgenerated rg f2]] != "No shapes were generated from the shape"} {
|
||||
puts "Error: Incorrect information about Generated shapes"
|
||||
}
|
||||
|
||||
|
||||
puts "Fuse operation"
|
||||
bbop rfuse 1
|
||||
|
||||
# check that both f1 and f2 have not been deleted
|
||||
if {[string trim [bisdeleted f1]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bisdeleted f2]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that both f1 and f2 have been Modified
|
||||
bmodified rm f1
|
||||
checknbshapes rm -face 1 -m "Information about modification of f1"
|
||||
|
||||
bmodified rm f2
|
||||
checknbshapes rm -face 3 -m "Information about modification of f2"
|
||||
|
||||
# check that both f1 and f2 have Generated edges
|
||||
bgenerated rg f1
|
||||
checknbshapes rg -edge 2 -m "Information about shapes Generated from f1"
|
||||
|
||||
bgenerated rg f1
|
||||
checknbshapes rg -edge 2 -m "Information about shapes Generated from f2"
|
||||
|
||||
|
||||
puts "CUT operation"
|
||||
bbop rcut 2
|
||||
|
||||
# check that f1 has not been deleted
|
||||
if {[string trim [bisdeleted f1]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that f2 has been deleted
|
||||
if {[string trim [bisdeleted f2]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that f1 has been modified
|
||||
bmodified rm f1
|
||||
checknbshapes rm -face 1 -m "Information about modification of f1"
|
||||
|
||||
# check that f2 has not been modified
|
||||
if {[string trim [bmodified rm f2]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modified shapes"
|
||||
}
|
||||
|
||||
# check that both f1 and f2 have Generated edges
|
||||
bgenerated rg f1
|
||||
checknbshapes rg -edge 2 -m "Information about shapes Generated from f1"
|
||||
|
||||
bgenerated rg f2
|
||||
checknbshapes rg -edge 2 -m "Information about shapes Generated from f2"
|
||||
|
||||
|
||||
puts "TUC operation"
|
||||
bbop rtuc 3
|
||||
|
||||
# check that f1 has been deleted
|
||||
if {[string trim [bisdeleted f1]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that f2 has not been deleted
|
||||
if {[string trim [bisdeleted f2]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that f1 has not been modified
|
||||
if {[string trim [bmodified rm f1]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modified shapes"
|
||||
}
|
||||
|
||||
# check that f2 has been modified
|
||||
bmodified rm f2
|
||||
checknbshapes rm -face 3 -m "Information about modification of f1"
|
||||
|
||||
|
||||
# check that both f1 and f2 have Generated vertices
|
||||
bgenerated rg f1
|
||||
checknbshapes rg -edge 2 -m "Information about shapes Generated from f1"
|
||||
|
||||
bgenerated rg f2
|
||||
checknbshapes rg -edge 2 -m "Information about shapes Generated from f2"
|
||||
|
||||
|
||||
|
||||
puts "SECTION operation"
|
||||
bbop rsec 4
|
||||
|
||||
# check that both f1 and f2 have been deleted
|
||||
if {[string trim [bisdeleted f1]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bisdeleted f2]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that none of the f1 and f2 have been Modified
|
||||
if {[string trim [bmodified rm f1]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modified shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bmodified rm f2]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modified shapes"
|
||||
}
|
||||
|
||||
# check that both f1 and f2 have Generated vertices
|
||||
bgenerated rg f1
|
||||
checknbshapes rg -edge 2 -m "Information about shapes Generated from f1"
|
||||
|
||||
bgenerated rg f2
|
||||
checknbshapes rg -edge 2 -m "Information about shapes Generated from f2"
|
171
tests/boolean/history/A3
Normal file
171
tests/boolean/history/A3
Normal file
@ -0,0 +1,171 @@
|
||||
puts "Check History of Boolean operations"
|
||||
|
||||
puts "Case with overlapping planar faces"
|
||||
|
||||
plane p 0 0 0 0 0 1
|
||||
mkface f1 p -10 10 -10 10
|
||||
mkface f2 p 0 20 -10 10
|
||||
|
||||
bclearobjects
|
||||
bcleartools
|
||||
baddobjects f1
|
||||
baddtools f2
|
||||
bfillds
|
||||
|
||||
puts "Common operation"
|
||||
bbop rcom 0
|
||||
|
||||
|
||||
# check that both f1 and f2 have not been deleted
|
||||
if {[string trim [bisdeleted f1]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bisdeleted f2]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that both f1 and f2 have been Modified into the same face
|
||||
bmodified rm1 f1
|
||||
checknbshapes rm1 -face 1 -m "Information about modification of f1"
|
||||
|
||||
bmodified rm2 f2
|
||||
checknbshapes rm2 -face 1 -m "Information about modification of f2"
|
||||
|
||||
compound rm1 rm2 cm
|
||||
checknbshapes cm -face 1 -m "Information about modification of f1 and f2"
|
||||
|
||||
|
||||
# check that none of the f1 and f2 have Generated shapes
|
||||
if {[string trim [bgenerated rg f1]] != "No shapes were generated from the shape"} {
|
||||
puts "Error: Incorrect information about Generated shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bgenerated rg f2]] != "No shapes were generated from the shape"} {
|
||||
puts "Error: Incorrect information about Generated shapes"
|
||||
}
|
||||
|
||||
|
||||
puts "Fuse operation"
|
||||
bbop rfuse 1
|
||||
|
||||
# check that both f1 and f2 have not been deleted
|
||||
if {[string trim [bisdeleted f1]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bisdeleted f2]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that both f1 and f2 have been Modified
|
||||
bmodified rm f1
|
||||
checknbshapes rm -face 2 -m "Information about modification of f1"
|
||||
|
||||
bmodified rm f2
|
||||
checknbshapes rm -face 2 -m "Information about modification of f2"
|
||||
|
||||
# check that none of the f1 and f2 have Generated shapes
|
||||
if {[string trim [bgenerated rg f1]] != "No shapes were generated from the shape"} {
|
||||
puts "Error: Incorrect information about Generated shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bgenerated rg f2]] != "No shapes were generated from the shape"} {
|
||||
puts "Error: Incorrect information about Generated shapes"
|
||||
}
|
||||
|
||||
|
||||
puts "CUT operation"
|
||||
bbop rcut 2
|
||||
|
||||
# check that f1 has not been deleted
|
||||
if {[string trim [bisdeleted f1]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that f2 has been deleted
|
||||
if {[string trim [bisdeleted f2]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that f1 has been modified
|
||||
bmodified rm f1
|
||||
checknbshapes rm -face 1 -m "Information about modification of f1"
|
||||
|
||||
# check that f2 has not been modified
|
||||
if {[string trim [bmodified rm f2]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modified shapes"
|
||||
}
|
||||
|
||||
# check that none of the f1 and f2 have Generated shapes
|
||||
if {[string trim [bgenerated rg f1]] != "No shapes were generated from the shape"} {
|
||||
puts "Error: Incorrect information about Generated shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bgenerated rg f2]] != "No shapes were generated from the shape"} {
|
||||
puts "Error: Incorrect information about Generated shapes"
|
||||
}
|
||||
|
||||
|
||||
puts "TUC operation"
|
||||
bbop rtuc 3
|
||||
|
||||
# check that f1 has been deleted
|
||||
if {[string trim [bisdeleted f1]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that f2 has not been deleted
|
||||
if {[string trim [bisdeleted f2]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that f1 has not been modified
|
||||
if {[string trim [bmodified rm f1]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modified shapes"
|
||||
}
|
||||
|
||||
# check that f2 has been modified
|
||||
bmodified rm f2
|
||||
checknbshapes rm -face 1 -m "Information about modification of f1"
|
||||
|
||||
# check that none of the f1 and f2 have Generated shapes
|
||||
if {[string trim [bgenerated rg f1]] != "No shapes were generated from the shape"} {
|
||||
puts "Error: Incorrect information about Generated shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bgenerated rg f2]] != "No shapes were generated from the shape"} {
|
||||
puts "Error: Incorrect information about Generated shapes"
|
||||
}
|
||||
|
||||
|
||||
|
||||
puts "SECTION operation"
|
||||
bbop rsec 4
|
||||
|
||||
# check that both f1 and f2 have been deleted
|
||||
if {[string trim [bisdeleted f1]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bisdeleted f2]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
|
||||
# check that none of the f1 and f2 have been Modified
|
||||
if {[string trim [bmodified rm f1]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modified shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bmodified rm f2]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modified shapes"
|
||||
}
|
||||
|
||||
# check that none of the f1 and f2 have Generated shapes
|
||||
if {[string trim [bgenerated rg f1]] != "No shapes were generated from the shape"} {
|
||||
puts "Error: Incorrect information about Generated shapes"
|
||||
}
|
||||
|
||||
if {[string trim [bgenerated rg f2]] != "No shapes were generated from the shape"} {
|
||||
puts "Error: Incorrect information about Generated shapes"
|
||||
}
|
37
tests/boolean/history/A4
Normal file
37
tests/boolean/history/A4
Normal file
@ -0,0 +1,37 @@
|
||||
puts "Check History of General Fuse"
|
||||
|
||||
puts "Case with an edge intersecting a face"
|
||||
|
||||
polyline fw 0 0 0 10 0 0 10 10 0 0 10 0 0 0 0
|
||||
mkplane fs fw
|
||||
|
||||
vertex ev1 5 5 5
|
||||
vertex ev2 5 5 -5
|
||||
edge es ev1 ev2
|
||||
|
||||
bclearobjects
|
||||
bcleartools
|
||||
baddobjects fs
|
||||
baddtools es
|
||||
bfillds
|
||||
bbuild r
|
||||
|
||||
bmodified fs_m fs
|
||||
checknbshapes fs_m -face 1 -m "Information about Modification of fs"
|
||||
|
||||
bmodified es_m es
|
||||
checknbshapes es_m -edge 2 -m "Information about Modification of es"
|
||||
|
||||
bgenerated fs_g fs
|
||||
checknbshapes fs_g -vertex 1 -m "Information about shapes Generated from fs"
|
||||
|
||||
bgenerated es_g es
|
||||
checknbshapes es_g -vertex 1 -m "Information about shapes Generated from es"
|
||||
|
||||
|
||||
# In General Fuse operation there should be no Deleted elements
|
||||
foreach s [join [list es fs [explode es v] [explode fs e] [explode fs v]]] {
|
||||
if {[string trim [bisdeleted $s]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deleted shapes"
|
||||
}
|
||||
}
|
167
tests/boolean/history/A5
Normal file
167
tests/boolean/history/A5
Normal file
@ -0,0 +1,167 @@
|
||||
puts "Check History of Cells Builder"
|
||||
|
||||
puts "Case with overlapping planar faces"
|
||||
|
||||
circle c1 0 0 0 10
|
||||
circle c2 10 0 0 10
|
||||
circle c3 10 10 0 10
|
||||
|
||||
mkedge e1 c1
|
||||
mkedge e2 c2
|
||||
mkedge e3 c3
|
||||
|
||||
wire w1 e1
|
||||
wire w2 e2
|
||||
wire w3 e3
|
||||
|
||||
mkplane f1 w1
|
||||
mkplane f2 w2
|
||||
mkplane f3 w3
|
||||
|
||||
bclearobjects
|
||||
bcleartools
|
||||
baddobjects f1 f2 f3
|
||||
bfillds
|
||||
|
||||
bcbuild rx
|
||||
|
||||
bcremoveall
|
||||
|
||||
# no history at this point
|
||||
|
||||
# add to result all parts of f1 with material 1
|
||||
bcadd result f1 1 -m 1
|
||||
|
||||
# check modification of f1
|
||||
bmodified rm1 f1
|
||||
checknbshapes rm1 -face 4 -m "Information about modification of f1"
|
||||
|
||||
# check modification of f2
|
||||
bmodified rm2 f2
|
||||
checknbshapes rm2 -face 2 -m "Information about modification of f2"
|
||||
|
||||
# check modification of f3
|
||||
bmodified rm3 f3
|
||||
checknbshapes rm3 -face 2 -m "Information about modification of f3"
|
||||
|
||||
# make one face from result
|
||||
bcremoveint result
|
||||
|
||||
# check modification of f1
|
||||
bmodified rm1u f1
|
||||
checknbshapes rm1u -face 1 -m "Information about modification of f1"
|
||||
|
||||
# check modification of f2
|
||||
bmodified rm2u f2
|
||||
checknbshapes rm2u -face 1 -m "Information about modification of f2"
|
||||
|
||||
# check modification of f3
|
||||
bmodified rm3u f3
|
||||
checknbshapes rm3u -face 1 -m "Information about modification of f3"
|
||||
|
||||
compound rm1u rm2u rm3u cfu
|
||||
checknbshapes cfu -face 1 -m "Information about modification of f1, f2 and f3"
|
||||
|
||||
|
||||
bcremoveall
|
||||
# no history at this point
|
||||
|
||||
# add to result all parts of f1 and f2 not contained in f3 with material 1
|
||||
bcadd result f1 1 f3 0 -m 1
|
||||
bcadd result f2 1 f3 0 -m 1
|
||||
|
||||
# check modification of f1
|
||||
bmodified rm1 f1
|
||||
checknbshapes rm1 -face 2 -m "Information about modification of f1"
|
||||
|
||||
# check modification of f2
|
||||
bmodified rm2 f2
|
||||
checknbshapes rm2 -face 2 -m "Information about modification of f2"
|
||||
|
||||
# check modification of f3
|
||||
if {[string trim [bmodified rm3 f3]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modification of f3"
|
||||
}
|
||||
|
||||
# check deletion of f1
|
||||
if {[string trim [bisdeleted f1]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deletion of f1"
|
||||
}
|
||||
|
||||
# check deletion of f2
|
||||
if {[string trim [bisdeleted f2]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deletion of f2"
|
||||
}
|
||||
|
||||
# check deletion of f3
|
||||
if {[string trim [bisdeleted f3]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deletion of f3"
|
||||
}
|
||||
|
||||
# make one face from result
|
||||
bcremoveint result
|
||||
|
||||
# check modification of f1
|
||||
bmodified rm1 f1
|
||||
checknbshapes rm1 -face 1 -m "Information about modification of f1"
|
||||
|
||||
# check modification of f2
|
||||
bmodified rm2 f2
|
||||
checknbshapes rm2 -face 1 -m "Information about modification of f2"
|
||||
|
||||
# check modification of f3
|
||||
if {[string trim [bmodified rm3 f3]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modification of f3"
|
||||
}
|
||||
|
||||
# check deletion of f1
|
||||
if {[string trim [bisdeleted f1]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deletion of f1"
|
||||
}
|
||||
|
||||
# check deletion of f2
|
||||
if {[string trim [bisdeleted f2]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deletion of f2"
|
||||
}
|
||||
|
||||
# check deletion of f3
|
||||
if {[string trim [bisdeleted f3]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deletion of f3"
|
||||
}
|
||||
|
||||
|
||||
bcremoveall
|
||||
|
||||
# add to result parts of f1 with material 1, and all other parts with material 2
|
||||
bcadd result f1 1 -m 1
|
||||
bcadd result f2 1 f1 0 -m 2
|
||||
bcadd result f3 1 f1 0 -m 2
|
||||
|
||||
# at this point all splits of faces are contained in the result
|
||||
# check modification of f1
|
||||
bmodified rm1 f1
|
||||
checknbshapes rm1 -face 4 -m "Information about modification of f1"
|
||||
|
||||
# check modification of f2
|
||||
bmodified rm2 f2
|
||||
checknbshapes rm2 -face 4 -m "Information about modification of f2"
|
||||
|
||||
# check modification of f3
|
||||
bmodified rm3 f3
|
||||
checknbshapes rm3 -face 4 -m "Information about modification of f3"
|
||||
|
||||
# unify faces with same material
|
||||
bcremoveint result
|
||||
|
||||
# check modification of f1
|
||||
bmodified rm1u f1
|
||||
checknbshapes rm1u -face 1 -m "Information about modification of f1"
|
||||
|
||||
# check modification of f2
|
||||
bmodified rm2u f2
|
||||
checknbshapes rm2u -face 2 -m "Information about modification of f2"
|
||||
|
||||
# check modification of f3
|
||||
bmodified rm3u f3
|
||||
checknbshapes rm3u -face 2 -m "Information about modification of f3"
|
||||
|
173
tests/boolean/history/A6
Normal file
173
tests/boolean/history/A6
Normal file
@ -0,0 +1,173 @@
|
||||
puts "Check History of Cells Builder"
|
||||
|
||||
puts "Case with three boxes"
|
||||
|
||||
box b1 10 10 10
|
||||
box b2 5 0 0 10 10 10
|
||||
box b3 2.5 0 5 10 10 10
|
||||
|
||||
bclearobjects
|
||||
bcleartools
|
||||
baddobjects b1 b2 b3
|
||||
bfillds
|
||||
|
||||
bcbuild rx
|
||||
|
||||
bcremoveall
|
||||
# no history at this point
|
||||
|
||||
# add all parts into result
|
||||
bcaddall result
|
||||
|
||||
# find all section edges using Generated history information
|
||||
compound ge
|
||||
foreach s {b1 b2 b3} {
|
||||
foreach f [explode $s f] {
|
||||
if {[string trim [bgenerated g $f]] == ""} {
|
||||
add g ge
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
checknbshapes ge -edge 4 -m "Information about Generated shapes"
|
||||
|
||||
|
||||
bcremoveall
|
||||
# no history at this point
|
||||
|
||||
# add to result all parts of b1 with material 1
|
||||
bcadd result b1 1 -m 1
|
||||
|
||||
# check modification of b1
|
||||
bmodified rm1 b1
|
||||
checknbshapes rm1 -solid 4 -m "Information about modification of b1"
|
||||
|
||||
# check modification of b2
|
||||
bmodified rm2 b2
|
||||
checknbshapes rm2 -solid 2 -m "Information about modification of b2"
|
||||
|
||||
# check modification of b3
|
||||
bmodified rm3 b3
|
||||
checknbshapes rm3 -solid 2 -m "Information about modification of b3"
|
||||
|
||||
# make one face from result
|
||||
bcremoveint result
|
||||
|
||||
# check modification of b1
|
||||
bmodified rm1u b1
|
||||
checknbshapes rm1u -solid 1 -m "Information about modification of b1"
|
||||
|
||||
# check modification of b2
|
||||
bmodified rm2u b2
|
||||
checknbshapes rm2u -solid 1 -m "Information about modification of b2"
|
||||
|
||||
# check modification of b3
|
||||
bmodified rm3u b3
|
||||
checknbshapes rm3u -solid 1 -m "Information about modification of b3"
|
||||
|
||||
compound rm1u rm2u rm3u cfu
|
||||
checknbshapes cfu -solid 1 -m "Information about modification of b1, b2 and b3"
|
||||
|
||||
|
||||
bcremoveall
|
||||
# no history at this point
|
||||
|
||||
# add to result all parts of b1 and b2 not contained in b3 with material 1
|
||||
bcadd result b1 1 b3 0 -m 1
|
||||
bcadd result b2 1 b3 0 -m 1
|
||||
|
||||
# check modification of b1
|
||||
bmodified rm1 b1
|
||||
checknbshapes rm1 -solid 2 -m "Information about modification of b1"
|
||||
|
||||
# check modification of b2
|
||||
bmodified rm2 b2
|
||||
checknbshapes rm2 -solid 2 -m "Information about modification of b2"
|
||||
|
||||
# check modification of b3
|
||||
if {[string trim [bmodified rm3 b3]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modification of b3"
|
||||
}
|
||||
|
||||
# check deletion of b1
|
||||
if {[string trim [bisdeleted b1]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deletion of b1"
|
||||
}
|
||||
|
||||
# check deletion of b2
|
||||
if {[string trim [bisdeleted b2]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deletion of b2"
|
||||
}
|
||||
|
||||
# check deletion of b3
|
||||
if {[string trim [bisdeleted b3]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deletion of b3"
|
||||
}
|
||||
|
||||
# make one face from result
|
||||
bcremoveint result
|
||||
|
||||
# check modification of b1
|
||||
bmodified rm1 b1
|
||||
checknbshapes rm1 -solid 1 -m "Information about modification of b1"
|
||||
|
||||
# check modification of b2
|
||||
bmodified rm2 b2
|
||||
checknbshapes rm2 -solid 1 -m "Information about modification of b2"
|
||||
|
||||
# check modification of b3
|
||||
if {[string trim [bmodified rm3 b3]] != "The shape has not been modified"} {
|
||||
puts "Error: Incorrect information about Modification of b3"
|
||||
}
|
||||
|
||||
# check deletion of b1
|
||||
if {[string trim [bisdeleted b1]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deletion of b1"
|
||||
}
|
||||
|
||||
# check deletion of b2
|
||||
if {[string trim [bisdeleted b2]] != "Not deleted"} {
|
||||
puts "Error: Incorrect information about Deletion of b2"
|
||||
}
|
||||
|
||||
# check deletion of b3
|
||||
if {[string trim [bisdeleted b3]] != "Deleted"} {
|
||||
puts "Error: Incorrect information about Deletion of b3"
|
||||
}
|
||||
|
||||
|
||||
bcremoveall
|
||||
|
||||
# add to result parts of b1 with material 1, and all other parts with material 2
|
||||
bcadd result b1 1 -m 1
|
||||
bcadd result b2 1 b1 0 -m 2
|
||||
bcadd result b3 1 b1 0 -m 2
|
||||
|
||||
# at this point all splits of faces are contained in the result
|
||||
# check modification of b1
|
||||
bmodified rm1 b1
|
||||
checknbshapes rm1 -solid 4 -m "Information about modification of b1"
|
||||
|
||||
# check modification of b2
|
||||
bmodified rm2 b2
|
||||
checknbshapes rm2 -solid 4 -m "Information about modification of b2"
|
||||
|
||||
# check modification of b3
|
||||
bmodified rm3 b3
|
||||
checknbshapes rm3 -solid 4 -m "Information about modification of b3"
|
||||
|
||||
# unify faces with same material
|
||||
bcremoveint result
|
||||
|
||||
# check modification of b1
|
||||
bmodified rm1u b1
|
||||
checknbshapes rm1u -solid 1 -m "Information about modification of b1"
|
||||
|
||||
# check modification of b2
|
||||
bmodified rm2u b2
|
||||
checknbshapes rm2u -solid 2 -m "Information about modification of b2"
|
||||
|
||||
# check modification of b3
|
||||
bmodified rm3u b3
|
||||
checknbshapes rm3u -solid 2 -m "Information about modification of b3"
|
||||
|
@ -47,19 +47,19 @@ NewCommand D
|
||||
erase
|
||||
ExploreShape D $CS:2:1 R
|
||||
|
||||
# should be 12 edges
|
||||
# should be 12 edges and 6 vertices
|
||||
set l1 [llength [directory R_*] ]
|
||||
|
||||
# should be 12 faces
|
||||
# should be 18 faces
|
||||
set l2 [llength [directory oldR_*] ]
|
||||
|
||||
if { ${l1} == 12 } {
|
||||
if { ${l1} == 18 } {
|
||||
puts "OK: Good edge number"
|
||||
} else {
|
||||
puts "Error: Bad edge number"
|
||||
}
|
||||
|
||||
if { ${l2} == 12 } {
|
||||
if { ${l2} == 18 } {
|
||||
puts "OK: Good face number"
|
||||
} else {
|
||||
puts "Error: Bad face number"
|
||||
|
Loading…
x
Reference in New Issue
Block a user