1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0022383: Four and more points at least on curve

This commit is contained in:
OAN 2011-09-22 07:43:08 +00:00 committed by bugmaster
parent 0d36f7e494
commit 4071d9e637
2 changed files with 154 additions and 129 deletions

View File

@ -592,6 +592,28 @@ static void filterParameters(const TColStd_IndexedMapOfReal& theParams,
isCandidateDefined = Standard_True; isCandidateDefined = Standard_True;
} }
theResult.Append(aParamTmp.Last()); theResult.Append(aParamTmp.Last());
if( theResult.Length() == 2 )
{
Standard_Real dist = theResult.Last() - theResult.First();
Standard_Integer nbint = (Standard_Integer)((dist / theFilterDist) + 0.5);
if( nbint > 1 )
{
//Five points more is maximum
if( nbint > 5 )
{
nbint = 5;
}
Standard_Integer i;
Standard_Real dU = dist / nbint;
for( i = 1; i < nbint; i++ )
{
theResult.InsertAfter(i, theResult.First()+i*dU);
}
}
}
} }
void BRepMesh_FastDiscretFace::InternalVertices(const Handle(BRepAdaptor_HSurface)& theCaro, void BRepMesh_FastDiscretFace::InternalVertices(const Handle(BRepAdaptor_HSurface)& theCaro,

View File

@ -26,8 +26,9 @@ void GCPnts_TangentialDeflection::EvaluateDu (
Standard_Real LTol = Precision::Confusion (); Standard_Real LTol = Precision::Confusion ();
if (Lt > LTol && N.Magnitude () > LTol) { if (Lt > LTol && N.Magnitude () > LTol) {
Standard_Real Lc = N.CrossMagnitude (T); Standard_Real Lc = N.CrossMagnitude (T);
if (Lc/Lt > LTol) { Standard_Real Ln = Lc/Lt;
Du = sqrt (8.0 * curvatureDeflection * Lt / Lc); if (Ln > LTol) {
Du = sqrt (8.0 * curvatureDeflection / Ln);
NotDone = Standard_False; NotDone = Standard_False;
} }
} }
@ -233,22 +234,17 @@ void GCPnts_TangentialDeflection::PerformCurve (const TheCurve& C)
{ {
Standard_Integer i; Standard_Integer i;
Standard_Boolean Correction, TooLarge, TooSmall, MorePoints;
gp_XYZ V1, V2; gp_XYZ V1, V2;
// gp_Pnt MiddlePoint, CurrentPoint, LastPoint, PreviousPoint;
gp_Pnt MiddlePoint, CurrentPoint, LastPoint; gp_Pnt MiddlePoint, CurrentPoint, LastPoint;
Standard_Real Coef, ACoef, FCoef, Du, Dusave, MiddleU, L1, L2; Standard_Real Du, Dusave, MiddleU, L1, L2;
Standard_Real U1 = firstu; Standard_Real U1 = firstu;
Standard_Real U2 = firstu;
Standard_Real AngleMax = angularDeflection * 0.5; //car on prend le point milieu
Standard_Real LTol = Precision::Confusion (); //protection longueur nulle Standard_Real LTol = Precision::Confusion (); //protection longueur nulle
Standard_Real ATol = Precision::Angular (); //protection angle nul Standard_Real ATol = Precision::Angular (); //protection angle nul
D0 (C, lastu, LastPoint); D0 (C, lastu, LastPoint);
//Initialization du calcul //Initialization du calcul
//---------------------------------------------------------------------
Standard_Boolean NotDone = Standard_True; Standard_Boolean NotDone = Standard_True;
Dusave = (lastu - firstu)*Us3; Dusave = (lastu - firstu)*Us3;
@ -301,7 +297,7 @@ void GCPnts_TangentialDeflection::PerformCurve (const TheCurve& C)
parameters.Remove (i); parameters.Remove (i);
pointsLength--; pointsLength--;
} }
Du = (lastu-firstu)*Us3; Du = Dusave;
} }
} }
else { else {
@ -335,8 +331,11 @@ void GCPnts_TangentialDeflection::PerformCurve (const TheCurve& C)
} }
//Traitement normal pour une courbe //Traitement normal pour une courbe
//------------------------------------------------------------------- Standard_Boolean MorePoints = Standard_True;
MorePoints = Standard_True; Standard_Real U2 = firstu;
Standard_Real AngleMax = angularDeflection * 0.5; //car on prend le point milieu
gp_Pnt aPrevPoint = points.Last();
while (MorePoints) { while (MorePoints) {
@ -350,18 +349,22 @@ void GCPnts_TangentialDeflection::PerformCurve (const TheCurve& C)
} }
else D0 (C, U2, CurrentPoint); //Point suivant else D0 (C, U2, CurrentPoint); //Point suivant
Standard_Real Coef, ACoef, FCoef;
Standard_Boolean Correction, TooLarge, TooSmall;
TooLarge = Standard_False; TooLarge = Standard_False;
TooSmall = Standard_False; TooSmall = Standard_False;
Correction = Standard_True; Correction = Standard_True;
Standard_Real lastCoef = 0;
while (Correction) { //Ajustement Du while (Correction) { //Ajustement Du
MiddleU = (U1+U2)*0.5; //Verif / au point milieu MiddleU = (U1+U2)*0.5; //Verif / au point milieu
D0 (C, MiddleU, MiddlePoint); D0 (C, MiddleU, MiddlePoint);
V1 = CurrentPoint.XYZ (); //Critere de fleche V1 = CurrentPoint.XYZ (); //Critere de fleche
V1.Subtract (points.Last().XYZ()); V1.Subtract (aPrevPoint.XYZ());
V2 = MiddlePoint.XYZ (); V2 = MiddlePoint.XYZ ();
V2.Subtract (points.Last().XYZ()); V2.Subtract (aPrevPoint.XYZ());
L1 = V1.Modulus (); L1 = V1.Modulus ();
if (L1 > LTol) FCoef = V1.CrossMagnitude(V2)/(L1*curvatureDeflection); if (L1 > LTol) FCoef = V1.CrossMagnitude(V2)/(L1*curvatureDeflection);
else FCoef = 0.0; else FCoef = 0.0;
@ -386,18 +389,24 @@ void GCPnts_TangentialDeflection::PerformCurve (const TheCurve& C)
Correction = Standard_False; Correction = Standard_False;
} }
else { else {
if (Coef >= 0.75 || TooLarge || TooSmall) { if (Coef >= 0.55 || TooLarge) {
parameters.Append (U2); parameters.Append (U2);
points .Append (CurrentPoint); points .Append (CurrentPoint);
aPrevPoint = CurrentPoint;
Correction = Standard_False; Correction = Standard_False;
} }
else if (TooSmall) {
Correction = Standard_False;
aPrevPoint = CurrentPoint;
}
else { else {
TooSmall = Standard_True; TooSmall = Standard_True;
Standard_Real UUU2 = U2; lastCoef = Coef;
//Standard_Real UUU2 = U2;
Du += Min((U2-U1)*(1.-Coef), Du*Us3); Du += Min((U2-U1)*(1.-Coef), Du*Us3);
U2 = U1 + Du; U2 = U1 + Du;
if (U2 >= lastu) U2 = UUU2; //if (U2 >= lastu) U2 = UUU2;
if (U2 >= lastu) { if (U2 >= lastu) {
parameters.Append (lastu); parameters.Append (lastu);
points .Append (LastPoint); points .Append (LastPoint);
@ -476,13 +485,12 @@ void GCPnts_TangentialDeflection::PerformCurve (const TheCurve& C)
points .SetValue (i, MiddlePoint); points .SetValue (i, MiddlePoint);
} }
//-- ------------------------------------------------------------
//-- On rajoute des points aux milieux des segments si le nombre //-- On rajoute des points aux milieux des segments si le nombre
//-- mini de points n'est pas atteint //-- mini de points n'est pas atteint
//-- //--
Standard_Integer Nbp = points.Length(); Standard_Integer Nbp = points.Length();
Standard_Integer MinNb= (9*minNbPnts)/10; Standard_Integer MinNb= (9*minNbPnts)/10;
if(MinNb<3) MinNb=3; //if(MinNb<4) MinNb=4;
//-- if(Nbp < MinNb) { cout<<"\n*"; } else { cout<<"\n."; } //-- if(Nbp < MinNb) { cout<<"\n*"; } else { cout<<"\n."; }
while(Nbp < MinNb) { while(Nbp < MinNb) {
@ -497,8 +505,3 @@ void GCPnts_TangentialDeflection::PerformCurve (const TheCurve& C)
} }
} }
} }