1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00
occt/src/IntWalk/IntWalk_PWalking.lxx
nbv 6fd0eb0c1e 0028764: [Regression to 7.0] Intersection of faces gives exception in debug mode
Some point were incorrectly removed from the Walking-line.

In the current fix, new method IntWalk_PWalking::RemoveAPoint(...) has been added and implemented in order to provide safe removing.

So, now methods AddAPoint(...) and RemoveAPoint(...) are recommended to use for work with the Walking-line.
2017-09-29 09:42:08 +03:00

85 lines
2.3 KiB
Plaintext

// Copyright (c) 1995-1999 Matra Datavision
// Copyright (c) 1999-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.
#include <StdFail_NotDone.hxx>
#include <IntSurf_LineOn2S.hxx>
inline Standard_Boolean IntWalk_PWalking::IsDone() const {
return done;
}
inline Standard_Integer IntWalk_PWalking::NbPoints() const {
if(!done) throw StdFail_NotDone();
return line->NbPoints();
}
inline const IntSurf_PntOn2S& IntWalk_PWalking::Value
(const Standard_Integer Index) const
{
if (!done) throw StdFail_NotDone();
return line->Value(Index);
}
inline const Handle(IntSurf_LineOn2S)& IntWalk_PWalking::Line () const {
if (!done) throw StdFail_NotDone();
return line;
}
inline Standard_Boolean IntWalk_PWalking::TangentAtFirst() const{
if(!done) throw StdFail_NotDone();
return tgfirst;
}
inline Standard_Boolean IntWalk_PWalking::TangentAtLast() const{
if(!done) throw StdFail_NotDone();
return tglast;
}
inline Standard_Boolean IntWalk_PWalking::IsClosed() const{
if(!done) throw StdFail_NotDone();
return close;
}
inline const gp_Dir& IntWalk_PWalking::TangentAtLine(Standard_Integer& theIndex) const
{
if(!done) throw StdFail_NotDone();
theIndex = myTangentIdx;
return tgdir;
}
#define REGLAGE 0
inline void IntWalk_PWalking::AddAPoint(const IntSurf_PntOn2S& POn2S) {
#if REGLAGE
Standard_Integer n=theLine->NbPoints();
if(n) {
gp_Vec V(POn2S.Value(),theLine->Value(n).Value());
Standard_Real u1,v1,u2,v2;
Standard_Real U1,V1,U2,V2;
POn2S.Parameters(u1,v1,u2,v2);
theLine->Value(n).Parameters(U1,V1,U2,V2);
printf("\n%3d: (%10.5g)(%+12.5g %+12.5g %+12.5g) (%+12.5g %+12.5g) (%+12.5g %+12.5g)",n,
V.Magnitude(),V.X(),V.Y(),V.Z(),U1-u1,V1-v1,U2-u2,V2-v2);
fflush(stdout);
}
#endif
line->Add(POn2S);
myTangentIdx = Max(myTangentIdx, 1);
}