mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-08 18:40:55 +03:00
New parameter MinSize has been introduced to BRepMesh and GCPnts_TangentialDeflection; Check length of remaining part of curve for min size parameter instead of distance between two points to avoid large gaps in case highly distorted BSpline surfaces; Produce fine mesh for sphere and fix other surface; Test cases for issue CR25378 Correction of test cases for issue CR25378
91 lines
3.3 KiB
C++
91 lines
3.3 KiB
C++
// Created on: 2014-08-13
|
|
// Created by: Oleg AGASHIN
|
|
// Copyright (c) 2011-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 _BRepMesh_EdgeTessellator_HeaderFile
|
|
#define _BRepMesh_EdgeTessellator_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_DefineAlloc.hxx>
|
|
#include <BRepMesh.hxx>
|
|
#include <BRepMesh_IEdgeTool.hxx>
|
|
#include <BRepMesh_GeomTool.hxx>
|
|
#include <BRepMesh_FaceAttribute.hxx>
|
|
#include <Handle_Geom_Surface.hxx>
|
|
#include <Handle_Geom2d_Curve.hxx>
|
|
#include <Handle_BRepAdaptor_HSurface.hxx>
|
|
#include <BRepAdaptor_Curve.hxx>
|
|
|
|
class Geom_Surface;
|
|
class Geom2d_Curve;
|
|
class TopoDS_Edge;
|
|
class BRepAdaptor_HSurface;
|
|
class TopTools_IndexedDataMapOfShapeListOfShape;
|
|
|
|
//! Auxiliary class implements functionality producing tessellated
|
|
//! representation of an edge based on edge geometry.
|
|
class BRepMesh_EdgeTessellator : public BRepMesh_IEdgeTool
|
|
{
|
|
public:
|
|
|
|
//! Constructor.
|
|
//! Automatically performs tessellation of the edge according to the
|
|
//! given parameters.
|
|
BRepMesh_EdgeTessellator(
|
|
const TopoDS_Edge& theEdge,
|
|
const Handle(BRepMesh_FaceAttribute)& theFaceAttribute,
|
|
const TopTools_IndexedDataMapOfShapeListOfShape& theMapOfSharedFaces,
|
|
const Standard_Real theLinDeflection,
|
|
const Standard_Real theAngDeflection,
|
|
const Standard_Real theMinSize);
|
|
|
|
//! Returns number of dicretization points.
|
|
virtual Standard_Integer NbPoints() const
|
|
{
|
|
return myTool->NbPoints();
|
|
}
|
|
|
|
//! Returns parameters of solution with the given index.
|
|
//! @param theIndex index of tessellation point.
|
|
//! @param theParameter parameters on PCurve corresponded to the solution.
|
|
//! @param thePoint tessellation point.
|
|
//! @param theUV coordinates of tessellation point in parametric space of face.
|
|
virtual void Value(const Standard_Integer theIndex,
|
|
Standard_Real& theParameter,
|
|
gp_Pnt& thePoint,
|
|
gp_Pnt2d& theUV);
|
|
|
|
DEFINE_STANDARD_RTTI(BRepMesh_EdgeTessellator)
|
|
|
|
private:
|
|
|
|
//!
|
|
void splitSegment(const Handle(Geom_Surface)& theSurf,
|
|
const Handle(Geom2d_Curve)& theCurve2d,
|
|
const Standard_Real theFirst,
|
|
const Standard_Real theLast,
|
|
const Standard_Integer theNbIter);
|
|
|
|
private:
|
|
NCollection_Handle<BRepMesh_GeomTool> myTool;
|
|
Handle(BRepAdaptor_HSurface) mySurface;
|
|
BRepAdaptor_Curve myCOnS;
|
|
Standard_Real mySquareEdgeDef;
|
|
Standard_Real mySquareMinSize;
|
|
};
|
|
|
|
DEFINE_STANDARD_HANDLE(BRepMesh_EdgeTessellator, BRepMesh_IEdgeTool)
|
|
|
|
#endif
|