mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0026426: Draft angle algorithm modifies input argument + the result of the operation have very large tolerance values
Test-case for issue #26426
This commit is contained in:
parent
e438ef2550
commit
345d30560e
File diff suppressed because it is too large
Load Diff
@ -22,6 +22,7 @@
|
|||||||
#include <Standard_Handle.hxx>
|
#include <Standard_Handle.hxx>
|
||||||
|
|
||||||
#include <TopTools_ListOfShape.hxx>
|
#include <TopTools_ListOfShape.hxx>
|
||||||
|
#include <TopTools_DataMapOfShapeShape.hxx>
|
||||||
#include <BRepBuilderAPI_ModifyShape.hxx>
|
#include <BRepBuilderAPI_ModifyShape.hxx>
|
||||||
#include <Standard_Real.hxx>
|
#include <Standard_Real.hxx>
|
||||||
#include <Standard_Boolean.hxx>
|
#include <Standard_Boolean.hxx>
|
||||||
@ -185,6 +186,14 @@ public:
|
|||||||
//! <S>.
|
//! <S>.
|
||||||
Standard_EXPORT virtual const TopTools_ListOfShape& Modified (const TopoDS_Shape& S) Standard_OVERRIDE;
|
Standard_EXPORT virtual const TopTools_ListOfShape& Modified (const TopoDS_Shape& S) Standard_OVERRIDE;
|
||||||
|
|
||||||
|
//! Returns the modified shape corresponding to <S>.
|
||||||
|
//! S can correspond to the entire initial shape or to its subshape.
|
||||||
|
//! Raises exceptions
|
||||||
|
//! Standard_NoSuchObject if S is not the initial shape or
|
||||||
|
//! a subshape of the initial shape to which the
|
||||||
|
//! transformation has been applied.
|
||||||
|
Standard_EXPORT virtual TopoDS_Shape ModifiedShape (const TopoDS_Shape& S) const Standard_OVERRIDE;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -196,10 +205,9 @@ protected:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
Standard_EXPORT void CorrectVertexTol();
|
||||||
|
|
||||||
|
TopTools_DataMapOfShapeShape myVtxToReplace;
|
||||||
TopTools_ListOfShape myModifiedShapes;
|
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -54,13 +54,91 @@
|
|||||||
#include <TopoDS_Shape.hxx>
|
#include <TopoDS_Shape.hxx>
|
||||||
#include <TopoDS_Vertex.hxx>
|
#include <TopoDS_Vertex.hxx>
|
||||||
#include <TopTools_ListIteratorOfListOfShape.hxx>
|
#include <TopTools_ListIteratorOfListOfShape.hxx>
|
||||||
|
#include <GeomLib_CheckCurveOnSurface.hxx>
|
||||||
|
#include <BRepLib.hxx>
|
||||||
|
//
|
||||||
|
static Standard_Real EvalTol(const Handle(Geom_Curve)& C3d,
|
||||||
|
const Handle(Geom2d_Curve) C2d,
|
||||||
|
const Handle(Geom_Surface)& S,
|
||||||
|
const Standard_Real f,
|
||||||
|
const Standard_Real l)
|
||||||
|
{
|
||||||
|
Standard_Real first = f, last = l;
|
||||||
|
//Set first, last to avoid ErrosStatus = 2 because of
|
||||||
|
//too strong checking of limits in class CheckCurveOnSurface
|
||||||
|
//
|
||||||
|
if(!C3d->IsPeriodic())
|
||||||
|
{
|
||||||
|
first = Max(first, C3d->FirstParameter());
|
||||||
|
last = Min(last, C3d->LastParameter());
|
||||||
|
}
|
||||||
|
if(!C2d->IsPeriodic())
|
||||||
|
{
|
||||||
|
first = Max(first, C2d->FirstParameter());
|
||||||
|
last = Min(last, C2d->LastParameter());
|
||||||
|
}
|
||||||
|
|
||||||
|
GeomLib_CheckCurveOnSurface CT(C3d, S, first, last);
|
||||||
|
CT.Perform(C2d);
|
||||||
|
if(CT.IsDone())
|
||||||
|
{
|
||||||
|
return CT.MaxDistance();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if(CT.ErrorStatus() == 3 || (CT.ErrorStatus() == 2 &&
|
||||||
|
(C3d->IsPeriodic() || C2d->IsPeriodic())))
|
||||||
|
{
|
||||||
|
//Try to estimate by sample points
|
||||||
|
Standard_Integer nbint = 22;
|
||||||
|
Standard_Real dt = (last - first) / nbint;
|
||||||
|
dt = Max(dt, Precision::Confusion());
|
||||||
|
Standard_Real d, dmax = 0.;
|
||||||
|
gp_Pnt2d aP2d;
|
||||||
|
gp_Pnt aPC, aPS;
|
||||||
|
Standard_Integer cnt = 0;
|
||||||
|
Standard_Real t = first;
|
||||||
|
for(; t <= last; t += dt)
|
||||||
|
{
|
||||||
|
cnt++;
|
||||||
|
C2d->D0(t, aP2d);
|
||||||
|
C3d->D0(t, aPC);
|
||||||
|
S->D0(aP2d.X(), aP2d.Y(), aPS);
|
||||||
|
d = aPS.SquareDistance(aPC);
|
||||||
|
if(d > dmax)
|
||||||
|
{
|
||||||
|
dmax = d;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if(cnt < nbint + 1)
|
||||||
|
{
|
||||||
|
t = last;
|
||||||
|
C2d->D0(t, aP2d);
|
||||||
|
C3d->D0(t, aPC);
|
||||||
|
S->D0(aP2d.X(), aP2d.Y(), aPS);
|
||||||
|
d = aPS.SquareDistance(aPC);
|
||||||
|
if(d > dmax)
|
||||||
|
{
|
||||||
|
dmax = d;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dmax = 1.2 * Sqrt(dmax);
|
||||||
|
return dmax;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
return 0.;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : Draft_Modification
|
//function : Draft_Modification
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
Draft_Modification::Draft_Modification (const TopoDS_Shape& S) :
|
Draft_Modification::Draft_Modification (const TopoDS_Shape& S) :
|
||||||
myComp(Standard_False),myShape(S)
|
myComp(Standard_False),myShape(S)
|
||||||
{
|
{
|
||||||
TopExp::MapShapesAndAncestors(myShape,TopAbs_EDGE,TopAbs_FACE,myEFMap);
|
TopExp::MapShapesAndAncestors(myShape,TopAbs_EDGE,TopAbs_FACE,myEFMap);
|
||||||
}
|
}
|
||||||
@ -103,10 +181,10 @@ void Draft_Modification::Init(const TopoDS_Shape& S)
|
|||||||
//=======================================================================
|
//=======================================================================
|
||||||
|
|
||||||
Standard_Boolean Draft_Modification::Add(const TopoDS_Face& F,
|
Standard_Boolean Draft_Modification::Add(const TopoDS_Face& F,
|
||||||
const gp_Dir& Direction,
|
const gp_Dir& Direction,
|
||||||
const Standard_Real Angle,
|
const Standard_Real Angle,
|
||||||
const gp_Pln& NeutralPlane,
|
const gp_Pln& NeutralPlane,
|
||||||
const Standard_Boolean Flag)
|
const Standard_Boolean Flag)
|
||||||
{
|
{
|
||||||
if (!badShape.IsNull()) {
|
if (!badShape.IsNull()) {
|
||||||
Standard_ConstructionError::Raise();
|
Standard_ConstructionError::Raise();
|
||||||
@ -141,7 +219,7 @@ void Draft_Modification::Remove(const TopoDS_Face& F)
|
|||||||
if (myFMap.FindFromKey(theF).RootFace().IsSame(curFace)) {
|
if (myFMap.FindFromKey(theF).RootFace().IsSame(curFace)) {
|
||||||
conneF.Append(theF);
|
conneF.Append(theF);
|
||||||
if (theF.IsSame(badShape)) {
|
if (theF.IsSame(badShape)) {
|
||||||
badShape.Nullify();
|
badShape.Nullify();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -167,7 +245,7 @@ void Draft_Modification::Remove(const TopoDS_Face& F)
|
|||||||
{
|
{
|
||||||
const TopoDS_Edge& theE = myEMap.FindKey(i);
|
const TopoDS_Edge& theE = myEMap.FindKey(i);
|
||||||
if (myEMap.FindFromKey(theE).RootFace().IsSame(curFace))
|
if (myEMap.FindFromKey(theE).RootFace().IsSame(curFace))
|
||||||
conneF.Append(theE);
|
conneF.Append(theE);
|
||||||
}
|
}
|
||||||
ltod.Initialize(conneF);
|
ltod.Initialize(conneF);
|
||||||
while (ltod.More()) {
|
while (ltod.More()) {
|
||||||
@ -244,7 +322,7 @@ const TopTools_ListOfShape & Draft_Modification::ConnectedFaces(const TopoDS_Fac
|
|||||||
}
|
}
|
||||||
|
|
||||||
return conneF;
|
return conneF;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -270,7 +348,7 @@ const TopTools_ListOfShape & Draft_Modification::ModifiedFaces()
|
|||||||
}
|
}
|
||||||
|
|
||||||
return conneF;
|
return conneF;
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -281,11 +359,11 @@ const TopTools_ListOfShape & Draft_Modification::ModifiedFaces()
|
|||||||
//=======================================================================
|
//=======================================================================
|
||||||
|
|
||||||
Standard_Boolean Draft_Modification::NewSurface(const TopoDS_Face& F,
|
Standard_Boolean Draft_Modification::NewSurface(const TopoDS_Face& F,
|
||||||
Handle(Geom_Surface)& S,
|
Handle(Geom_Surface)& S,
|
||||||
TopLoc_Location& L,
|
TopLoc_Location& L,
|
||||||
Standard_Real& Tol,
|
Standard_Real& Tol,
|
||||||
Standard_Boolean& RevWires,
|
Standard_Boolean& RevWires,
|
||||||
Standard_Boolean& RevFace)
|
Standard_Boolean& RevFace)
|
||||||
{
|
{
|
||||||
if (!IsDone()) {Standard_DomainError::Raise();}
|
if (!IsDone()) {Standard_DomainError::Raise();}
|
||||||
|
|
||||||
@ -305,7 +383,7 @@ Standard_Boolean Draft_Modification::NewSurface(const TopoDS_Face& F,
|
|||||||
|
|
||||||
return Standard_True;
|
return Standard_True;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : NewCurve
|
//function : NewCurve
|
||||||
@ -313,19 +391,19 @@ Standard_Boolean Draft_Modification::NewSurface(const TopoDS_Face& F,
|
|||||||
//=======================================================================
|
//=======================================================================
|
||||||
|
|
||||||
Standard_Boolean Draft_Modification::NewCurve(const TopoDS_Edge& E,
|
Standard_Boolean Draft_Modification::NewCurve(const TopoDS_Edge& E,
|
||||||
Handle(Geom_Curve)& C,
|
Handle(Geom_Curve)& C,
|
||||||
TopLoc_Location& L,
|
TopLoc_Location& L,
|
||||||
Standard_Real& Tol)
|
Standard_Real& Tol)
|
||||||
{
|
{
|
||||||
if (!IsDone()) {Standard_DomainError::Raise();}
|
if (!IsDone()) {Standard_DomainError::Raise();}
|
||||||
|
|
||||||
if (!myEMap.Contains(E))
|
if (!myEMap.Contains(E))
|
||||||
return Standard_False;
|
return Standard_False;
|
||||||
|
|
||||||
const Draft_EdgeInfo& Einf= myEMap.FindFromKey(E);
|
const Draft_EdgeInfo& Einf= myEMap.FindFromKey(E);
|
||||||
if (!myEMap.FindFromKey(E).NewGeometry())
|
if (!myEMap.FindFromKey(E).NewGeometry())
|
||||||
return Standard_False;
|
return Standard_False;
|
||||||
|
|
||||||
Tol = Einf.Tolerance();
|
Tol = Einf.Tolerance();
|
||||||
Tol = Max(Tol, BRep_Tool::Tolerance(E));
|
Tol = Max(Tol, BRep_Tool::Tolerance(E));
|
||||||
L.Identity();
|
L.Identity();
|
||||||
@ -342,8 +420,8 @@ Standard_Boolean Draft_Modification::NewCurve(const TopoDS_Edge& E,
|
|||||||
//=======================================================================
|
//=======================================================================
|
||||||
|
|
||||||
Standard_Boolean Draft_Modification::NewPoint(const TopoDS_Vertex& V,
|
Standard_Boolean Draft_Modification::NewPoint(const TopoDS_Vertex& V,
|
||||||
gp_Pnt& P,
|
gp_Pnt& P,
|
||||||
Standard_Real& Tol)
|
Standard_Real& Tol)
|
||||||
{
|
{
|
||||||
if (!IsDone()) {Standard_DomainError::Raise();};
|
if (!IsDone()) {Standard_DomainError::Raise();};
|
||||||
|
|
||||||
@ -363,24 +441,26 @@ Standard_Boolean Draft_Modification::NewPoint(const TopoDS_Vertex& V,
|
|||||||
//=======================================================================
|
//=======================================================================
|
||||||
|
|
||||||
Standard_Boolean Draft_Modification::NewCurve2d(const TopoDS_Edge& E,
|
Standard_Boolean Draft_Modification::NewCurve2d(const TopoDS_Edge& E,
|
||||||
const TopoDS_Face& F,
|
const TopoDS_Face& F,
|
||||||
const TopoDS_Edge& NewE,
|
const TopoDS_Edge& NewE,
|
||||||
const TopoDS_Face&,
|
const TopoDS_Face&,
|
||||||
Handle(Geom2d_Curve)& C,
|
Handle(Geom2d_Curve)& C,
|
||||||
Standard_Real& Tol)
|
Standard_Real& Tol)
|
||||||
{
|
{
|
||||||
|
|
||||||
if (!IsDone()) {Standard_DomainError::Raise();};
|
if (!IsDone()) {Standard_DomainError::Raise();};
|
||||||
|
|
||||||
if (!myEMap.Contains(E)) {
|
if (!myEMap.Contains(E)) {
|
||||||
return Standard_False;
|
return Standard_False;
|
||||||
}
|
}
|
||||||
|
|
||||||
Standard_Real Fp,Lp;
|
Standard_Real Fp,Lp;
|
||||||
BRep_Tool::Range(NewE,Fp,Lp);
|
BRep_Tool::Range(NewE,Fp,Lp);
|
||||||
|
|
||||||
Handle(Geom_Surface) SB = myFMap.FindFromKey(F).Geometry();
|
Handle(Geom_Surface) SB = myFMap.FindFromKey(F).Geometry();
|
||||||
|
|
||||||
|
Tol = BRep_Tool::Tolerance(E);
|
||||||
|
|
||||||
const Draft_EdgeInfo& Einf = myEMap.FindFromKey(E);
|
const Draft_EdgeInfo& Einf = myEMap.FindFromKey(E);
|
||||||
if ( Einf.FirstFace().IsSame(F) && !Einf.FirstPC().IsNull()) {
|
if ( Einf.FirstFace().IsSame(F) && !Einf.FirstPC().IsNull()) {
|
||||||
C = Einf.FirstPC();
|
C = Einf.FirstPC();
|
||||||
@ -389,21 +469,19 @@ Standard_Boolean Draft_Modification::NewCurve2d(const TopoDS_Edge& E,
|
|||||||
C = Einf.SecondPC();
|
C = Einf.SecondPC();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
||||||
if (!myEMap.FindFromKey(E).NewGeometry()) {
|
if (!myEMap.FindFromKey(E).NewGeometry()) {
|
||||||
Standard_Real Fpi,Lpi;
|
Standard_Real Fpi,Lpi;
|
||||||
BRep_Tool::Range(E,Fpi,Lpi);
|
BRep_Tool::Range(E,Fpi,Lpi);
|
||||||
if (Fpi <= Fp && Fp <= Lpi && Fpi <= Lp && Lp <= Lpi) {
|
if (Fpi <= Fp && Fp <= Lpi && Fpi <= Lp && Lp <= Lpi) {
|
||||||
return Standard_False;
|
return Standard_False;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Tol = BRep_Tool::Tolerance(E);
|
|
||||||
|
|
||||||
// if (!BRep_Tool::IsClosed(E,F)) {
|
// if (!BRep_Tool::IsClosed(E,F)) {
|
||||||
BRep_Tool::Range(NewE,Fp,Lp);
|
BRep_Tool::Range(NewE,Fp,Lp);
|
||||||
Handle(Geom_TrimmedCurve) TC = new Geom_TrimmedCurve(myEMap.FindFromKey(E).Geometry(),
|
Handle(Geom_TrimmedCurve) TC = new Geom_TrimmedCurve(myEMap.FindFromKey(E).Geometry(),
|
||||||
Fp,Lp);
|
Fp,Lp);
|
||||||
Fp = TC->FirstParameter();
|
Fp = TC->FirstParameter();
|
||||||
Lp = TC->LastParameter();
|
Lp = TC->LastParameter();
|
||||||
BRep_Builder B;
|
BRep_Builder B;
|
||||||
@ -426,9 +504,9 @@ Standard_Boolean Draft_Modification::NewCurve2d(const TopoDS_Edge& E,
|
|||||||
}
|
}
|
||||||
|
|
||||||
JeRecadre = JeRecadre ||
|
JeRecadre = JeRecadre ||
|
||||||
(typs == STANDARD_TYPE(Geom_CylindricalSurface)) ||
|
(typs == STANDARD_TYPE(Geom_CylindricalSurface)) ||
|
||||||
(typs == STANDARD_TYPE(Geom_SphericalSurface)) ||
|
(typs == STANDARD_TYPE(Geom_SphericalSurface)) ||
|
||||||
(typs == STANDARD_TYPE(Geom_ConicalSurface));
|
(typs == STANDARD_TYPE(Geom_ConicalSurface));
|
||||||
|
|
||||||
if ( JeRecadre) {
|
if ( JeRecadre) {
|
||||||
Standard_Boolean bTranslate;
|
Standard_Boolean bTranslate;
|
||||||
@ -459,6 +537,15 @@ Standard_Boolean Draft_Modification::NewCurve2d(const TopoDS_Edge& E,
|
|||||||
C->Translate(aV2DT);
|
C->Translate(aV2DT);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//
|
||||||
|
Handle(Geom_Curve) aC3d = BRep_Tool::Curve(NewE, Fp, Lp);
|
||||||
|
Standard_Real newtol = EvalTol(aC3d, C, SB, Fp, Lp);
|
||||||
|
if(newtol > Tol)
|
||||||
|
{
|
||||||
|
Tol = newtol;
|
||||||
|
BRep_Builder B;
|
||||||
|
B.UpdateEdge(NewE, newtol);
|
||||||
|
}
|
||||||
return Standard_True;
|
return Standard_True;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -469,9 +556,9 @@ Standard_Boolean Draft_Modification::NewCurve2d(const TopoDS_Edge& E,
|
|||||||
//=======================================================================
|
//=======================================================================
|
||||||
|
|
||||||
Standard_Boolean Draft_Modification::NewParameter(const TopoDS_Vertex& V,
|
Standard_Boolean Draft_Modification::NewParameter(const TopoDS_Vertex& V,
|
||||||
const TopoDS_Edge& E,
|
const TopoDS_Edge& E,
|
||||||
Standard_Real& P,
|
Standard_Real& P,
|
||||||
Standard_Real& Tol)
|
Standard_Real& Tol)
|
||||||
{
|
{
|
||||||
|
|
||||||
if (!IsDone()) {Standard_DomainError::Raise();};
|
if (!IsDone()) {Standard_DomainError::Raise();};
|
||||||
@ -502,24 +589,24 @@ Standard_Boolean Draft_Modification::NewParameter(const TopoDS_Vertex& V,
|
|||||||
Standard_Real FirstPar = GC->FirstParameter(), LastPar = GC->LastParameter();
|
Standard_Real FirstPar = GC->FirstParameter(), LastPar = GC->LastParameter();
|
||||||
Standard_Real pconf = Precision::PConfusion();
|
Standard_Real pconf = Precision::PConfusion();
|
||||||
if (Abs( paramf - LastPar ) <= pconf)
|
if (Abs( paramf - LastPar ) <= pconf)
|
||||||
{
|
{
|
||||||
paramf = FirstPar;
|
paramf = FirstPar;
|
||||||
FV.Orientation(E.Orientation());
|
FV.Orientation(E.Orientation());
|
||||||
if (V.IsEqual( FV ))
|
if (V.IsEqual( FV ))
|
||||||
P = paramf;
|
P = paramf;
|
||||||
}
|
}
|
||||||
|
|
||||||
FV.Orientation(E.Orientation());
|
FV.Orientation(E.Orientation());
|
||||||
if (!V.IsEqual(FV) && P <= paramf) {
|
if (!V.IsEqual(FV) && P <= paramf) {
|
||||||
if (GC->IsPeriodic()) {
|
if (GC->IsPeriodic()) {
|
||||||
P += GC->Period();
|
P += GC->Period();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
P = GC->LastParameter();
|
P = GC->LastParameter();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Tol = Max (BRep_Tool::Tolerance(V), BRep_Tool::Tolerance(E));
|
Tol = Max (BRep_Tool::Tolerance(V), BRep_Tool::Tolerance(E));
|
||||||
return Standard_True;
|
return Standard_True;
|
||||||
}
|
}
|
||||||
@ -532,13 +619,13 @@ Standard_Boolean Draft_Modification::NewParameter(const TopoDS_Vertex& V,
|
|||||||
//=======================================================================
|
//=======================================================================
|
||||||
|
|
||||||
GeomAbs_Shape Draft_Modification::Continuity(const TopoDS_Edge& E,
|
GeomAbs_Shape Draft_Modification::Continuity(const TopoDS_Edge& E,
|
||||||
const TopoDS_Face& F1,
|
const TopoDS_Face& F1,
|
||||||
const TopoDS_Face& F2,
|
const TopoDS_Face& F2,
|
||||||
const TopoDS_Edge&,
|
const TopoDS_Edge&,
|
||||||
const TopoDS_Face&,
|
const TopoDS_Face&,
|
||||||
const TopoDS_Face&)
|
const TopoDS_Face&)
|
||||||
{
|
{
|
||||||
return BRep_Tool::Continuity(E,F1,F2);
|
return BRep_Tool::Continuity(E,F1,F2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1508,6 +1508,7 @@ void Draft_Modification::Perform ()
|
|||||||
|
|
||||||
for (Vinf.InitEdgeIterator();Vinf.MoreEdge(); Vinf.NextEdge()) {
|
for (Vinf.InitEdgeIterator();Vinf.MoreEdge(); Vinf.NextEdge()) {
|
||||||
const TopoDS_Edge& Edg = Vinf.Edge();
|
const TopoDS_Edge& Edg = Vinf.Edge();
|
||||||
|
Standard_Real initpar = Vinf.Parameter(Edg);
|
||||||
//const Draft_EdgeInfo& Einf = myEMap(Edg);
|
//const Draft_EdgeInfo& Einf = myEMap(Edg);
|
||||||
Draft_EdgeInfo& Einf = myEMap.ChangeFromKey(Edg);
|
Draft_EdgeInfo& Einf = myEMap.ChangeFromKey(Edg);
|
||||||
//Vinf.ChangeParameter(Edg) = Parameter(Einf.Geometry(),pvt);
|
//Vinf.ChangeParameter(Edg) = Parameter(Einf.Geometry(),pvt);
|
||||||
@ -1520,7 +1521,19 @@ void Draft_Modification::Perform ()
|
|||||||
Vinf.ChangeParameter(Edg) = SmartParameter( Einf, BRep_Tool::Tolerance(Edg), pvt, done, S1, S2 );
|
Vinf.ChangeParameter(Edg) = SmartParameter( Einf, BRep_Tool::Tolerance(Edg), pvt, done, S1, S2 );
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
|
if(Abs(initpar - param) > Precision::PConfusion())
|
||||||
|
{
|
||||||
|
Standard_Real f, l;
|
||||||
|
TopLoc_Location Loc;
|
||||||
|
const Handle(Geom_Curve)& aC = BRep_Tool::Curve(Edg, Loc, f, l);
|
||||||
|
if(aC->DynamicType() == STANDARD_TYPE(Geom_TrimmedCurve))
|
||||||
|
{
|
||||||
|
Einf.SetNewGeometry(Standard_True);
|
||||||
|
}
|
||||||
|
}
|
||||||
Vinf.ChangeParameter(Edg) = param;
|
Vinf.ChangeParameter(Edg) = param;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
32
tests/bugs/modalg_6/bug26426
Normal file
32
tests/bugs/modalg_6/bug26426
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
puts "========"
|
||||||
|
puts "OCC26426"
|
||||||
|
puts "========"
|
||||||
|
puts ""
|
||||||
|
################################################################################################################
|
||||||
|
# Draft angle algorithm modifies input argument + the result of the operation have very large tolerance values
|
||||||
|
################################################################################################################
|
||||||
|
|
||||||
|
restore [locate_data_file OCC26426-prism_shape.brep] b
|
||||||
|
|
||||||
|
set bug_info_0 [tolerance b]
|
||||||
|
set bug_info_0 [lindex $bug_info_0 1]
|
||||||
|
set bug_info_0 [string trim [string range $bug_info_0 [expr {[string first "=" $bug_info_0] + 1}] [expr {[string length $bug_info_0] - 1}]]]
|
||||||
|
|
||||||
|
explode b f
|
||||||
|
depouille r b 0 0 -1 b_1 -10 0 0 -40 0 0 1
|
||||||
|
|
||||||
|
set bug_info_1 [tolerance b]
|
||||||
|
set bug_info_1 [lindex $bug_info_1 1]
|
||||||
|
set bug_info_1 [string trim [string range $bug_info_1 [expr {[string first "=" $bug_info_1] + 1}] [expr {[string length $bug_info_1] - 1}]]]
|
||||||
|
|
||||||
|
set bug_info_2 [tolerance r]
|
||||||
|
set bug_info_2 [lindex $bug_info_2 1]
|
||||||
|
set bug_info_2 [string trim [string range $bug_info_2 [expr {[string first "=" $bug_info_2] + 1}] [expr {[string length $bug_info_2] - 1}]]]
|
||||||
|
|
||||||
|
if {$bug_info_0 < $bug_info_1} {
|
||||||
|
puts "ERROR: OCC26426 is reproduced. Tolerance has been increased (case 1)."
|
||||||
|
}
|
||||||
|
|
||||||
|
if {[expr {$bug_info_0 + 0.0000001}] < $bug_info_2} {
|
||||||
|
puts "ERROR: OCC26426 is reproduced. Tolerance has been increased (case 2)."
|
||||||
|
}
|
@ -1,5 +1,7 @@
|
|||||||
#E6----------------------------------------------
|
#E6----------------------------------------------
|
||||||
puts "TODO OCC22803 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
#puts "TODO OCC22803 ALL: Faulty shapes in variables faulty_1 to faulty_"
|
||||||
|
puts "TODO OCC26426 ALL: Error: The tolerance of the resulting shape is too big "
|
||||||
|
|
||||||
|
|
||||||
ptorus pt 25 24 90
|
ptorus pt 25 24 90
|
||||||
profile pr o 20 18 5 p 0 -1 0 1 0 0 l 10 t 0 30 \
|
profile pr o 20 18 5 p 0 -1 0 1 0 0 l 10 t 0 30 \
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#C5----------------------------------------------
|
#C5----------------------------------------------
|
||||||
puts "TODO OCC22803 All:Faulty shapes in variables faulty_1 to faulty_6"
|
puts "TODO OCC22803 All:Faulty shapes in variables faulty_1 to faulty_"
|
||||||
|
|
||||||
plane ps 10 -3 0 1 0 0 0 .2 1
|
plane ps 10 -3 0 1 0 0 0 .2 1
|
||||||
psphere ps ps 20
|
psphere ps ps 20
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#D3---------------------------------------------
|
#D3---------------------------------------------
|
||||||
puts "TODO OCC22803 All:Faulty shapes in variables faulty_1 to faulty_6"
|
puts "TODO OCC22803 All:Faulty shapes in variables faulty_1 to faulty_"
|
||||||
puts "TODO OCC22803 Linux Windows: Error : The area of the resulting shape is"
|
puts "TODO OCC22803 Linux Windows: Error : The area of the resulting shape is"
|
||||||
|
|
||||||
plane pt 0 0 0 1 0 0
|
plane pt 0 0 0 1 0 0
|
||||||
|
@ -1,8 +1,9 @@
|
|||||||
# Original bug : pro12877
|
# Original bug : pro12877
|
||||||
# Date : 02 Dec 98
|
# Date : 02 Dec 98
|
||||||
|
|
||||||
puts "TODO OCC22803 All: Error: The tolerance of the resulting shape is too big"
|
#puts "TODO OCC22803 All: Error: The tolerance of the resulting shape is too big"
|
||||||
#puts "TODO OCC23511 Linux: The area of the resulting shape is 186543"
|
#puts "TODO OCC23511 Linux: The area of the resulting shape is 186543"
|
||||||
|
puts "TODO OCC26426 All: Faulty shapes in variables faulty_1 to faulty_"
|
||||||
|
|
||||||
restore [locate_data_file CFE903_pro12ggx.rle] base
|
restore [locate_data_file CFE903_pro12ggx.rle] base
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# Original bug : pro16449
|
# Original bug : pro16449
|
||||||
# Date : 18 Dec 98
|
# Date : 18 Dec 98
|
||||||
|
|
||||||
puts "TODO OCC22803 All:Faulty shapes in variables faulty_1 to faulty_4"
|
puts "TODO OCC22803 All:Faulty shapes in variables faulty_1 to faulty_"
|
||||||
|
|
||||||
restore [locate_data_file CFE903_pro16gha.rle] base
|
restore [locate_data_file CFE903_pro16gha.rle] base
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user