mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0024422: Wrong result done by FaceClassifier algorithm
Control of out of boundaries by finding circle-point extrema.
This commit is contained in:
parent
6bf1bdbd22
commit
73cd8a8afd
@ -41,7 +41,7 @@
|
||||
#include <IntRes2d_IntersectionPoint.hxx>
|
||||
|
||||
static
|
||||
void RefineTolerance(const TopoDS_Face& aF,
|
||||
void RefineTolerance(const TopoDS_Face& aF,
|
||||
const BRepAdaptor_Curve2d& aC,
|
||||
const Standard_Real aT,
|
||||
Standard_Real& aTolZ);
|
||||
@ -64,12 +64,12 @@ void BRepClass_Intersector::Perform(const gp_Lin2d& L,
|
||||
const Standard_Real Tol,
|
||||
const BRepClass_Edge& E)
|
||||
{
|
||||
Standard_Real deb, fin, aTolZ;
|
||||
Standard_Real deb = 0.0, fin = 0.0, aTolZ = Tol;
|
||||
Handle(Geom2d_Curve) aC2D;
|
||||
//
|
||||
aTolZ=Tol;
|
||||
const TopoDS_Edge& EE = E.Edge();
|
||||
const TopoDS_Face& F = E.Face();
|
||||
|
||||
//
|
||||
aC2D=BRep_Tool::CurveOnSurface(EE, F, deb, fin);
|
||||
if (aC2D.IsNull()) {
|
||||
@ -84,24 +84,30 @@ void BRepClass_Intersector::Perform(const gp_Lin2d& L,
|
||||
//
|
||||
// Case of "ON": direct check of belonging to edge
|
||||
// taking into account the tolerance
|
||||
Extrema_ExtPC2d theExtPC2d(L.Location(), C);
|
||||
Extrema_ExtPC2d anExtPC2d(L.Location(), C);
|
||||
Standard_Real MinDist = RealLast(), aDist;
|
||||
Standard_Integer MinInd = 0, i;
|
||||
if (theExtPC2d.IsDone()) {
|
||||
for (i = 1; i <= theExtPC2d.NbExt(); ++i) {
|
||||
aDist = theExtPC2d.SquareDistance(i);
|
||||
if (aDist < MinDist) {
|
||||
if (anExtPC2d.IsDone())
|
||||
{
|
||||
const Standard_Integer aNbPnts = anExtPC2d.NbExt();
|
||||
for (i = 1; i <= aNbPnts; ++i)
|
||||
{
|
||||
aDist = anExtPC2d.SquareDistance(i);
|
||||
|
||||
if (aDist < MinDist)
|
||||
{
|
||||
MinDist = aDist;
|
||||
MinInd = i;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (MinInd) {
|
||||
MinDist = sqrt(MinDist);
|
||||
}
|
||||
if (MinDist <= aTolZ) {
|
||||
gp_Pnt2d pnt_exact = (theExtPC2d.Point(MinInd)).Value();
|
||||
Standard_Real par = (theExtPC2d.Point(MinInd)).Parameter();
|
||||
gp_Pnt2d pnt_exact = (anExtPC2d.Point(MinInd)).Value();
|
||||
Standard_Real par = (anExtPC2d.Point(MinInd)).Parameter();
|
||||
//
|
||||
RefineTolerance(F, C, par, aTolZ);
|
||||
//
|
||||
|
@ -261,7 +261,7 @@ static void BuildDomains(TopoDS_Face& myFace,
|
||||
|
||||
void BRepOffsetAPI_MakeOffset::Perform( const Standard_Real Offset,
|
||||
const Standard_Real Alt)
|
||||
{
|
||||
{
|
||||
StdFail_NotDone_Raise_if ( !myIsInitialized,
|
||||
"BRepOffsetAPI_MakeOffset : Perform without Init");
|
||||
|
||||
@ -339,7 +339,7 @@ void BRepOffsetAPI_MakeOffset::Perform( const Standard_Real Offset,
|
||||
NotDone();
|
||||
myShape.Nullify();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : Build
|
||||
@ -358,7 +358,7 @@ void BRepOffsetAPI_MakeOffset::Build()
|
||||
//=======================================================================
|
||||
|
||||
const TopTools_ListOfShape& BRepOffsetAPI_MakeOffset::Generated
|
||||
(const TopoDS_Shape& S)
|
||||
(const TopoDS_Shape& S)
|
||||
{
|
||||
myGenerated.Clear();
|
||||
BRepFill_ListIteratorOfListOfOffsetWire itOW;
|
||||
|
@ -794,7 +794,7 @@ static Standard_Integer profile(Draw_Interpretor& di,
|
||||
return 1;
|
||||
}
|
||||
|
||||
again:
|
||||
again:
|
||||
|
||||
switch (move) {
|
||||
|
||||
@ -898,7 +898,7 @@ static Standard_Integer profile(Draw_Interpretor& di,
|
||||
|
||||
return 0;
|
||||
|
||||
badargs:
|
||||
badargs:
|
||||
di << "profile : bad number of arguments";
|
||||
return 1;
|
||||
}
|
||||
@ -1373,7 +1373,7 @@ static Standard_Integer profile2d(Draw_Interpretor& di,
|
||||
return 1;
|
||||
}
|
||||
|
||||
again:
|
||||
again:
|
||||
|
||||
switch (move) {
|
||||
|
||||
@ -1462,7 +1462,7 @@ static Standard_Integer profile2d(Draw_Interpretor& di,
|
||||
|
||||
return 0;
|
||||
|
||||
badargs:
|
||||
badargs:
|
||||
di << "profile : bad number of arguments";
|
||||
return 1;
|
||||
}
|
||||
@ -1531,7 +1531,7 @@ Standard_Integer mkoffset(Draw_Interpretor& di,
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
|
||||
//=======================================================================
|
||||
//function : pickface
|
||||
@ -1614,8 +1614,8 @@ Standard_Integer edgeintersector(Draw_Interpretor& di,
|
||||
|
||||
V.Orientation(TopAbs_INTERNAL);
|
||||
B.UpdateVertex(V,U,E[i-1],Tol);
|
||||
// B.UpdateVertex(TopoDS::Vertex(V.Oriented(TopAbs_INTERNAL)),
|
||||
// U,E[i-1],Tol);
|
||||
// B.UpdateVertex(TopoDS::Vertex(V.Oriented(TopAbs_INTERNAL)),
|
||||
// U,E[i-1],Tol);
|
||||
//---------------------------------------------------------------
|
||||
// Orientation of vertex in the transition.
|
||||
//---------------------------------------------------------------
|
||||
@ -1672,8 +1672,8 @@ Standard_Integer concatC0wire(Draw_Interpretor&, Standard_Integer n, const char*
|
||||
//=======================================================================
|
||||
|
||||
static Standard_Integer concatwire(Draw_Interpretor&, Standard_Integer n, const char** c)
|
||||
{ GeomAbs_Shape Option=GeomAbs_C1;
|
||||
|
||||
{
|
||||
GeomAbs_Shape Option=GeomAbs_C1;
|
||||
if ( n < 3 ) return 1;
|
||||
|
||||
if(n==4) //check if it's C1 or G1
|
||||
@ -1686,8 +1686,6 @@ static Standard_Integer concatwire(Draw_Interpretor&, Standard_Integer n, const
|
||||
|
||||
TopoDS_Wire W = TopoDS::Wire(S) ;
|
||||
TopoDS_Wire res;
|
||||
|
||||
|
||||
res=BRepAlgo::ConcatenateWire(W,Option); //processing
|
||||
DBRep::Set(c[1],res);
|
||||
return 0;
|
||||
|
@ -85,16 +85,18 @@ void Extrema_ExtPElC2d::Perform(const gp_Pnt2d& P,
|
||||
const Standard_Real Uinf,
|
||||
const Standard_Real Usup)
|
||||
{
|
||||
Standard_Real radius, U1, U2;
|
||||
// gp_Pnt2d OC, P1, P2, OL;
|
||||
gp_Pnt2d OC, P1, P2;
|
||||
OC = C.Location();
|
||||
// gp_Pnt2d OC, P1, P2, OL;
|
||||
gp_Pnt2d OC(C.Location());
|
||||
myNbExt = 0;
|
||||
|
||||
if (OC.IsEqual(P, Precision::Confusion())) {
|
||||
myDone = Standard_False;
|
||||
}
|
||||
else {
|
||||
else
|
||||
{
|
||||
Standard_Real radius, U1, U2;
|
||||
gp_Pnt2d P1, P2;
|
||||
|
||||
myDone = Standard_True;
|
||||
gp_Dir2d V(gp_Vec2d(P, OC));
|
||||
radius = C.Radius();
|
||||
@ -105,10 +107,20 @@ void Extrema_ExtPElC2d::Perform(const gp_Pnt2d& P,
|
||||
Standard_Real myuinf = Uinf;
|
||||
ElCLib::AdjustPeriodic(Uinf, Uinf+2*M_PI, Precision::PConfusion(), myuinf, U1);
|
||||
ElCLib::AdjustPeriodic(Uinf, Uinf+2*M_PI, Precision::PConfusion(), myuinf, U2);
|
||||
if (((U1-2*M_PI-Uinf) < Tol) && ((U1-2*M_PI-Uinf) > -Tol)) U1 = Uinf;
|
||||
if (((U2-2*M_PI-Uinf) < Tol) && ((U2-2*M_PI-Uinf) > -Tol)) U2 = Uinf;
|
||||
if (((U1-2*M_PI-Uinf) < Tol) && ((U1-2*M_PI-Uinf) > -Tol))
|
||||
{
|
||||
U1 = Uinf;
|
||||
P1 = OC.XY() + radius * (cos(U1) * C.XAxis().Direction().XY() + sin(U1) * C.YAxis().Direction().XY());
|
||||
}
|
||||
|
||||
if (((Uinf-U1) < Tol) && ((U1-Usup) < Tol)) {
|
||||
if (((U2-2*M_PI-Uinf) < Tol) && ((U2-2*M_PI-Uinf) > -Tol))
|
||||
{
|
||||
U2 = Uinf;
|
||||
P2 = OC.XY() + radius * (cos(U2) * C.XAxis().Direction().XY() + sin(U2) * C.YAxis().Direction().XY());
|
||||
}
|
||||
|
||||
if (((Uinf-U1) < Tol) && ((U1-Usup) < Tol))
|
||||
{
|
||||
Extrema_POnCurv2d MyPOnCurve(U1, P1);
|
||||
mySqDist[0] = P.SquareDistance(P1);
|
||||
myPoint[0] = MyPOnCurve;
|
||||
@ -116,7 +128,8 @@ void Extrema_ExtPElC2d::Perform(const gp_Pnt2d& P,
|
||||
myNbExt++;
|
||||
}
|
||||
|
||||
if (((Uinf-U2) < Tol) && ((U2-Usup) < Tol)) {
|
||||
if (((Uinf-U2) < Tol) && ((U2-Usup) < Tol))
|
||||
{
|
||||
Extrema_POnCurv2d MyPOnCurve(U2, P2);
|
||||
mySqDist[myNbExt] = P.SquareDistance(P2);
|
||||
myPoint[myNbExt] = MyPOnCurve;
|
||||
@ -146,7 +159,7 @@ void Extrema_ExtPElC2d::Perform (const gp_Pnt2d& P,
|
||||
const Standard_Real Uinf,
|
||||
const Standard_Real Usup)
|
||||
{
|
||||
// gp_Pnt2d OR, P1, P2;
|
||||
// gp_Pnt2d OR, P1, P2;
|
||||
gp_Pnt2d OR;
|
||||
OR = E.Location();
|
||||
|
||||
|
27
tests/bugs/modalg_5/bug24422
Normal file
27
tests/bugs/modalg_5/bug24422
Normal file
@ -0,0 +1,27 @@
|
||||
puts "================"
|
||||
puts "OCC24422"
|
||||
puts "================"
|
||||
puts ""
|
||||
#######################################################################
|
||||
# Wrong result done by FaceClassifier algorythm
|
||||
#######################################################################
|
||||
|
||||
restore [locate_data_file bug24422_Compound.brep] b
|
||||
explode b f
|
||||
copy b_1 f
|
||||
|
||||
point p 115.945392440981 106 230.000108990528
|
||||
point p_proj 230.00010899052799 1925.9453924409811
|
||||
set info [b2dclassify f p_proj]
|
||||
|
||||
if { [regexp "The point is OUT of shape" $info] != 1 } {
|
||||
puts "Error : point should be ON shape"
|
||||
} else {
|
||||
puts "OK: point is OUT of shape"
|
||||
}
|
||||
|
||||
axo
|
||||
fit
|
||||
set only_screen_axo 1
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user