mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-01 10:26:12 +03:00
1.The algorithm searching the section in the corner (ChooseSection) is modified to be able to find simple cases with rather big tolerance. 2. The constructor of BRepFill_Section is modified: now it removes locations in the shape of section like it was done in BRepFill_Pipe. 3. Correction of U-edges by Same Parameter has been added to the method BRepFill_Sweep::Build.
117 lines
3.8 KiB
C++
117 lines
3.8 KiB
C++
// Created on: 2003-10-21
|
|
// Created by: Mikhail KLOKOV
|
|
// Copyright (c) 2003-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.
|
|
|
|
#ifndef _BRepFill_TrimShellCorner_HeaderFile
|
|
#define _BRepFill_TrimShellCorner_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_DefineAlloc.hxx>
|
|
#include <Standard_Handle.hxx>
|
|
|
|
#include <BRepFill_TransitionStyle.hxx>
|
|
#include <gp_Ax2.hxx>
|
|
#include <TopoDS_Shape.hxx>
|
|
#include <TopoDS_Wire.hxx>
|
|
#include <TopoDS_Face.hxx>
|
|
#include <TopTools_HArray2OfShape.hxx>
|
|
#include <Standard_Boolean.hxx>
|
|
#include <TopTools_DataMapOfShapeListOfShape.hxx>
|
|
#include <TopTools_ListOfShape.hxx>
|
|
#include <BOPDS_PDS.hxx>
|
|
class gp_Ax2;
|
|
class TopoDS_Face;
|
|
class TopoDS_Wire;
|
|
class TopoDS_Shape;
|
|
|
|
|
|
//! Trims sets of faces in the corner to make proper parts of pipe
|
|
class BRepFill_TrimShellCorner
|
|
{
|
|
public:
|
|
|
|
DEFINE_STANDARD_ALLOC
|
|
|
|
|
|
//! Constructor: takes faces to intersect,
|
|
//! type of transition (it can be RightCorner or RoundCorner)
|
|
//! and axis of bisector plane
|
|
Standard_EXPORT BRepFill_TrimShellCorner(const Handle(TopTools_HArray2OfShape)& theFaces,
|
|
const BRepFill_TransitionStyle theTransition,
|
|
const gp_Ax2& theAxeOfBisPlane);
|
|
|
|
Standard_EXPORT void AddBounds (const Handle(TopTools_HArray2OfShape)& Bounds);
|
|
|
|
Standard_EXPORT void AddUEdges (const Handle(TopTools_HArray2OfShape)& theUEdges);
|
|
|
|
Standard_EXPORT void Perform();
|
|
|
|
Standard_EXPORT Standard_Boolean IsDone() const;
|
|
|
|
Standard_EXPORT Standard_Boolean HasSection() const;
|
|
|
|
Standard_EXPORT void Modified (const TopoDS_Shape& S, TopTools_ListOfShape& theModified);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
Standard_Boolean MakeFacesSec(const Standard_Integer theIndex,
|
|
const BOPDS_PDS& theDS,
|
|
const Standard_Integer theFaceIndex1,
|
|
const Standard_Integer theFaceIndex2,
|
|
const Standard_Integer theSSInterfIndex);
|
|
|
|
Standard_Boolean MakeFacesNonSec(const Standard_Integer theIndex,
|
|
const BOPDS_PDS& theDS,
|
|
const Standard_Integer theFaceIndex1,
|
|
const Standard_Integer theFaceIndex2);
|
|
|
|
Standard_Boolean ChooseSection(const TopoDS_Shape& Comp,
|
|
const TopoDS_Vertex& theFirstVertex,
|
|
const TopoDS_Vertex& theLastVertex,
|
|
TopoDS_Shape& resWire,
|
|
gp_Pln& resPlane,
|
|
Standard_Boolean& IsSingular);
|
|
|
|
|
|
BRepFill_TransitionStyle myTransition;
|
|
gp_Ax2 myAxeOfBisPlane;
|
|
TopoDS_Shape myShape1;
|
|
TopoDS_Shape myShape2;
|
|
Handle(TopTools_HArray2OfShape) myBounds;
|
|
Handle(TopTools_HArray2OfShape) myUEdges;
|
|
Handle(TopTools_HArray2OfShape) myFaces;
|
|
Standard_Boolean myDone;
|
|
Standard_Boolean myHasSection;
|
|
TopTools_DataMapOfShapeListOfShape myHistMap;
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // _BRepFill_TrimShellCorner_HeaderFile
|