mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-11 10:10:56 +08:00
124 lines
4.0 KiB
C++
Executable File
124 lines
4.0 KiB
C++
Executable File
// Created on: 1996-12-30
|
|
// Created by: Stagiaire Mary FABIEN
|
|
// Copyright (c) 1996-1999 Matra Datavision
|
|
// Copyright (c) 1999-2012 OPEN CASCADE SAS
|
|
//
|
|
// The content of this file is subject to the Open CASCADE Technology Public
|
|
// License Version 6.5 (the "License"). You may not use the content of this file
|
|
// except in compliance with the License. Please obtain a copy of the License
|
|
// at http://www.opencascade.org and read it completely before using this file.
|
|
//
|
|
// The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
|
|
// main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
|
|
//
|
|
// The Original Code and all software distributed under the License is
|
|
// distributed on an "AS IS" basis, without warranty of any kind, and the
|
|
// Initial Developer hereby disclaims all such warranties, including without
|
|
// limitation, any warranties of merchantability, fitness for a particular
|
|
// purpose or non-infringement. Please see the License for the specific terms
|
|
// and conditions governing the rights and limitations under the License.
|
|
|
|
|
|
|
|
#include <BRepBuilderAPI_GTransform.ixx>
|
|
|
|
#include <TopTools_ListIteratorOfListOfShape.hxx>
|
|
#include <BRepTools_GTrsfModification.hxx>
|
|
#include <BRepTools_NurbsConvertModification.hxx>
|
|
#include <BRepBuilderAPI_NurbsConvert.hxx>
|
|
#include <gp.hxx>
|
|
|
|
#include <TopTools_ListOfShape.hxx>
|
|
#include <BRep_Builder.hxx>
|
|
#include <TopoDS.hxx>
|
|
//=======================================================================
|
|
//function : BRepBuilderAPI_GTransform
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
BRepBuilderAPI_GTransform::BRepBuilderAPI_GTransform (const gp_GTrsf& T) :
|
|
myGTrsf(T)
|
|
{
|
|
myModification = new BRepTools_GTrsfModification(T);
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : BRepBuilderAPI_GTransform
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
BRepBuilderAPI_GTransform::BRepBuilderAPI_GTransform (const TopoDS_Shape& S,
|
|
const gp_GTrsf& T,
|
|
const Standard_Boolean Copy) :
|
|
myGTrsf(T)
|
|
{
|
|
myModification = new BRepTools_GTrsfModification(T);
|
|
Perform(S,Copy);
|
|
}
|
|
|
|
|
|
|
|
//=======================================================================
|
|
//function : Perform
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
void BRepBuilderAPI_GTransform::Perform(const TopoDS_Shape& S,
|
|
const Standard_Boolean Copy)
|
|
{
|
|
BRepBuilderAPI_NurbsConvert nc;
|
|
nc.Perform(S, Copy);
|
|
myHist.Add(S,nc);
|
|
TopoDS_Shape Slocal = nc.Shape();
|
|
Handle(BRepTools_GTrsfModification) theModif =
|
|
Handle(BRepTools_GTrsfModification)::DownCast(myModification);
|
|
theModif->GTrsf() = myGTrsf;
|
|
DoModif(Slocal,myModification);
|
|
// myHist.Filter (Shape());
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : Modified
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const TopTools_ListOfShape& BRepBuilderAPI_GTransform::Modified
|
|
(const TopoDS_Shape& F)
|
|
{
|
|
myGenerated.Clear();
|
|
const TopTools_DataMapOfShapeListOfShape& M = myHist.Modification();
|
|
if (M.IsBound(F)) {
|
|
TopTools_ListOfShape Li;
|
|
TopTools_ListIteratorOfListOfShape itL(M(F));
|
|
for (;itL.More();itL.Next())
|
|
Li.Assign(BRepBuilderAPI_ModifyShape::Modified(itL.Value()));
|
|
}
|
|
return myGenerated;
|
|
}
|
|
|
|
|
|
//=======================================================================
|
|
//function : ModifiedShape
|
|
//purpose :
|
|
//=======================================================================
|
|
|
|
const TopoDS_Shape& BRepBuilderAPI_GTransform::ModifiedShape
|
|
(const TopoDS_Shape& S) const
|
|
{
|
|
const TopTools_DataMapOfShapeListOfShape &aMapModif = myHist.Modification();
|
|
TopoDS_Shape aShape = S;
|
|
|
|
if (aMapModif.IsBound(S)) {
|
|
const TopTools_ListOfShape &aListModShape = aMapModif(S);
|
|
Standard_Integer aNbShapes = aListModShape.Extent();
|
|
|
|
if (aNbShapes > 0)
|
|
aShape = aListModShape.First();
|
|
}
|
|
|
|
return BRepBuilderAPI_ModifyShape::ModifiedShape(aShape);
|
|
}
|
|
|