mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-24 07:52:46 +08:00
Removed tight connections between data structures, auxiliary tools and algorithms in order to create extensible solution, easy for maintenance and improvements; Code is separated on several functional units responsible for specific operation for the sake of simplification of debugging and readability; Introduced new data structures enabling possibility to manipulate discrete model of particular entity (edge, wire, face) in order to perform computations locally instead of processing an entire model. The workflow of updated component can be divided on six parts: * Creation of model data structure: source TopoDS_Shape passed to algorithm is analyzed and exploded on faces and edges. For each topological entity corresponding reflection is created in data model. Note that underlying algorithms use data model as input and access it via common interface which allows user to create custom data model with necessary dependencies between particular entities; * Discretize edges 3D & 2D curves: 3D curve as well as associated set of 2D curves of each model edge is discretized in order to create coherent skeleton used as a base in faces meshing process. In case if some edge of source shape already contains polygonal data which suites specified parameters, it is extracted from shape and stored to the model as is. Each edge is processed separately, adjacency is not taken into account; * Heal discrete model: source TopoDS_Shape can contain problems, such as open-wire or self-intersections, introduced during design, exchange or modification of model. In addition, some problems like self-intersections can be introduced by roughly discretized edges. This stage is responsible for analysis of discrete model in order to detect and repair faced problems or refuse model’s part for further processing in case if problem cannot be solved; * Preprocess discrete model: defines actions specific for implemented approach to be performed before meshing of faces. By default, iterates over model faces and checks consistency of existing triangulations. Cleans topological faces and its adjacent edges from polygonal data in case of inconsistency or marks face of discrete model as not required for computation; * Discretize faces: represents core part performing mesh generation for particular face based on 2D discrete data related to processing face. Caches polygonal data associated with face’s edges in data model for further processing and stores generated mesh to TopoDS_Face; * Postprocess discrete model: defines actions specific for implemented approach to be performed after meshing of faces. By default, stores polygonal data obtained on previous stage to TopoDS_Edge objects of source model. Component is now spread over IMeshData, IMeshTools, BRepMeshData and BRepMesh units. <!break> 1. Extend "tricheck" DRAW-command in order to find degenerated triangles. 2. Class BRepMesh_FastDiscret::Parameters has been declared as deprecated. 3. NURBS range splitter: do not split intervals without necessity. Intervals are split only in case if it is impossible to compute normals directly on intervals. 4. Default value of IMeshTools_Parameters::MinSize has been changed. New value is equal to 0.1*Deflection. 5. Correction of test scripts: 1) perf mesh bug27119: requested deflection is increased from 1e-6 to 1e-5 to keep reasonable performance (but still reproducing original issue) 2) bugs mesh bug26692_1, 2: make snapshot of triangulation instead of wireframe (irrelevant) Correction in upgrade guide.
167 lines
4.7 KiB
C++
167 lines
4.7 KiB
C++
// Created on: 2016-04-07
|
|
// Copyright (c) 2016 OPEN CASCADE SAS
|
|
// Created by: Oleg AGASHIN
|
|
//
|
|
// 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 _IMeshData_Edge_HeaderFile
|
|
#define _IMeshData_Edge_HeaderFile
|
|
|
|
#include <IMeshData_TessellatedShape.hxx>
|
|
#include <IMeshData_StatusOwner.hxx>
|
|
#include <Standard_Type.hxx>
|
|
#include <TopoDS_Edge.hxx>
|
|
#include <TopoDS.hxx>
|
|
#include <IMeshData_Curve.hxx>
|
|
#include <IMeshData_PCurve.hxx>
|
|
#include <IMeshData_Types.hxx>
|
|
#include <BRep_Tool.hxx>
|
|
|
|
class IMeshData_Face;
|
|
|
|
//! Interface class representing discrete model of an edge.
|
|
class IMeshData_Edge : public IMeshData_TessellatedShape, public IMeshData_StatusOwner
|
|
{
|
|
public:
|
|
|
|
//! Destructor.
|
|
Standard_EXPORT virtual ~IMeshData_Edge()
|
|
{
|
|
}
|
|
|
|
//! Returns TopoDS_Edge attached to model.
|
|
inline const TopoDS_Edge& GetEdge () const
|
|
{
|
|
return TopoDS::Edge (GetShape ());
|
|
}
|
|
|
|
//! Returns number of pcurves assigned to current edge.
|
|
Standard_EXPORT virtual Standard_Integer PCurvesNb () const = 0;
|
|
|
|
//! Adds discrete pcurve for the specifed discrete face.
|
|
Standard_EXPORT virtual const IMeshData::IPCurveHandle& AddPCurve (
|
|
const IMeshData::IFacePtr& theDFace,
|
|
const TopAbs_Orientation theOrientation) = 0;
|
|
|
|
//! Returns pcurve for the specified discrete face.
|
|
Standard_EXPORT virtual const IMeshData::IPCurveHandle& GetPCurve (
|
|
const IMeshData::IFacePtr& theDFace,
|
|
const TopAbs_Orientation theOrientation) const = 0;
|
|
|
|
//! Returns pcurve with the given index.
|
|
Standard_EXPORT virtual const IMeshData::IPCurveHandle& GetPCurve (
|
|
const Standard_Integer theIndex) const = 0;
|
|
|
|
//! Clears curve and all pcurves assigned to the edge from discretization.
|
|
inline void Clear(const Standard_Boolean isKeepEndPoints)
|
|
{
|
|
myCurve->Clear(isKeepEndPoints);
|
|
for (Standard_Integer aPCurveIt = 0; aPCurveIt < PCurvesNb(); ++aPCurveIt)
|
|
{
|
|
GetPCurve(aPCurveIt)->Clear(isKeepEndPoints);
|
|
}
|
|
}
|
|
|
|
//! Returns true in case if the edge is free one, i.e. it does not have pcurves.
|
|
inline Standard_Boolean IsFree () const
|
|
{
|
|
return (PCurvesNb () == 0);
|
|
}
|
|
|
|
//! Sets 3d curve associated with current edge.
|
|
inline void SetCurve (const IMeshData::ICurveHandle& theCurve)
|
|
{
|
|
myCurve = theCurve;
|
|
}
|
|
|
|
//! Returns 3d curve associated with current edge.
|
|
inline const IMeshData::ICurveHandle& GetCurve () const
|
|
{
|
|
return myCurve;
|
|
}
|
|
|
|
//! Gets value of angular deflection for the discrete model.
|
|
inline Standard_Real GetAngularDeflection () const
|
|
{
|
|
return myAngDeflection;
|
|
}
|
|
|
|
//! Sets value of angular deflection for the discrete model.
|
|
inline void SetAngularDeflection (const Standard_Real theValue)
|
|
{
|
|
myAngDeflection = theValue;
|
|
}
|
|
|
|
//! Returns same param flag.
|
|
//! By default equals to flag stored in topological shape.
|
|
inline Standard_Boolean GetSameParam () const
|
|
{
|
|
return mySameParam;
|
|
}
|
|
|
|
//! Updates same param flag.
|
|
inline void SetSameParam (const Standard_Boolean theValue)
|
|
{
|
|
mySameParam = theValue;
|
|
}
|
|
|
|
//! Returns same range flag.
|
|
//! By default equals to flag stored in topological shape.
|
|
inline Standard_Boolean GetSameRange () const
|
|
{
|
|
return mySameRange;
|
|
}
|
|
|
|
//! Updates same range flag.
|
|
inline void SetSameRange (const Standard_Boolean theValue)
|
|
{
|
|
mySameRange = theValue;
|
|
}
|
|
|
|
//! Returns degenerative flag.
|
|
//! By default equals to flag stored in topological shape.
|
|
inline Standard_Boolean GetDegenerated () const
|
|
{
|
|
return myDegenerated;
|
|
}
|
|
|
|
//! Updates degenerative flag.
|
|
inline void SetDegenerated (const Standard_Boolean theValue)
|
|
{
|
|
myDegenerated = theValue;
|
|
}
|
|
|
|
DEFINE_STANDARD_RTTI_INLINE(IMeshData_Edge, IMeshData_TessellatedShape)
|
|
|
|
protected:
|
|
|
|
//! Constructor.
|
|
//! Initializes empty model.
|
|
Standard_EXPORT IMeshData_Edge (const TopoDS_Edge& theEdge)
|
|
: IMeshData_TessellatedShape(theEdge),
|
|
mySameParam (BRep_Tool::SameParameter(theEdge)),
|
|
mySameRange (BRep_Tool::SameRange (theEdge)),
|
|
myDegenerated(BRep_Tool::Degenerated (theEdge)),
|
|
myAngDeflection(RealLast())
|
|
{
|
|
}
|
|
|
|
private:
|
|
|
|
Standard_Boolean mySameParam;
|
|
Standard_Boolean mySameRange;
|
|
Standard_Boolean myDegenerated;
|
|
Standard_Real myAngDeflection;
|
|
IMeshData::ICurveHandle myCurve;
|
|
};
|
|
|
|
#endif |