Files
OCCT/src/BRepTools/BRepTools_Substitution.cxx
abv d5f74e42d6 0024624: Lost word in license statement in source files
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast
Wrong license statements corrected in several files.
Copyright and license statements added in XSD and GLSL files.
Copyright year updated in some files.
Obsolete documentation files removed from DrawResources.
2014-02-20 16:15:17 +04:00

171 lines
5.5 KiB
C++

// Created on: 1995-03-28
// Created by: Yves FRICAUD
// Copyright (c) 1995-1999 Matra Datavision
// 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 <BRepTools_Substitution.ixx>
#include <TopoDS.hxx>
#include <TopoDS_Iterator.hxx>
#include <TopTools_DataMapIteratorOfDataMapOfShapeListOfShape.hxx>
#include <TopTools_ListIteratorOfListOfShape.hxx>
#include <BRep_Builder.hxx>
#include <Standard_ConstructionError.hxx>
#include <BRep_Tool.hxx>
//=======================================================================
//function : BRepTools_Substitution
//purpose :
//=======================================================================
BRepTools_Substitution::BRepTools_Substitution()
{}
//=======================================================================
//function : Clear
//purpose :
//=======================================================================
void BRepTools_Substitution::Clear()
{
myMap.Clear();
}
//=======================================================================
//function : Substitute
//purpose :
//=======================================================================
void BRepTools_Substitution::Substitute(const TopoDS_Shape& OS,
const TopTools_ListOfShape& NS)
{
Standard_ConstructionError_Raise_if
(IsCopied(OS),"BRepTools_CutClue::Substitute");
myMap.Bind(OS,NS);
}
//=======================================================================
//function : Build
//purpose :
//=======================================================================
void BRepTools_Substitution::Build(const TopoDS_Shape& S)
{
if (IsCopied(S)) return;
BRep_Builder B;
TopoDS_Iterator iteS (S.Oriented(TopAbs_FORWARD));
Standard_Boolean IsModified = Standard_False;
Standard_Boolean HasSubShape = Standard_False;
//------------------------------------------
// look S is modified and build subshapes.
//------------------------------------------
for (; iteS.More(); iteS.Next()) {
const TopoDS_Shape& SS = iteS.Value();
Build (SS);
if (IsCopied(SS)) {
IsModified = Standard_True;
}
}
TopoDS_Shape NewS = S.Oriented(TopAbs_FORWARD);
if (IsModified) {
//----------------------------------------
// Rebuild S.
//------------------------------------------
NewS.EmptyCopy();
if (NewS.ShapeType() == TopAbs_EDGE) {
Standard_Real f,l;
BRep_Tool::Range(TopoDS::Edge(S),f,l);
B.Range(TopoDS::Edge(NewS),f,l);
}
iteS.Initialize(S.Oriented(TopAbs_FORWARD));
//------------------------------------------
// Add the copy of subshapes of S to NewS.
//------------------------------------------
for ( ;iteS.More(); iteS.Next()) {
TopAbs_Orientation OS = iteS.Value().Orientation();
TopTools_ListOfShape L;
L = myMap(iteS.Value());
TopTools_ListIteratorOfListOfShape iteL(L);
for ( ; iteL.More(); iteL.Next()){
const TopoDS_Shape NSS = iteL.Value();
//------------------------------------------
// Rebuild NSS and add its copy to NewS.
//------------------------------------------
Build(NSS);
const TopTools_ListOfShape& NL = myMap(NSS);
TopAbs_Orientation NewOr = TopAbs::Compose(OS,NSS.Orientation());
TopTools_ListIteratorOfListOfShape iteNL(NL);
for ( ; iteNL.More(); iteNL.Next()){
B.Add (NewS,iteNL.Value().Oriented(NewOr));
HasSubShape = Standard_True;
}
}
}
if (!HasSubShape) {
if (NewS.ShapeType() == TopAbs_WIRE || NewS.ShapeType() == TopAbs_SHELL ||
NewS.ShapeType() == TopAbs_SOLID || NewS.ShapeType() == TopAbs_COMPOUND)
//----------------------------------------------------------------
// Wire,Solid,Shell,Compound mut have subshape else they disapear
//---------------------------------------------------------------
NewS.Nullify();
}
}
TopTools_ListOfShape L;
//-------------------------------------------------------
// NewS has the same orientation than S in its ancestors
// so NewS is bound with orientation FORWARD.
//-------------------------------------------------------
if (!NewS.IsNull()) L.Append(NewS.Oriented(TopAbs_FORWARD));
Substitute(S, L);
}
//=======================================================================
//function : IsCopied
//purpose :
//=======================================================================
Standard_Boolean BRepTools_Substitution::IsCopied(const TopoDS_Shape& S) const
{
if (myMap.IsBound(S)) {
if (myMap (S).IsEmpty()) return Standard_True;
else
return !S.IsSame(myMap(S).First());
}
else
return Standard_False;
}
//=======================================================================
//function : Copy
//purpose :
//=======================================================================
const TopTools_ListOfShape& BRepTools_Substitution::Copy (const TopoDS_Shape& S)
const
{
Standard_NoSuchObject_Raise_if(!IsCopied(S),"BRepTools_Substitution::Copy");
return myMap(S);
}