mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
1) BRepMesh_FastDiscretFace.cxx: - exclude planes from procedure of inserting internal points. - localize declaration of the container aNewVertices in each method where it is needed. - correct the logic of the method insertInternalVerticesOther, so that to separate the processes of removing extra points and addition of new points in different cycles, thus making the code more clear and in addition stable. - insert useful output of intermediate mesh to a file in control() method for debug purposes (with definition DEBUG_MESH). 2) Add global functions MeshTest_DrawTriangles and MeshTest_DrawLinks to draw mesh data in debug session. 3) BRepMesh_FastDiscret: - in the method Add calculations of deflections have been simplified for non-relative mode. - replace the attribute MinDist with Deflection in EdgeAttributes structure. Correct its computation so that later to store this value as deflection of the polygon. 4) Make protection against exception in the method BRepMesh_Delaun::addTriangle() when an added triangle creates a third connection of a mesh edge. 5) BRepMesh_EdgeTessellator.cxx, BRepMesh_EdgeTessellationExtractor.cxx: use Geom2dAdaptor_Curve in order to use b-spline cache while computing value on a curve. 6) In BndLib_Box2dCurve::PerformBSpline, avoid creating new b-spline in case of requested parameter range differ from natural bounds insignificantly. 7) In GeomAdaptor classes, postpone building of cache till the time of its actual usage. So, creation of an adapter to compute intervals of continuity does not lead to creation of internal cache. 8) In the methods BRepAdaptor_Curve::Bezier and BSpline do not call Transformed() if transformation is identity. 9) In the classes Geom_BSplineCurve, Geom_BSplineSurface, Geom_BezierCurve, Geom_BezierSurface, Geom2d_BSplineCurve, Geom2d_BezierCurve change the method Pole() to return the point by const reference. 10) In CPnts_AbscissaPoint.cxx, compute derivative by D1 instead of DN to make use of b-spline cache. 11) Change test cases to actual state: - Number of triangles/nodes can grow due to more accurate work with deflection of edges. Now the edge is tessellated using its own tolerance instead of maximal tolerance of all shapes in the face. - Accept new numbers of mesh errors (free links, free nodes) for really bad shapes. - Correct the test "bugs/mesh/bug25612" to produce stable result. - Disable redundant checks in test cases bug25378* (lower limit for computation time). - Speed up iso-lines computation for offset of bspline surfaces. For that use adaptor instead of original surface in evaluator of approximation. - Add output of polylines for debug of insertInternalVerticesOther(). Reference data in test case bugs\moddata_2\bug453_3 have been changed to be close to expected theoretical values. This makes the test give stable result on different platforms.
195 lines
8.0 KiB
C++
195 lines
8.0 KiB
C++
// Copyright (c) 2013 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 _BRepMesh_FastDiscretFace_HeaderFile
|
|
#define _BRepMesh_FastDiscretFace_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
#include <BRepMesh_FastDiscretFace.hxx>
|
|
#include <BRepMesh_DataStructureOfDelaun.hxx>
|
|
#include <BRepMesh.hxx>
|
|
#include <BRepMesh_FaceAttribute.hxx>
|
|
#include <Standard_Transient.hxx>
|
|
#include <TopTools_MutexForShapeProvider.hxx>
|
|
#include <TopTools_DataMapOfShapeReal.hxx>
|
|
#include <BRepMesh_Delaun.hxx>
|
|
#include <BRepMesh_Triangle.hxx>
|
|
#include <BRepMesh_Classifier.hxx>
|
|
#include <ElSLib.hxx>
|
|
|
|
class BRepMesh_DataStructureOfDelaun;
|
|
class BRepMesh_FaceAttribute;
|
|
class TopoDS_Face;
|
|
class TopoDS_Vertex;
|
|
class BRepAdaptor_HSurface;
|
|
class TopoDS_Edge;
|
|
class Poly_Triangulation;
|
|
class TopLoc_Location;
|
|
class gp_XY;
|
|
class gp_Pnt2d;
|
|
class BRepMesh_Edge;
|
|
class BRepMesh_Vertex;
|
|
class gp_Pnt;
|
|
|
|
//! Algorithm to mesh a face with respect of the frontier
|
|
//! the deflection and by option the shared components.
|
|
class BRepMesh_FastDiscretFace : public Standard_Transient
|
|
{
|
|
public:
|
|
|
|
//! Constructor.
|
|
//! @param theAngle deviation angle to be used for surface tessellation.
|
|
//! @param isInternalVerticesMode flag enabling/disabling internal
|
|
//! vertices mode.
|
|
//! @param isControlSurfaceDeflection enables/disables adaptive
|
|
//! reconfiguration of mesh.
|
|
Standard_EXPORT BRepMesh_FastDiscretFace(
|
|
const Standard_Real theAngle,
|
|
const Standard_Real theMinSize,
|
|
const Standard_Boolean isInternalVerticesMode,
|
|
const Standard_Boolean isControlSurfaceDeflection);
|
|
|
|
Standard_EXPORT void Perform(const Handle(BRepMesh_FaceAttribute)& theAttribute);
|
|
|
|
DEFINE_STANDARD_RTTIEXT(BRepMesh_FastDiscretFace,Standard_Transient)
|
|
|
|
private:
|
|
|
|
void add(const Handle(BRepMesh_FaceAttribute)& theAttribute);
|
|
void add(const TopoDS_Vertex& theVertex);
|
|
|
|
Standard_Real control(BRepMesh_Delaun& theMeshBuilder,
|
|
const Standard_Boolean theIsFirst);
|
|
|
|
//! Registers the given nodes in mesh data structure and
|
|
//! performs refinement of existing mesh.
|
|
//! @param theVertices nodes to be inserted.
|
|
//! @param theMeshBuilder initialized tool refining mesh
|
|
//! in respect to inserting nodes.
|
|
//! @return TRUE if vertices were been inserted, FALSE elewhere.
|
|
Standard_Boolean addVerticesToMesh(
|
|
const BRepMesh::ListOfVertex& theVertices,
|
|
BRepMesh_Delaun& theMeshBuilder);
|
|
|
|
//! Calculates nodes lying on face's surface and inserts them to a mesh.
|
|
//! @param theMeshBuilder initialized tool refining mesh
|
|
//! in respect to inserting nodes.
|
|
void insertInternalVertices(BRepMesh_Delaun& theMeshBuilder);
|
|
|
|
//! Calculates nodes lying on spherical surface.
|
|
//! @param theNewVertices list of vertices to be extended and added to mesh.
|
|
void insertInternalVerticesSphere(BRepMesh::ListOfVertex& theNewVertices);
|
|
|
|
//! Calculates nodes lying on cylindrical surface.
|
|
//! @param theNewVertices list of vertices to be extended and added to mesh.
|
|
void insertInternalVerticesCylinder(BRepMesh::ListOfVertex& theNewVertices);
|
|
|
|
//! Calculates nodes lying on conical surface.
|
|
//! @param theNewVertices list of vertices to be extended and added to mesh.
|
|
void insertInternalVerticesCone(BRepMesh::ListOfVertex& theNewVertices);
|
|
|
|
//! Calculates nodes lying on toroidal surface.
|
|
//! @param theNewVertices list of vertices to be extended and added to mesh.
|
|
void insertInternalVerticesTorus(BRepMesh::ListOfVertex& theNewVertices);
|
|
|
|
//! Calculates nodes lying on custom-type surface.
|
|
//! @param theNewVertices list of vertices to be extended and added to mesh.
|
|
void insertInternalVerticesOther(BRepMesh::ListOfVertex& theNewVertices);
|
|
|
|
//! Template method trying to insert new internal vertex corresponded to
|
|
//! the given 2d point. Calculates 3d position analytically using the given
|
|
//! surface.
|
|
//! @param thePnt2d 2d point to be inserted to the list.
|
|
//! @param theAnalyticSurface analytic surface to calculate 3d point.
|
|
//! @param[out] theVertices list of vertices to be updated.
|
|
template<class AnalyticSurface>
|
|
void tryToInsertAnalyticVertex(const gp_Pnt2d& thePnt2d,
|
|
const AnalyticSurface& theAnalyticSurface,
|
|
BRepMesh::ListOfVertex& theVertices)
|
|
{
|
|
const BRepMesh::HClassifier& aClassifier = myAttribute->ChangeClassifier();
|
|
if (aClassifier->Perform(thePnt2d) != TopAbs_IN)
|
|
return;
|
|
|
|
gp_Pnt aPnt;
|
|
ElSLib::D0(thePnt2d.X(), thePnt2d.Y(), theAnalyticSurface, aPnt);
|
|
insertVertex(aPnt, thePnt2d.Coord(), theVertices);
|
|
}
|
|
|
|
//! Creates new vertex with the given parameters.
|
|
//! @param thePnt3d 3d point corresponded to the vertex.
|
|
//! @param theUV UV point corresponded to the vertex.
|
|
//! @param[out] theVertices list of vertices to be updated.
|
|
void insertVertex(const gp_Pnt& thePnt3d,
|
|
const gp_XY& theUV,
|
|
BRepMesh::ListOfVertex& theVertices);
|
|
|
|
//! Stores mesh into the face (without internal edges).
|
|
void commitSurfaceTriangulation();
|
|
|
|
//! Performs initialization of data structure using existing data.
|
|
void initDataStructure();
|
|
|
|
//! Adds new link to the mesh data structure.
|
|
//! Movability of the link and order of nodes depend on orientation parameter.
|
|
void addLinkToMesh(const Standard_Integer theFirstNodeId,
|
|
const Standard_Integer theLastNodeId,
|
|
const TopAbs_Orientation theOrientation);
|
|
|
|
//! Inserts new node into a mesh in case if smoothed region build
|
|
//! using the given node has better deflection metrics than source state.
|
|
//! @param thePnt3d 3d point corresponded to the vertex.
|
|
//! @param theUV UV point corresponded to the vertex.
|
|
//! @param isDeflectionCheckOnly if TRUE new node will not be added to a mesh
|
|
//! even if deflection parameter is better.
|
|
//! @param theTriangleDeflection deflection of a triangle from real geometry.
|
|
//! @param theFaceDeflection deflection to be achieved.
|
|
//! @param theCircleTool tool used for fast extraction of triangles
|
|
//! touched by the given point.
|
|
//! @param[out] theVertices list of vertices to be updated.
|
|
//! @param[in out] theMaxTriangleDeflection maximal deflection of a mesh.
|
|
//! @return TRUE in case if the given deflection of triangle is fine and
|
|
//! there is no necessity to insert new node or new node was being inserted
|
|
//! successfully, FALSE in case if new configuration is better but
|
|
//! isDeflectionCheckOnly flag is set.
|
|
Standard_Boolean checkDeflectionAndInsert(
|
|
const gp_Pnt& thePnt3d,
|
|
const gp_XY& theUV,
|
|
const Standard_Boolean isDeflectionCheckOnly,
|
|
const Standard_Real theTriangleDeflection,
|
|
const Standard_Real theFaceDeflection,
|
|
const BRepMesh_CircleTool& theCircleTool,
|
|
BRepMesh::ListOfVertex& theVertices,
|
|
Standard_Real& theMaxTriangleDeflection,
|
|
const Handle(NCollection_IncAllocator)& theTempAlloc);
|
|
|
|
private:
|
|
|
|
Standard_Real myAngle;
|
|
Standard_Boolean myInternalVerticesMode;
|
|
BRepMesh::IMapOfReal myUParam;
|
|
BRepMesh::IMapOfReal myVParam;
|
|
|
|
// Fast access to attributes of current face
|
|
Handle(BRepMesh_FaceAttribute) myAttribute;
|
|
Handle(BRepMesh_DataStructureOfDelaun) myStructure;
|
|
|
|
Standard_Real myMinSize;
|
|
Standard_Boolean myIsControlSurfaceDeflection;
|
|
};
|
|
|
|
DEFINE_STANDARD_HANDLE (BRepMesh_FastDiscretFace, Standard_Transient)
|
|
|
|
#endif
|