|
|
|
|
#ifndef MODELREFINE_H
|
|
|
|
|
#define MODELREFINE_H
|
|
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
#include <map>
|
|
|
|
|
#include <list>
|
|
|
|
|
#include <GeomAbs_SurfaceType.hxx>
|
|
|
|
|
#include <TopoDS_Shell.hxx>
|
|
|
|
|
#include <TopoDS_Face.hxx>
|
|
|
|
|
#include <TopoDS_Solid.hxx>
|
|
|
|
|
#include <TopoDS_Wire.hxx>
|
|
|
|
|
#include <TopoDS_Edge.hxx>
|
|
|
|
|
#include <TopTools_DataMapOfShapeListOfShape.hxx>
|
|
|
|
|
#include <TopTools_IndexedDataMapOfShapeListOfShape.hxx>
|
|
|
|
|
#include <TopTools_MapOfShape.hxx>
|
|
|
|
|
#include <TopTools_ListOfShape.hxx>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace ModelRefine
|
|
|
|
|
{
|
|
|
|
|
typedef std::vector<TopoDS_Face> FaceVectorType;
|
|
|
|
|
typedef std::vector<TopoDS_Edge> EdgeVectorType;
|
|
|
|
|
typedef std::vector<TopoDS_Shape> ShapeVectorType;
|
|
|
|
|
typedef std::pair<TopoDS_Shape, TopoDS_Shape> ShapePairType;
|
|
|
|
|
|
|
|
|
|
void getFaceEdges(const TopoDS_Face &face, EdgeVectorType &edges);
|
|
|
|
|
void boundaryEdges(const FaceVectorType &faces, EdgeVectorType &edgesOut);
|
|
|
|
|
TopoDS_Shell removeFaces(const TopoDS_Shell &shell, const FaceVectorType &faces);
|
|
|
|
|
|
|
|
|
|
class FaceTypedBase
|
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
FaceTypedBase(){}
|
|
|
|
|
protected:
|
|
|
|
|
FaceTypedBase(const GeomAbs_SurfaceType &typeIn){surfaceType = typeIn;}
|
|
|
|
|
public:
|
|
|
|
|
virtual bool isEqual(const TopoDS_Face &faceOne, const TopoDS_Face &faceTwo) const = 0;
|
|
|
|
|
virtual GeomAbs_SurfaceType getType() const = 0;
|
|
|
|
|
virtual TopoDS_Face buildFace(const FaceVectorType &faces) const = 0;
|
|
|
|
|
|
|
|
|
|
static GeomAbs_SurfaceType getFaceType(const TopoDS_Face &faceIn);
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
virtual void boundarySplit(const FaceVectorType &facesIn, std::vector<EdgeVectorType> &boundariesOut) const;
|
|
|
|
|
GeomAbs_SurfaceType surfaceType;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class FaceTypedPlane : public FaceTypedBase
|
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
FaceTypedPlane();
|
|
|
|
|
public:
|
|
|
|
|
virtual bool isEqual(const TopoDS_Face &faceOne, const TopoDS_Face &faceTwo) const;
|
|
|
|
|
virtual GeomAbs_SurfaceType getType() const;
|
|
|
|
|
virtual TopoDS_Face buildFace(const FaceVectorType &faces) const;
|
|
|
|
|
friend FaceTypedPlane& getPlaneObject();
|
|
|
|
|
};
|
|
|
|
|
FaceTypedPlane& getPlaneObject();
|
|
|
|
|
|
|
|
|
|
class FaceTypedCylinder : public FaceTypedBase
|
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
FaceTypedCylinder();
|
|
|
|
|
public:
|
|
|
|
|
virtual bool isEqual(const TopoDS_Face &faceOne, const TopoDS_Face &faceTwo) const;
|
|
|
|
|
virtual GeomAbs_SurfaceType getType() const;
|
|
|
|
|
virtual TopoDS_Face buildFace(const FaceVectorType &faces) const;
|
|
|
|
|
friend FaceTypedCylinder& getCylinderObject();
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
virtual void boundarySplit(const FaceVectorType &facesIn, std::vector<EdgeVectorType> &boundariesOut) const;
|
|
|
|
|
};
|
|
|
|
|
FaceTypedCylinder& getCylinderObject();
|
|
|
|
|
|
|
|
|
|
class FaceTypeSplitter
|
|
|
|
|
{
|
|
|
|
|
typedef std::map<GeomAbs_SurfaceType, FaceVectorType> SplitMapType;
|
|
|
|
|
public:
|
|
|
|
|
FaceTypeSplitter(){}
|
|
|
|
|
void addShell(const TopoDS_Shell &shellIn);
|
|
|
|
|
void registerType(const GeomAbs_SurfaceType &type);
|
|
|
|
|
bool hasType(const GeomAbs_SurfaceType &type) const;
|
|
|
|
|
void split();
|
|
|
|
|
const FaceVectorType& getTypedFaceVector(const GeomAbs_SurfaceType &type) const;
|
|
|
|
|
private:
|
|
|
|
|
SplitMapType typeMap;
|
|
|
|
|
TopoDS_Shell shell;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class FaceAdjacencySplitter
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
FaceAdjacencySplitter(const TopoDS_Shell &shell);
|
|
|
|
|
void split(const FaceVectorType &facesIn);
|
|
|
|
|
std::size_t getGroupCount() const {return adjacencyArray.size();}
|
|
|
|
|
const FaceVectorType& getGroup(const std::size_t &index) const {return adjacencyArray[index];}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
FaceAdjacencySplitter(){}
|
|
|
|
|
void recursiveFind(const TopoDS_Face &face, FaceVectorType &outVector);
|
|
|
|
|
std::vector<FaceVectorType> adjacencyArray;
|
|
|
|
|
TopTools_MapOfShape processedMap;
|
|
|
|
|
TopTools_MapOfShape facesInMap;
|
|
|
|
|
|
|
|
|
|
TopTools_IndexedDataMapOfShapeListOfShape faceToEdgeMap;
|
|
|
|
|
TopTools_IndexedDataMapOfShapeListOfShape edgeToFaceMap;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class FaceEqualitySplitter
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
FaceEqualitySplitter(){}
|
|
|
|
|
void split(const FaceVectorType &faces, FaceTypedBase *object);
|
|
|
|
|
std::size_t getGroupCount() const {return equalityVector.size();}
|
|
|
|
|
const FaceVectorType& getGroup(const std::size_t &index) const {return equalityVector[index];}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
std::vector<FaceVectorType> equalityVector;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class FaceUniter
|
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
FaceUniter(){}
|
|
|
|
|
public:
|
|
|
|
|
FaceUniter(const TopoDS_Shell &shellIn);
|
|
|
|
|
bool process();
|
|
|
|
|
const TopoDS_Shell& getShell() const {return workShell;}
|
|
|
|
|
bool isModified(){return modifiedSignal;}
|
|
|
|
|
const std::vector<ShapePairType>& getModifiedShapes() const
|
|
|
|
|
{return modifiedShapes;}
|
|
|
|
|
const ShapeVectorType& getDeletedShapes() const
|
|
|
|
|
{return deletedShapes;}
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
TopoDS_Shell workShell;
|
|
|
|
|
std::vector<FaceTypedBase *> typeObjects;
|
|
|
|
|
std::vector<ShapePairType> modifiedShapes;
|
|
|
|
|
ShapeVectorType deletedShapes;
|
|
|
|
|
bool modifiedSignal;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* excerpt from GeomAbs_SurfaceType.hxx
|
|
|
|
|
enum GeomAbs_SurfaceType {
|
|
|
|
|
GeomAbs_Plane,
|
|
|
|
|
GeomAbs_Cylinder,
|
|
|
|
|
GeomAbs_Cone,
|
|
|
|
|
GeomAbs_Sphere,
|
|
|
|
|
GeomAbs_Torus,
|
|
|
|
|
GeomAbs_BezierSurface,
|
|
|
|
|
GeomAbs_BSplineSurface,
|
|
|
|
|
GeomAbs_SurfaceOfRevolution,
|
|
|
|
|
GeomAbs_SurfaceOfExtrusion,
|
|
|
|
|
GeomAbs_OffsetSurface,
|
|
|
|
|
GeomAbs_OtherSurface
|
|
|
|
|
};
|
|
|
|
|
*/
|
|
|
|
|
namespace OCC {
|
|
|
|
|
class BRepBuilderAPI_RefineModel : public BRepBuilderAPI_MakeShape
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
BRepBuilderAPI_RefineModel(const TopoDS_Shape&);
|
|
|
|
|
void Build();
|
|
|
|
|
const TopTools_ListOfShape& Modified(const TopoDS_Shape& S);
|
|
|
|
|
Standard_Boolean IsDeleted(const TopoDS_Shape& S);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void LogModifications(const ModelRefine::FaceUniter& uniter);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
TopTools_DataMapOfShapeListOfShape myModified;
|
|
|
|
|
TopTools_ListOfShape myEmptyList;
|
|
|
|
|
TopTools_ListOfShape myDeleted;
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // MODELREFINE_H
|