diff --git a/src/BRepLib/BRepLib.cxx b/src/BRepLib/BRepLib.cxx index 574959578f..9079366ffc 100644 --- a/src/BRepLib/BRepLib.cxx +++ b/src/BRepLib/BRepLib.cxx @@ -2434,6 +2434,174 @@ Standard_Boolean BRepLib:: return aRetVal; } +//======================================================================= +//function : UpdateDeflection +//purpose : +//======================================================================= +namespace +{ + //! Tool to estimate deflection of the given UV point + //! with regard to its representation in 3D space. + struct EvalDeflection + { + BRepAdaptor_Surface Surface; + + //! Initializes tool with the given face. + EvalDeflection (const TopoDS_Face& theFace) + : Surface (theFace) + { + } + + //! Evaluates deflection of the given 2d point from its 3d representation. + Standard_Real Eval (const gp_Pnt2d& thePoint2d, const gp_Pnt& thePoint3d) + { + gp_Pnt aPnt; + Surface.D0 (thePoint2d.X (), thePoint2d.Y (), aPnt); + return (thePoint3d.XYZ () - aPnt.XYZ ()).SquareModulus (); + } + }; + + //! Represents link of triangulation. + struct Link + { + Standard_Integer Node[2]; + + //! Constructor + Link (const Standard_Integer theNode1, const Standard_Integer theNode2) + { + Node[0] = theNode1; + Node[1] = theNode2; + } + + //! Computes a hash code for the this link + Standard_Integer HashCode (const Standard_Integer theUpperBound) const + { + return ::HashCode (Node[0] + Node[1], theUpperBound); + } + + //! Returns true if this link has the same nodes as the other. + Standard_Boolean IsEqual (const Link& theOther) const + { + return ((Node[0] == theOther.Node[0] && Node[1] == theOther.Node[1]) || + (Node[0] == theOther.Node[1] && Node[1] == theOther.Node[0])); + } + + //! Alias for IsEqual. + Standard_Boolean operator ==(const Link& theOther) const + { + return IsEqual (theOther); + } + }; + + //! Computes a hash code for the given link + inline Standard_Integer HashCode (const Link& theLink, const Standard_Integer theUpperBound) + { + return theLink.HashCode (theUpperBound); + } +} + +void BRepLib::UpdateDeflection (const TopoDS_Shape& theShape) +{ + TopExp_Explorer anExpFace (theShape, TopAbs_FACE); + for (; anExpFace.More(); anExpFace.Next()) + { + const TopoDS_Face& aFace = TopoDS::Face (anExpFace.Current()); + const Handle(Geom_Surface) aSurf = BRep_Tool::Surface (aFace); + if (aSurf.IsNull()) + { + continue; + } + + TopLoc_Location aLoc; + const Handle(Poly_Triangulation)& aPT = BRep_Tool::Triangulation (aFace, aLoc); + if (aPT.IsNull() || !aPT->HasUVNodes()) + { + continue; + } + + // Collect all nodes of degenerative edges and skip elements + // build upon them due to huge distortions introduced by passage + // from UV space to 3D. + NCollection_Map aDegNodes; + TopExp_Explorer anExpEdge (aFace, TopAbs_EDGE); + for (; anExpEdge.More(); anExpEdge.Next()) + { + const TopoDS_Edge& aEdge = TopoDS::Edge (anExpEdge.Current()); + if (BRep_Tool::Degenerated (aEdge)) + { + const Handle(Poly_PolygonOnTriangulation)& aPolygon = BRep_Tool::PolygonOnTriangulation (aEdge, aPT, aLoc); + if (aPolygon.IsNull ()) + { + continue; + } + + for (Standard_Integer aNodeIt = aPolygon->Nodes().Lower(); aNodeIt <= aPolygon->Nodes().Upper(); ++aNodeIt) + { + aDegNodes.Add (aPolygon->Node (aNodeIt)); + } + } + } + + EvalDeflection aTool (aFace); + NCollection_Map aLinks; + Standard_Real aSqDeflection = 0.; + const gp_Trsf& aTrsf = aLoc.Transformation(); + for (Standard_Integer aTriIt = 1; aTriIt <= aPT->NbTriangles(); ++aTriIt) + { + const Poly_Triangle& aTriangle = aPT->Triangle (aTriIt); + + int aNode[3]; + aTriangle.Get (aNode[0], aNode[1], aNode[2]); + if (aDegNodes.Contains (aNode[0]) || + aDegNodes.Contains (aNode[1]) || + aDegNodes.Contains (aNode[2])) + { + continue; + } + + const gp_Pnt aP3d[3] = { + aPT->Node (aNode[0]).Transformed (aTrsf), + aPT->Node (aNode[1]).Transformed (aTrsf), + aPT->Node (aNode[2]).Transformed (aTrsf) + }; + + const gp_Pnt2d aP2d[3] = { + aPT->UVNode (aNode[0]), + aPT->UVNode (aNode[1]), + aPT->UVNode (aNode[2]) + }; + + // Check midpoint of triangle. + const gp_Pnt aMid3d_t = (aP3d[0].XYZ() + aP3d[1].XYZ() + aP3d[2].XYZ()) / 3.; + const gp_Pnt2d aMid2d_t = (aP2d[0].XY () + aP2d[1].XY () + aP2d[2].XY ()) / 3.; + + aSqDeflection = Max (aSqDeflection, aTool.Eval (aMid2d_t, aMid3d_t)); + + for (Standard_Integer i = 0; i < 3; ++i) + { + const Standard_Integer j = (i + 1) % 3; + const Link aLink (aNode[i], aNode[j]); + if (!aLinks.Add (aLink)) + { + // Do not estimate boundary links due to high distortions at the edge. + const gp_Pnt& aP3d1 = aP3d[i]; + const gp_Pnt& aP3d2 = aP3d[j]; + + const gp_Pnt2d& aP2d1 = aP2d[i]; + const gp_Pnt2d& aP2d2 = aP2d[j]; + + const gp_Pnt aMid3d_l = (aP3d1.XYZ() + aP3d2.XYZ()) / 2.; + const gp_Pnt2d aMid2d_l = (aP2d1.XY () + aP2d2.XY ()) / 2.; + + aSqDeflection = Max (aSqDeflection, aTool.Eval (aMid2d_l, aMid3d_l)); + } + } + } + + aPT->Deflection (Sqrt (aSqDeflection)); + } +} + //======================================================================= //function : SortFaces //purpose : diff --git a/src/BRepLib/BRepLib.hxx b/src/BRepLib/BRepLib.hxx index 3f585a89b2..6f8c0b7d2e 100644 --- a/src/BRepLib/BRepLib.hxx +++ b/src/BRepLib/BRepLib.hxx @@ -250,6 +250,10 @@ public: //! Returns TRUE if any correction is done. Standard_EXPORT static Standard_Boolean EnsureNormalConsistency (const TopoDS_Shape& S, const Standard_Real theAngTol = 0.001, const Standard_Boolean ForceComputeNormals = Standard_False); + //! Updates value of deflection in Poly_Triangulation of faces + //! by the maximum deviation measured on existing triangulation. + Standard_EXPORT static void UpdateDeflection (const TopoDS_Shape& S); + //! Calculates the bounding sphere around the set of vertexes from the theLV list. //! Returns the center (theNewCenter) and the radius (theNewTol) of this sphere. //! This can be used to construct the new vertex which covers the given set of diff --git a/src/BRepMesh/BRepMesh_BaseMeshAlgo.cxx b/src/BRepMesh/BRepMesh_BaseMeshAlgo.cxx index 85ec667798..81e318a016 100644 --- a/src/BRepMesh/BRepMesh_BaseMeshAlgo.cxx +++ b/src/BRepMesh/BRepMesh_BaseMeshAlgo.cxx @@ -243,7 +243,6 @@ void BRepMesh_BaseMeshAlgo::commitSurfaceTriangulation() collectNodes(aTriangulation); - aTriangulation->Deflection(myDFace->GetDeflection()); BRepMesh_ShapeTool::AddInFace(myDFace->GetFace(), aTriangulation); } diff --git a/src/BRepMesh/BRepMesh_ModelPostProcessor.cxx b/src/BRepMesh/BRepMesh_ModelPostProcessor.cxx index 4a2a8b080b..b6253542c4 100644 --- a/src/BRepMesh/BRepMesh_ModelPostProcessor.cxx +++ b/src/BRepMesh/BRepMesh_ModelPostProcessor.cxx @@ -19,6 +19,8 @@ #include #include #include +#include +#include IMPLEMENT_STANDARD_RTTIEXT(BRepMesh_ModelPostProcessor, IMeshTools_ModelAlgo) @@ -157,6 +159,47 @@ namespace Handle(IMeshData_Model) myModel; }; + + //! Estimates and updates deflection of triangulations for corresponding faces. + class DeflectionEstimator + { + public: + //! Constructor + DeflectionEstimator (const Handle(IMeshData_Model)& theModel, + const IMeshTools_Parameters& theParams) + : myModel (theModel) + , myParams (new Poly_TriangulationParameters ( + theParams.Deflection, theParams.Angle, theParams.MinSize)) + { + } + + //! Main functor. + void operator()(const Standard_Integer theFaceIndex) const + { + const IMeshData::IFaceHandle& aDFace = myModel->GetFace (theFaceIndex); + if (aDFace->IsSet (IMeshData_Failure) || + aDFace->IsSet (IMeshData_Reused)) + { + return; + } + + BRepLib::UpdateDeflection (aDFace->GetFace()); + + TopLoc_Location aLoc; + const Handle(Poly_Triangulation)& aTriangulation = + BRep_Tool::Triangulation (aDFace->GetFace(), aLoc); + + if (!aTriangulation.IsNull()) + { + aTriangulation->Parameters (myParams); + } + } + + private: + + Handle(IMeshData_Model) myModel; + Handle(Poly_TriangulationParameters) myParams; + }; } //======================================================================= @@ -181,7 +224,7 @@ BRepMesh_ModelPostProcessor::~BRepMesh_ModelPostProcessor() //======================================================================= Standard_Boolean BRepMesh_ModelPostProcessor::performInternal( const Handle(IMeshData_Model)& theModel, - const IMeshTools_Parameters& /*theParameters*/, + const IMeshTools_Parameters& theParameters, const Message_ProgressRange& theRange) { (void )theRange; @@ -191,6 +234,10 @@ Standard_Boolean BRepMesh_ModelPostProcessor::performInternal( } // TODO: Force single threaded solution due to data races on edges sharing the same TShape - OSD_Parallel::For(0, theModel->EdgesNb(), PolygonCommitter(theModel), Standard_True/*!theParameters.InParallel*/); + OSD_Parallel::For (0, theModel->EdgesNb(), PolygonCommitter (theModel), Standard_True/*!theParameters.InParallel*/); + + // Estimate deflection here due to BRepLib::EstimateDeflection requires + // existence of both Poly_Triangulation and Poly_PolygonOnTriangulation. + OSD_Parallel::For (0, theModel->FacesNb(), DeflectionEstimator (theModel, theParameters), !theParameters.InParallel); return Standard_True; } diff --git a/src/BRepMesh/BRepMesh_ModelPreProcessor.cxx b/src/BRepMesh/BRepMesh_ModelPreProcessor.cxx index 07f080d20d..8fdd133577 100644 --- a/src/BRepMesh/BRepMesh_ModelPreProcessor.cxx +++ b/src/BRepMesh/BRepMesh_ModelPreProcessor.cxx @@ -23,6 +23,7 @@ #include #include #include +#include IMPLEMENT_STANDARD_RTTIEXT(BRepMesh_ModelPreProcessor, IMeshTools_ModelAlgo) @@ -55,8 +56,15 @@ namespace if (!aTriangulation.IsNull()) { + // If there is an info about initial parameters, use it due to deflection kept + // by Poly_Triangulation is generally an estimation upon generated mesh and can + // be either less or even greater than specified value. + const Handle(Poly_TriangulationParameters)& aSourceParams = aTriangulation->Parameters(); + const Standard_Real aDeflection = (!aSourceParams.IsNull() && aSourceParams->HasDeflection()) ? + aSourceParams->Deflection() : aTriangulation->Deflection(); + Standard_Boolean isTriangulationConsistent = - BRepMesh_Deflection::IsConsistent (aTriangulation->Deflection(), + BRepMesh_Deflection::IsConsistent (aDeflection, aDFace->GetDeflection(), myAllowQualityDecrease); diff --git a/src/Poly/FILES b/src/Poly/FILES index 32383f29d6..ca4cdf3de8 100755 --- a/src/Poly/FILES +++ b/src/Poly/FILES @@ -29,5 +29,7 @@ Poly_Polygon3D.hxx Poly_PolygonOnTriangulation.cxx Poly_PolygonOnTriangulation.hxx Poly_Triangle.hxx +Poly_TriangulationParameters.hxx +Poly_TriangulationParameters.cxx Poly_Triangulation.cxx Poly_Triangulation.hxx diff --git a/src/Poly/Poly_Triangulation.hxx b/src/Poly/Poly_Triangulation.hxx index ae976947f4..28a26dec71 100644 --- a/src/Poly/Poly_Triangulation.hxx +++ b/src/Poly/Poly_Triangulation.hxx @@ -29,6 +29,8 @@ class OSD_FileSystem; class Poly_Triangulation; +class Poly_TriangulationParameters; + DEFINE_STANDARD_HANDLE(Poly_Triangulation, Standard_Transient) //! Provides a triangulation for a surface, a set of surfaces, or @@ -107,6 +109,12 @@ public: //! See more on deflection in Polygon2D void Deflection (const Standard_Real theDeflection) { myDeflection = theDeflection; } + //! Returns initial set of parameters used to generate this triangulation. + const Handle(Poly_TriangulationParameters)& Parameters() const { return myParams; } + + //! Updates initial set of parameters used to generate this triangulation. + void Parameters (const Handle(Poly_TriangulationParameters)& theParams) { myParams = theParams; } + //! Clears internal arrays of nodes and all attributes. Standard_EXPORT virtual void Clear(); @@ -378,6 +386,7 @@ protected: NCollection_Array1 myNormals; Poly_MeshPurpose myPurpose; + Handle(Poly_TriangulationParameters) myParams; }; #endif // _Poly_Triangulation_HeaderFile diff --git a/src/Poly/Poly_TriangulationParameters.cxx b/src/Poly/Poly_TriangulationParameters.cxx new file mode 100644 index 0000000000..55b7ec025c --- /dev/null +++ b/src/Poly/Poly_TriangulationParameters.cxx @@ -0,0 +1,18 @@ +// Created on: 2021-07-20 +// Copyright (c) 2021 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. + +#include + +IMPLEMENT_STANDARD_RTTIEXT (Poly_TriangulationParameters, Standard_Transient) diff --git a/src/Poly/Poly_TriangulationParameters.hxx b/src/Poly/Poly_TriangulationParameters.hxx new file mode 100644 index 0000000000..176d0abba7 --- /dev/null +++ b/src/Poly/Poly_TriangulationParameters.hxx @@ -0,0 +1,93 @@ +// Created on: 2021-07-20 +// Copyright (c) 2021 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 _Poly_TriangulationParameters_HeaderFile +#define _Poly_TriangulationParameters_HeaderFile + +#include +#include + +//! Represents initial set of parameters triangulation is built for. +class Poly_TriangulationParameters : public Standard_Transient +{ +public: + + //! Constructor. + //! Initializes object with the given parameters. + //! @param theDeflection linear deflection + //! @param theAngle angular deflection + //! @param theMinSize minimum size + Poly_TriangulationParameters (const Standard_Real theDeflection = -1., + const Standard_Real theAngle = -1., + const Standard_Real theMinSize = -1.) + : myDeflection (theDeflection) + , myAngle (theAngle) + , myMinSize (theMinSize) + { + } + + //! Destructor. + virtual ~Poly_TriangulationParameters() + { + } + + //! Returns true if linear deflection is defined. + Standard_Boolean HasDeflection() const + { + return !(myDeflection < 0.); + } + + //! Returns true if angular deflection is defined. + Standard_Boolean HasAngle() const + { + return !(myAngle < 0.); + } + + //! Returns true if minimum size is defined. + Standard_Boolean HasMinSize() const + { + return !(myMinSize < 0.); + } + + //! Returns linear deflection or -1 if undefined. + Standard_Real Deflection() const + { + return myDeflection; + } + + //! Returns angular deflection or -1 if undefined. + Standard_Real Angle() const + { + return myAngle; + } + + //! Returns minimum size or -1 if undefined. + Standard_Real MinSize() const + { + return myMinSize; + } + + DEFINE_STANDARD_RTTIEXT (Poly_TriangulationParameters, Standard_Transient) + +private: + + Standard_Real myDeflection; + Standard_Real myAngle; + Standard_Real myMinSize; +}; + +DEFINE_STANDARD_HANDLE (Poly_TriangulationParameters, Standard_Transient) + +#endif diff --git a/tests/bugs/heal/bug26244 b/tests/bugs/heal/bug26244 index 9e10697c17..b75e5f9531 100644 --- a/tests/bugs/heal/bug26244 +++ b/tests/bugs/heal/bug26244 @@ -268,7 +268,7 @@ unifysamedom r res incmesh r 0.1 trinfo r -checktrinfo r -defl 0.1 -tol_abs_defl 0.01 -tol_rel_defl 0.01 +checktrinfo r -defl 0.049761016978299343 -tol_abs_defl 0.01 -tol_rel_defl 0.01 vinit vsetdispmode 1 diff --git a/tests/bugs/mesh/bug22778 b/tests/bugs/mesh/bug22778 index 3ae04b10b1..f0ace0936c 100644 --- a/tests/bugs/mesh/bug22778 +++ b/tests/bugs/mesh/bug22778 @@ -20,7 +20,7 @@ regexp {([0-9]+) triangles} $trinfo_r str nbtri_r # check deflections -checktrinfo s -tri -defl 0.001 -tol_abs_defl 1e-6 +checktrinfo s -tri -defl 0.00072921907260989653 -tol_abs_defl 1e-6 checktrinfo r -tri -max_defl 0.001 -tol_abs_defl 1e-6 # compare number of triangles, allow twice more diff --git a/tests/bugs/mesh/bug23105 b/tests/bugs/mesh/bug23105 index 2a730295c7..8d211a82e9 100755 --- a/tests/bugs/mesh/bug23105 +++ b/tests/bugs/mesh/bug23105 @@ -10,4 +10,4 @@ restore [locate_data_file bug23105_f372.brep] result checkshape result incmesh result 0.1 -checktrinfo result -tri -defl 0.1 -tol_abs_defl 1e-6 +checktrinfo result -tri -defl 1.6315061764065284 -tol_abs_defl 1e-6 diff --git a/tests/bugs/mesh/bug23513 b/tests/bugs/mesh/bug23513 index fa1c1aa12f..c1e0a10059 100644 --- a/tests/bugs/mesh/bug23513 +++ b/tests/bugs/mesh/bug23513 @@ -12,7 +12,7 @@ vfit checkview -screenshot -3d -path ${imagedir}/${test_image}.png -checktrinfo result -tri 62936 -nod 31509 -defl 0.00096399964870812682 +checktrinfo result -tri 62936 -nod 31509 -defl 0.01006437767331419 -tol_abs_defl 1e-6 set log [tricheck result] if { [llength $log] != 0 } { diff --git a/tests/bugs/mesh/bug24127 b/tests/bugs/mesh/bug24127 index 88c9adefb9..430d1158f2 100755 --- a/tests/bugs/mesh/bug24127 +++ b/tests/bugs/mesh/bug24127 @@ -14,7 +14,7 @@ incmesh f 1 trinfo f -checktrinfo f -tri 20 -nod 21 -defl 0.3345840532742983 -tol_abs_defl 1.e-3 -tol_rel_defl 0.01 +checktrinfo f -tri 20 -nod 21 -defl 0.70238336519888955 -tol_abs_defl 1.e-3 -tol_rel_defl 0.01 vinit vdisplay f diff --git a/tests/bugs/mesh/bug24938 b/tests/bugs/mesh/bug24938 index 6e692c6d5e..157a898aad 100644 --- a/tests/bugs/mesh/bug24938 +++ b/tests/bugs/mesh/bug24938 @@ -10,7 +10,7 @@ restore [locate_data_file bug24938_27773.brep] result tclean result incmesh result 1.5 -relative -checktrinfo result -tri 8 -nod 10 -defl 3.1950444624834377e-05 +checktrinfo result -tri 8 -nod 10 -defl 3.3489133970888776e-05 -tol_abs_defl 1e-6 vinit vsetdispmode 1 diff --git a/tests/bugs/mesh/bug25042 b/tests/bugs/mesh/bug25042 index b44908d565..8f53da4b87 100644 --- a/tests/bugs/mesh/bug25042 +++ b/tests/bugs/mesh/bug25042 @@ -14,7 +14,7 @@ vviewparams -scale 1.81755 -proj 0.88572 0.104526 0.452299 -up -0.0339444 0.9862 checkview -screenshot -3d -path ${imagedir}/${test_image}.png -checktrinfo result -tri 957 -nod 558 -defl 50.000000020000009 +checktrinfo result -tri 957 -nod 558 -defl 1.1088499641289298 -tol_abs_defl 1e-6 set log [tricheck result] if { [llength $log] != 0 } { diff --git a/tests/bugs/mesh/bug25287 b/tests/bugs/mesh/bug25287 index e393940466..5b51eeeb95 100644 --- a/tests/bugs/mesh/bug25287 +++ b/tests/bugs/mesh/bug25287 @@ -11,7 +11,7 @@ renamevar a_1 result incmesh result 0.0001 -a 30 -force_face_def -parallel -checktrinfo result -tri 13854 -nod 9190 -defl 0.00012495021746395917 +checktrinfo result -tri 13854 -nod 9190 -defl 0.00028360162213471898 -tol_abs_defl 1e-6 vinit vsetdispmode 1 diff --git a/tests/bugs/mesh/bug25519 b/tests/bugs/mesh/bug25519 index f0cbe48aaa..60f9a6e77d 100755 --- a/tests/bugs/mesh/bug25519 +++ b/tests/bugs/mesh/bug25519 @@ -15,5 +15,5 @@ fit isos a 0 triangles a -checktrinfo a -tri 2971 -nod 1592 -defl 0.091190343620839553 -tol_rel_defl 0.05 -tol_rel_tri 0.05 -tol_rel_nod 0.05 +checktrinfo a -tri 2971 -nod 1592 -defl 0.25443792426360728 -tol_rel_defl 0.05 -tol_rel_tri 0.05 -tol_rel_nod 0.05 checkview -screenshot -2d -path ${imagedir}/${test_image}.png diff --git a/tests/bugs/mesh/bug27693 b/tests/bugs/mesh/bug27693 index 930af5450e..f82d6fd73c 100644 --- a/tests/bugs/mesh/bug27693 +++ b/tests/bugs/mesh/bug27693 @@ -15,7 +15,7 @@ incmesh f 0.01 -a 90 isos f 0 triangles f -checktrinfo f -tri 2220 -nod 1232 -defl 0.0093553610383019445 +checktrinfo f -tri 2220 -nod 1232 -defl 0.0099011902071009586 -tol_abs_defl 1e-6 smallview +X+Y fit checkview -screenshot -2d -path ${imagedir}/${test_image}.png diff --git a/tests/bugs/mesh/bug27845 b/tests/bugs/mesh/bug27845 index d10d88b6e5..ce91dc3ea4 100644 --- a/tests/bugs/mesh/bug27845 +++ b/tests/bugs/mesh/bug27845 @@ -14,7 +14,7 @@ vdisplay result vfit checkview -screenshot -3d -path ${imagedir}/${test_image}.png -checktrinfo result -tri 3006 -nod 4360 -defl 10 +checktrinfo result -tri 3006 -nod 4360 -defl 3.0544822246414993 -tol_abs_defl 1e-6 set log [tricheck result] if { [llength $log] != 0 } { diff --git a/tests/bugs/mesh/bug29149 b/tests/bugs/mesh/bug29149 index 9ceba0b443..dacd0d686c 100644 --- a/tests/bugs/mesh/bug29149 +++ b/tests/bugs/mesh/bug29149 @@ -7,7 +7,7 @@ restore [locate_data_file bug29149.brep] result tclean result incmesh result 0.1 -checktrinfo result -tri 7998 -nod 4931 -defl 1.2277233425620309 +checktrinfo result -tri 7998 -nod 4931 -defl 1.9852316024615062 -tol_abs_defl 1e-6 # Reduce shape tolerance in order to hard check of mesh quality settolerance result 1.0e-7 diff --git a/tests/bugs/mesh/bug29205 b/tests/bugs/mesh/bug29205 index 74ae63ffd2..b4ec9dab66 100644 --- a/tests/bugs/mesh/bug29205 +++ b/tests/bugs/mesh/bug29205 @@ -14,7 +14,7 @@ vviewparams -scale 67.9853 -proj 0.680425 -0.732509 -0.0212714 -up -0.0316277 -0 checkview -screenshot -3d -path ${imagedir}/${test_image}.png -checktrinfo result -tri 8 -nod 10 -defl 6.8481042509220045e-05 +checktrinfo result -tri 8 -nod 10 -defl 0.16816650423537197 -tol_abs_defl 1e-6 set log [tricheck result] if { [llength $log] != 0 } { diff --git a/tests/bugs/mesh/bug29685 b/tests/bugs/mesh/bug29685 index a4b37b5899..a8cfc3e5a3 100644 --- a/tests/bugs/mesh/bug29685 +++ b/tests/bugs/mesh/bug29685 @@ -16,6 +16,6 @@ if { [llength $log] != 0 } { puts "Mesh is OK" } -checktrinfo result -tri 148 -nod 103 -defl 0.27179801813852145 +checktrinfo result -tri 148 -nod 103 -defl 0.34778084099529977 -tol_abs_defl 1e-6 checkview -screenshot -3d -path ${imagedir}/${test_image}.png diff --git a/tests/bugs/mesh/bug29751 b/tests/bugs/mesh/bug29751 index ac02e7d46b..50395c96d1 100644 --- a/tests/bugs/mesh/bug29751 +++ b/tests/bugs/mesh/bug29751 @@ -25,6 +25,6 @@ if { [llength $log] != 0 } { puts "Mesh is OK" } -checktrinfo result -tri 1013 -nod 578 -defl 0.1 +checktrinfo result -tri 1013 -nod 578 -defl 0.1164052220738387 -tol_abs_defl 1e-6 checkview -screenshot -3d -path ${imagedir}/${test_image}.png diff --git a/tests/bugs/mesh/bug29962 b/tests/bugs/mesh/bug29962 index 19f65eb8ce..be507083dd 100644 --- a/tests/bugs/mesh/bug29962 +++ b/tests/bugs/mesh/bug29962 @@ -15,7 +15,7 @@ if { [llength $log1] != 0 } { puts "Mesh is OK" } -checktrinfo result -tri 2 -nod 4 -defl 0.0 +checktrinfo result -tri 2 -nod 4 -defl 5.5579174982152475 -tol_abs_defl 1e-6 tclean result incmesh result 0.01 @@ -27,7 +27,7 @@ if { [llength $log2] != 0 } { puts "Mesh is OK" } -checktrinfo result -tri 78200 -nod 39103 -defl 0.035123046705520911 +checktrinfo result -tri 78200 -nod 39103 -defl 5.8003351598212323 -tol_abs_defl 1e-6 don result isos result 0 diff --git a/tests/bugs/mesh/bug30008_1 b/tests/bugs/mesh/bug30008_1 index 1143910dad..16804a4c3d 100644 --- a/tests/bugs/mesh/bug30008_1 +++ b/tests/bugs/mesh/bug30008_1 @@ -12,6 +12,6 @@ vdisplay result vviewparams -scale 8.46292 -proj 0.653203 -0.644806 0.396926 -up -0.0109833 0.51609 0.856464 -at 347.559 1026.89 219.262 -eye 2080.75 -684.022 1272.45 tricheck result -checktrinfo result -tri 6978 -nod 4890 -defl 7.6167024939147652 +checktrinfo result -tri 6978 -nod 4890 -defl 8.4394056682382157 -tol_abs_defl 1e-6 checkview -screenshot -3d -path ${imagedir}/${test_image}.png diff --git a/tests/bugs/mesh/bug30008_2 b/tests/bugs/mesh/bug30008_2 index 4c2467a352..7a57ceff91 100644 --- a/tests/bugs/mesh/bug30008_2 +++ b/tests/bugs/mesh/bug30008_2 @@ -19,7 +19,7 @@ nurbsconvert result result incmesh result 0.15 -a 20 tricheck result -checktrinfo result -tri 191 -nod 146 -defl 0.0362596 -tol_abs_defl 1.0e-6 +checktrinfo result -tri 191 -nod 146 -defl 0.052300780129031083 -tol_abs_defl 1.0e-6 vinit diff --git a/tests/bugs/mesh/bug30167 b/tests/bugs/mesh/bug30167 index 4fd42ad6e5..74edff3f44 100644 --- a/tests/bugs/mesh/bug30167 +++ b/tests/bugs/mesh/bug30167 @@ -12,6 +12,6 @@ vdisplay result vfit tricheck result -checktrinfo result -tri 3424 -nod 1801 -max_defl 0.52 +checktrinfo result -tri 3424 -nod 1801 -max_defl 0.55846824898476011 -tol_abs_defl 1.0e-6 checkview -screenshot -3d -path ${imagedir}/${test_image}.png diff --git a/tests/bugs/mesh/bug31251 b/tests/bugs/mesh/bug31251 index 2ef84b14eb..923d621ba8 100644 --- a/tests/bugs/mesh/bug31251 +++ b/tests/bugs/mesh/bug31251 @@ -15,7 +15,7 @@ vdefaults -autoTriang 0 tclean result incmesh result 0.004 -a 14 -checktrinfo result -tri 70556 -nod 39944 -defl 0.22962869401103247 +checktrinfo result -tri 70556 -nod 39944 -defl 0.24607185555570676 -tol_abs_defl 1e-6 vdisplay result -redisplay vfit @@ -23,7 +23,7 @@ checkview -screenshot -3d -path ${imagedir}/${test_image}_default.png tclean result incmesh result 0.004 -a 14 -force_face_def -checktrinfo result -tri 292556 -nod 150944 -defl 0.04579460790575135 +checktrinfo result -tri 292556 -nod 150944 -defl 0.16388671063364907 -tol_abs_defl 1e-6 vdisplay result -redisplay vfit diff --git a/tests/bugs/mesh/bug32471 b/tests/bugs/mesh/bug32471 new file mode 100644 index 0000000000..520a7d55a3 --- /dev/null +++ b/tests/bugs/mesh/bug32471 @@ -0,0 +1,17 @@ +puts "=======" +puts "0032471: Mesh - Deflection of the triangulation is not recomputed for planar face" +puts "=======" +puts "" + +restore [locate_data_file bug32471.brep] result + +incmesh result 0.01 + +checktrinfo result -tri 2 -nod 4 -defl 0 -tol_rel_defl 1e-7 + +vinit +vdefaults -autoTriang 0 +vsetdispmode 1 +vdisplay result +vfit +checkview -screenshot -3d -path ${imagedir}/${test_image}.png diff --git a/tests/bugs/moddata_1/bug15519 b/tests/bugs/moddata_1/bug15519 index 4ea7a145c9..4474ff3231 100755 --- a/tests/bugs/moddata_1/bug15519 +++ b/tests/bugs/moddata_1/bug15519 @@ -14,5 +14,5 @@ tclean result set Deflection 1. catch {incmesh result ${Deflection} } -checktrinfo result -tri 52956 -nod 46525 -defl 1.0 -tol_rel_defl 0.001 -tol_rel_tri 0.001 -tol_rel_nod 0.001 +checktrinfo result -tri 52956 -nod 46525 -defl 1.2592398118022043 -tol_rel_defl 0.001 -tol_rel_tri 0.001 -tol_rel_nod 0.001 checkview -display result -2d -path ${imagedir}/${test_image}.png diff --git a/tests/bugs/moddata_1/bug21122 b/tests/bugs/moddata_1/bug21122 index 87c9214148..606762befa 100755 --- a/tests/bugs/moddata_1/bug21122 +++ b/tests/bugs/moddata_1/bug21122 @@ -15,7 +15,7 @@ tclean result set Deflection 0.1 catch {incmesh result ${Deflection} } -checktrinfo result -tri 4204 -nod 4206 -defl 1.9388020580310417e-07 -tol_rel_defl 0.1 -tol_rel_tri 0.001 -tol_rel_nod 0.001 +checktrinfo result -tri 4204 -nod 4206 -defl 2.3419011146460291e-07 -tol_rel_defl 0.1 -tol_rel_tri 0.001 -tol_rel_nod 0.001 checkprops result -s 275.426 checknbshapes result -vertex 964 -edge 964 -wire 1 -face 1 -shell 1 -solid 0 -compsolid 0 -compound 0 -shape 1931 diff --git a/tests/bugs/moddata_1/bug22759 b/tests/bugs/moddata_1/bug22759 index f03ac3e0a1..e4f4976193 100755 --- a/tests/bugs/moddata_1/bug22759 +++ b/tests/bugs/moddata_1/bug22759 @@ -19,7 +19,7 @@ tclean result set Deflection 0.001 incmesh result ${Deflection} -checktrinfo result -tri 375392 -nod 190670 -defl 0.0092442421472206764 -tol_rel_defl 0.001 -tol_rel_tri 0.001 -tol_rel_nod 0.001 +checktrinfo result -tri 375392 -nod 190670 -defl 0.080199363667810539 -tol_rel_defl 0.001 -tol_rel_tri 0.001 -tol_rel_nod 0.001 vinit vdisplay result diff --git a/tests/bugs/moddata_3/bug24959_2 b/tests/bugs/moddata_3/bug24959_2 index 374c582a90..ff1465e669 100644 --- a/tests/bugs/moddata_3/bug24959_2 +++ b/tests/bugs/moddata_3/bug24959_2 @@ -10,7 +10,7 @@ bsplinesurf s 2 12 0.0 3 0.1 1 0.2 1 0.3 1 0.4 1 0.5 1 0.525 1 0.55 1 0.575 1 0. mkface result s incmesh result 1 -checktrinfo result -max_defl 1 +checktrinfo result -max_defl 2.4039063417856825 -tol_abs_defl 1e-6 vdisplay result vsetdispmode 1 diff --git a/tests/perf/mesh/bug23795 b/tests/perf/mesh/bug23795 index e9f18e1fd6..469d504d12 100644 --- a/tests/perf/mesh/bug23795 +++ b/tests/perf/mesh/bug23795 @@ -9,7 +9,7 @@ dchrono t restart incmesh result 0.1 dchrono t stop counter MeshBug23795 -checktrinfo result -tri 10992 -nod 11016 -defl 0.1 +checktrinfo result -tri 10992 -nod 11016 -defl 0.99900001814148409 -tol_abs_defl 1e-6 vinit vdefaults -autoTriang 0 diff --git a/tests/perf/mesh/bug26889_1 b/tests/perf/mesh/bug26889_1 index 10b03c6a37..6d358fdb49 100644 --- a/tests/perf/mesh/bug26889_1 +++ b/tests/perf/mesh/bug26889_1 @@ -11,7 +11,7 @@ dchrono t restart incmesh a_1 0.01 1 dchrono t stop counter incmesh -checktrinfo a_1 -tri 525271 -nod 263456 -defl 0.081028355715069861 +checktrinfo a_1 -tri 525271 -nod 263456 -defl 0.069482224632795617 -tol_abs_defl 1e-6 set log [tricheck a_1] if { [llength $log] != 0 } { diff --git a/tests/perf/mesh/bug26889_2 b/tests/perf/mesh/bug26889_2 index 878f636c12..d1ae16a345 100644 --- a/tests/perf/mesh/bug26889_2 +++ b/tests/perf/mesh/bug26889_2 @@ -11,7 +11,7 @@ dchrono t restart incmesh a_1 0.1 1 dchrono t stop counter incmesh -checktrinfo a_1 -tri 68779 -nod 34737 -defl 0.11671770612283024 +checktrinfo a_1 -tri 68779 -nod 34737 -defl 0.24900556935704937 -tol_abs_defl 1e-6 set log [tricheck a_1] if { [llength $log] != 0 } { diff --git a/tests/perf/mesh/bug26889_3 b/tests/perf/mesh/bug26889_3 index d4525bb9b3..e87d2483e9 100644 --- a/tests/perf/mesh/bug26889_3 +++ b/tests/perf/mesh/bug26889_3 @@ -11,7 +11,7 @@ dchrono t restart incmesh a_1 1.0 1 dchrono t stop counter incmesh -checktrinfo a_1 -tri 12469 -nod 6503 -defl 1.0 +checktrinfo a_1 -tri 12469 -nod 6503 -defl 1.2783003174746328 -tol_abs_defl 1e-6 set log [tricheck a_1] if { [llength $log] != 0 } { diff --git a/tests/perf/mesh/bug26965 b/tests/perf/mesh/bug26965 index 8203f5ed54..6adc45da7c 100644 --- a/tests/perf/mesh/bug26965 +++ b/tests/perf/mesh/bug26965 @@ -16,4 +16,4 @@ dchrono h vfit checkview -screenshot -3d -path ${imagedir}/${test_image}.png -checktrinfo a -tri 14764 -nod 7587 -defl 0.098772787476728782 \ No newline at end of file +checktrinfo a -tri 14764 -nod 7587 -defl 0.29573935005082458 -tol_abs_defl 1e-6 diff --git a/tests/perf/mesh/bug27119 b/tests/perf/mesh/bug27119 index 853cdadd2d..bb10a30d10 100644 --- a/tests/perf/mesh/bug27119 +++ b/tests/perf/mesh/bug27119 @@ -25,7 +25,7 @@ regexp { deflection +([-0-9.+eE]+)} $tri_info full def set ref_tri 7857 set ref_nod 7859 -set ref_def 1e-5 +set ref_def 1.5252689837551246e-12 set tol_rel 0.01 # Computes deviation of the value from specified one diff --git a/tests/v3d/bugs/buc60857 b/tests/v3d/bugs/buc60857 index a82b3f2c16..69fc64e239 100644 --- a/tests/v3d/bugs/buc60857 +++ b/tests/v3d/bugs/buc60857 @@ -7,6 +7,10 @@ vinit View1 BUC60857 vfit +sewing BUC60857_BLUE 1e-7 BUC60857_BLUE +sewing BUC60857_RED 1e-7 BUC60857_RED +sewing BUC60857_GREEN 1e-7 BUC60857_GREEN + set Property_BLUE [sprops BUC60857_BLUE] set area_BLUE [lindex ${Property_BLUE} 2]