mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
0023708: The correct shape is interpreted as invalid
Added test case bugs/modalg_5/bug23708 Improvements in test case de/step_3/B8 (problem in second TODO is not reproduced) Modified test case de/iges_2/H1 regarding to new reference data
This commit is contained in:
parent
0221b126ee
commit
b3cb7aa21b
@ -41,6 +41,7 @@
|
|||||||
#include <BRepClass_FaceClassifier.hxx>
|
#include <BRepClass_FaceClassifier.hxx>
|
||||||
//#include <Geom2dInt_GInter.hxx>
|
//#include <Geom2dInt_GInter.hxx>
|
||||||
#include <Geom2d_Curve.hxx>
|
#include <Geom2d_Curve.hxx>
|
||||||
|
#include <Geom_Curve.hxx>
|
||||||
#include <GProp_GProps.hxx>
|
#include <GProp_GProps.hxx>
|
||||||
|
|
||||||
#include <IntRes2d_Domain.hxx>
|
#include <IntRes2d_Domain.hxx>
|
||||||
@ -650,50 +651,83 @@ static Standard_Boolean Intersect(const TopoDS_Wire& wir1,
|
|||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
|
|
||||||
static Standard_Boolean IsInside(const TopoDS_Wire& wir,
|
static Standard_Boolean IsInside(const TopoDS_Wire& theWire,
|
||||||
const Standard_Boolean WireBienOriente,
|
const Standard_Boolean WireBienOriente,
|
||||||
const BRepTopAdaptor_FClass2d& FClass2d,
|
const BRepTopAdaptor_FClass2d& FClass2d,
|
||||||
const TopoDS_Face& F)
|
const TopoDS_Face& theFace)
|
||||||
{
|
{
|
||||||
// Standard_Real U,V;
|
Standard_Real aParameter, aFirst, aLast;
|
||||||
TopExp_Explorer exp;
|
|
||||||
exp.Init(wir,TopAbs_EDGE);
|
|
||||||
if (exp.More()) {
|
|
||||||
|
|
||||||
const TopoDS_Edge& edg = TopoDS::Edge(exp.Current());
|
TopExp_Explorer anExplorer(theWire, TopAbs_EDGE);
|
||||||
Standard_Real f,l;
|
for( ; anExplorer.More(); anExplorer.Next() )
|
||||||
Handle(Geom2d_Curve) C2d = BRep_Tool::CurveOnSurface(edg,F,f,l);
|
{
|
||||||
Standard_Real prm;
|
const TopoDS_Edge& anEdge = TopoDS::Edge( anExplorer.Current() );
|
||||||
|
Handle(Geom2d_Curve) aCurve2D =
|
||||||
|
BRep_Tool::CurveOnSurface( anEdge, theFace, aFirst, aLast );
|
||||||
|
|
||||||
if (!Precision::IsNegativeInfinite(f) &&
|
// Selects the parameter of point on the curve
|
||||||
!Precision::IsPositiveInfinite(l)) {
|
if( !Precision::IsNegativeInfinite(aFirst) &&
|
||||||
prm = (f+l)/2.;
|
!Precision::IsPositiveInfinite(aLast) )
|
||||||
|
{
|
||||||
|
aParameter = (aFirst + aLast) * 0.5;
|
||||||
|
|
||||||
|
// Edge is skipped if its parametric range is too small
|
||||||
|
if( Abs(aParameter - aFirst) < Precision::PConfusion() )
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Edge is skipped if its length is too small
|
||||||
|
Standard_Real aFirst3D, aLast3D;
|
||||||
|
Handle(Geom_Curve) aCurve = BRep_Tool::Curve( anEdge, aFirst3D, aLast3D );
|
||||||
|
if ( aCurve.IsNull() )
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
gp_Pnt aPoints[2];
|
||||||
|
// Compute start point of edge
|
||||||
|
aCurve->D0( aFirst, aPoints[0] );
|
||||||
|
// Compute middle point of edge
|
||||||
|
aCurve->D0( (aFirst3D+aLast3D)/2., aPoints[1] );
|
||||||
|
if( aPoints[0].Distance(aPoints[1]) < Precision::Confusion() )
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else {
|
else
|
||||||
if (Precision::IsNegativeInfinite(f) &&
|
{
|
||||||
Precision::IsPositiveInfinite(l)){
|
if( Precision::IsNegativeInfinite(aFirst) &&
|
||||||
prm = 0.;
|
Precision::IsPositiveInfinite(aLast) )
|
||||||
|
{
|
||||||
|
aParameter = 0.;
|
||||||
}
|
}
|
||||||
else if (Precision::IsNegativeInfinite(f)) {
|
else if( Precision::IsNegativeInfinite(aFirst) )
|
||||||
prm = l-1.;
|
{
|
||||||
|
aParameter = aLast - 1.;
|
||||||
}
|
}
|
||||||
else {
|
else
|
||||||
prm = f+1.;
|
{
|
||||||
|
aParameter = aFirst + 1.;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
gp_Pnt2d pt2d(C2d->Value(prm));
|
// Find point on curve (edge)
|
||||||
|
gp_Pnt2d aPoint2D(aCurve2D->Value(aParameter));
|
||||||
if(WireBienOriente) {
|
// Compute the topological position of a point relative to face
|
||||||
return(FClass2d.Perform(pt2d,Standard_False) == TopAbs_OUT);
|
TopAbs_State aState = FClass2d.Perform(aPoint2D, Standard_False);
|
||||||
|
|
||||||
|
if( WireBienOriente )
|
||||||
|
{
|
||||||
|
return aState == TopAbs_OUT;
|
||||||
}
|
}
|
||||||
else {
|
else
|
||||||
return(FClass2d.Perform(pt2d,Standard_False) == TopAbs_IN);
|
{
|
||||||
|
return aState == TopAbs_IN;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return Standard_False;
|
return Standard_False;
|
||||||
}
|
}
|
||||||
|
|
||||||
Standard_Boolean CheckThin(const TopoDS_Shape& w, const TopoDS_Shape& f)
|
Standard_Boolean CheckThin(const TopoDS_Shape& w, const TopoDS_Shape& f)
|
||||||
{
|
{
|
||||||
TopoDS_Face aF = TopoDS::Face(f);
|
TopoDS_Face aF = TopoDS::Face(f);
|
||||||
|
12
tests/bugs/modalg_5/bug23708
Normal file
12
tests/bugs/modalg_5/bug23708
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
puts "============"
|
||||||
|
puts "OCC23708"
|
||||||
|
puts "============"
|
||||||
|
puts ""
|
||||||
|
############################################################################
|
||||||
|
# The correct shape is interpreted as invalid
|
||||||
|
############################################################################
|
||||||
|
|
||||||
|
restore [locate_data_file bug23708_invalidface.brep] result
|
||||||
|
checkshape result
|
||||||
|
|
||||||
|
set 2dviewer 1
|
@ -1,13 +1,10 @@
|
|||||||
# !!!! This file is generated automatically, do not edit manually! See end script
|
# !!!! This file is generated automatically, do not edit manually! See end script
|
||||||
puts "TODO CR23096 ALL: CHECKSHAPE : Faulty"
|
|
||||||
|
|
||||||
|
|
||||||
set filename waaier_para.igs
|
set filename waaier_para.igs
|
||||||
|
|
||||||
set ref_data {
|
set ref_data {
|
||||||
DATA : Faulties = 0 ( 1 ) Warnings = 0 ( 1 ) Summary = 0 ( 2 )
|
DATA : Faulties = 0 ( 1 ) Warnings = 0 ( 1 ) Summary = 0 ( 2 )
|
||||||
TPSTAT : Faulties = 0 ( 0 ) Warnings = 40 ( 617 ) Summary = 40 ( 617 )
|
TPSTAT : Faulties = 0 ( 0 ) Warnings = 40 ( 617 ) Summary = 40 ( 617 )
|
||||||
CHECKSHAPE : Wires = 2 ( 2 ) Faces = 3 ( 2 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
CHECKSHAPE : Wires = 2 ( 2 ) Faces = 3 ( 3 ) Shells = 0 ( 0 ) Solids = 0 ( 0 )
|
||||||
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 162 ( 162 ) Summary = 4900 ( 4895 )
|
NBSHAPES : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 162 ( 162 ) Summary = 4900 ( 4895 )
|
||||||
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 162 ( 162 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 2291 ( 2288 )
|
STATSHAPE : Solid = 0 ( 0 ) Shell = 0 ( 0 ) Face = 162 ( 162 ) FreeWire = 0 ( 0 ) FreeEdge = 0 ( 0 ) SharedEdge = 2291 ( 2288 )
|
||||||
TOLERANCE : MaxTol = 0.9221218176 ( 0.9410156556 ) AvgTol = 0.01501963159 ( 0.01437988687 )
|
TOLERANCE : MaxTol = 0.9221218176 ( 0.9410156556 ) AvgTol = 0.01501963159 ( 0.01437988687 )
|
||||||
|
@ -1,6 +1,5 @@
|
|||||||
# !!!! This file is generated automatically, do not edit manually! See end script
|
# !!!! This file is generated automatically, do not edit manually! See end script
|
||||||
puts "TODO CR23096 ALL: TPSTAT : Faulty"
|
puts "TODO CR23096 ALL: TPSTAT : Faulty"
|
||||||
puts "TODO CR23096 ALL: CHECKSHAPE : Faulty"
|
|
||||||
|
|
||||||
set filename gehaeuse_solid.stp
|
set filename gehaeuse_solid.stp
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user