mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
0022383: Four and more points at least on curve
This commit is contained in:
parent
0d36f7e494
commit
4071d9e637
@ -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,
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
// File: GCPnts_TangentialDeflection.gxx
|
// File: GCPnts_TangentialDeflection.gxx
|
||||||
// Created: Fri Nov 8 11:26:11 1996
|
// Created: Fri Nov 8 11:26:11 1996
|
||||||
// Author: Jean Claude VAUTHIER
|
// Author: Jean Claude VAUTHIER
|
||||||
// <jcv@brunox.paris1.matra-dtv.fr>
|
// <jcv@brunox.paris1.matra-dtv.fr>
|
||||||
|
|
||||||
#include <GCPnts_DeflectionType.hxx>
|
#include <GCPnts_DeflectionType.hxx>
|
||||||
#include <Standard_ConstructionError.hxx>
|
#include <Standard_ConstructionError.hxx>
|
||||||
@ -16,9 +16,9 @@
|
|||||||
void GCPnts_TangentialDeflection::EvaluateDu (
|
void GCPnts_TangentialDeflection::EvaluateDu (
|
||||||
const TheCurve& C,
|
const TheCurve& C,
|
||||||
const Standard_Real U,
|
const Standard_Real U,
|
||||||
gp_Pnt& P,
|
gp_Pnt& P,
|
||||||
Standard_Real& Du,
|
Standard_Real& Du,
|
||||||
Standard_Boolean& NotDone) const {
|
Standard_Boolean& NotDone) const {
|
||||||
|
|
||||||
gp_Vec T, N;
|
gp_Vec T, N;
|
||||||
D2 (C, U, P, T, N);
|
D2 (C, U, P, T, N);
|
||||||
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -67,12 +68,12 @@ GCPnts_TangentialDeflection::GCPnts_TangentialDeflection (
|
|||||||
|
|
||||||
{
|
{
|
||||||
Initialize (C,
|
Initialize (C,
|
||||||
FirstParameter,
|
FirstParameter,
|
||||||
LastParameter,
|
LastParameter,
|
||||||
AngularDeflection,
|
AngularDeflection,
|
||||||
CurvatureDeflection,
|
CurvatureDeflection,
|
||||||
MinimumOfPoints,
|
MinimumOfPoints,
|
||||||
UTol);
|
UTol);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -95,8 +96,8 @@ void GCPnts_TangentialDeflection::Initialize (
|
|||||||
C.LastParameter (),
|
C.LastParameter (),
|
||||||
AngularDeflection,
|
AngularDeflection,
|
||||||
CurvatureDeflection,
|
CurvatureDeflection,
|
||||||
MinimumOfPoints,
|
MinimumOfPoints,
|
||||||
UTol);
|
UTol);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -147,14 +148,14 @@ void GCPnts_TangentialDeflection::Initialize (
|
|||||||
{
|
{
|
||||||
Handle_TheBSplineCurve BS = C.BSpline() ;
|
Handle_TheBSplineCurve BS = C.BSpline() ;
|
||||||
if (BS->NbPoles() == 2 ) PerformLinear (C);
|
if (BS->NbPoles() == 2 ) PerformLinear (C);
|
||||||
else PerformCurve (C);
|
else PerformCurve (C);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case GeomAbs_BezierCurve:
|
case GeomAbs_BezierCurve:
|
||||||
{
|
{
|
||||||
Handle_TheBezierCurve BZ = C.Bezier();
|
Handle_TheBezierCurve BZ = C.Bezier();
|
||||||
if (BZ->NbPoles() == 2) PerformLinear (C);
|
if (BZ->NbPoles() == 2) PerformLinear (C);
|
||||||
else PerformCurve (C);
|
else PerformCurve (C);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default: PerformCurve (C);
|
default: PerformCurve (C);
|
||||||
@ -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;
|
||||||
@ -270,38 +266,38 @@ void GCPnts_TangentialDeflection::PerformCurve (const TheCurve& C)
|
|||||||
Du = (lastu-firstu)/NbPoints;
|
Du = (lastu-firstu)/NbPoints;
|
||||||
MiddleU = firstu + Du;
|
MiddleU = firstu + Du;
|
||||||
for (i = 2; i < NbPoints; i++) {
|
for (i = 2; i < NbPoints; i++) {
|
||||||
D0 (C, MiddleU, MiddlePoint);
|
D0 (C, MiddleU, MiddlePoint);
|
||||||
V2 = MiddlePoint.XYZ();
|
V2 = MiddlePoint.XYZ();
|
||||||
V2.Subtract (CurrentPoint.XYZ());
|
V2.Subtract (CurrentPoint.XYZ());
|
||||||
L2 = V2.Modulus ();
|
L2 = V2.Modulus ();
|
||||||
if (L2 > LTol) {
|
if (L2 > LTol) {
|
||||||
if (((V2.CrossMagnitude (V1))/(L1*L2)) >= ATol) {
|
if (((V2.CrossMagnitude (V1))/(L1*L2)) >= ATol) {
|
||||||
//C'etait une singularite
|
//C'etait une singularite
|
||||||
IsLine = Standard_False;
|
IsLine = Standard_False;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (minNbPnts > 2) {
|
if (minNbPnts > 2) {
|
||||||
parameters.Append (MiddleU);
|
parameters.Append (MiddleU);
|
||||||
points .Append (MiddlePoint);
|
points .Append (MiddlePoint);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
MiddleU += Du;
|
MiddleU += Du;
|
||||||
}
|
}
|
||||||
if (IsLine) {
|
if (IsLine) {
|
||||||
//C'etait une droite (plusieurs poles alignes), Calcul termine :
|
//C'etait une droite (plusieurs poles alignes), Calcul termine :
|
||||||
parameters.Append (lastu);
|
parameters.Append (lastu);
|
||||||
points .Append (LastPoint);
|
points .Append (LastPoint);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
//c'etait une singularite on continue :
|
//c'etait une singularite on continue :
|
||||||
Standard_Integer pointsLength=points.Length ();
|
Standard_Integer pointsLength=points.Length ();
|
||||||
for (i = 2; i <= pointsLength; i++) {
|
for (i = 2; i <= pointsLength; i++) {
|
||||||
points .Remove (i);
|
points .Remove (i);
|
||||||
parameters.Remove (i);
|
parameters.Remove (i);
|
||||||
pointsLength--;
|
pointsLength--;
|
||||||
}
|
}
|
||||||
Du = (lastu-firstu)*Us3;
|
Du = Dusave;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -313,11 +309,11 @@ void GCPnts_TangentialDeflection::PerformCurve (const TheCurve& C)
|
|||||||
V1.Subtract (CurrentPoint.XYZ());
|
V1.Subtract (CurrentPoint.XYZ());
|
||||||
L1 = V1.Modulus ();
|
L1 = V1.Modulus ();
|
||||||
if (L1 < LTol) {
|
if (L1 < LTol) {
|
||||||
// L1 < LTol C'est une courbe de longueur nulle, calcul termine :
|
// L1 < LTol C'est une courbe de longueur nulle, calcul termine :
|
||||||
// on renvoi un segment de 2 points (protection)
|
// on renvoi un segment de 2 points (protection)
|
||||||
parameters.Append (lastu);
|
parameters.Append (lastu);
|
||||||
points .Append (LastPoint);
|
points .Append (LastPoint);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -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;
|
||||||
@ -378,48 +381,54 @@ void GCPnts_TangentialDeflection::PerformCurve (const TheCurve& C)
|
|||||||
else Coef = FCoef;
|
else Coef = FCoef;
|
||||||
|
|
||||||
|
|
||||||
if (Coef <= 1.0) {
|
if (Coef <= 1.0) {
|
||||||
if (Abs (lastu-U2) < uTol) {
|
if (Abs (lastu-U2) < uTol) {
|
||||||
parameters.Append (lastu);
|
parameters.Append (lastu);
|
||||||
points .Append (LastPoint);
|
points .Append (LastPoint);
|
||||||
MorePoints = Standard_False;
|
MorePoints = Standard_False;
|
||||||
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);
|
||||||
Correction = Standard_False;
|
aPrevPoint = CurrentPoint;
|
||||||
}
|
Correction = Standard_False;
|
||||||
else {
|
}
|
||||||
TooSmall = Standard_True;
|
else if (TooSmall) {
|
||||||
Standard_Real UUU2 = U2;
|
Correction = Standard_False;
|
||||||
Du += Min((U2-U1)*(1.-Coef), Du*Us3);
|
aPrevPoint = CurrentPoint;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
TooSmall = Standard_True;
|
||||||
|
lastCoef = Coef;
|
||||||
|
//Standard_Real UUU2 = U2;
|
||||||
|
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);
|
||||||
MorePoints = Standard_False;
|
MorePoints = Standard_False;
|
||||||
Correction = Standard_False;
|
Correction = Standard_False;
|
||||||
}
|
}
|
||||||
else D0 (C, U2, CurrentPoint);
|
else D0 (C, U2, CurrentPoint);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
||||||
if (Coef >= 1.5) {
|
if (Coef >= 1.5) {
|
||||||
U2 = MiddleU;
|
U2 = MiddleU;
|
||||||
CurrentPoint = MiddlePoint;
|
CurrentPoint = MiddlePoint;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
Du*=0.9;
|
Du*=0.9;
|
||||||
U2 = U1 + Du;
|
U2 = U1 + Du;
|
||||||
D0 (C, U2, CurrentPoint);
|
D0 (C, U2, CurrentPoint);
|
||||||
TooLarge = Standard_True;
|
TooLarge = Standard_True;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -428,37 +437,37 @@ void GCPnts_TangentialDeflection::PerformCurve (const TheCurve& C)
|
|||||||
|
|
||||||
if (MorePoints) {
|
if (MorePoints) {
|
||||||
if (U1 > firstu) {
|
if (U1 > firstu) {
|
||||||
if (FCoef > ACoef) {
|
if (FCoef > ACoef) {
|
||||||
//La fleche est critere de decoupage
|
//La fleche est critere de decoupage
|
||||||
EvaluateDu (C, U2, CurrentPoint, Du, NotDone);
|
EvaluateDu (C, U2, CurrentPoint, Du, NotDone);
|
||||||
if (NotDone) {
|
if (NotDone) {
|
||||||
Du += (Du-Dusave)*(Du/Dusave);
|
Du += (Du-Dusave)*(Du/Dusave);
|
||||||
if (Du > 1.5 * Dusave) Du = 1.5 * Dusave;
|
if (Du > 1.5 * Dusave) Du = 1.5 * Dusave;
|
||||||
if (Du < 0.75* Dusave) Du = 0.75 * Dusave;
|
if (Du < 0.75* Dusave) Du = 0.75 * Dusave;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
//L'angle est le critere de decoupage
|
//L'angle est le critere de decoupage
|
||||||
Du += (Du-Dusave)*(Du/Dusave);
|
Du += (Du-Dusave)*(Du/Dusave);
|
||||||
if (Du > 1.5 * Dusave) Du = 1.5 * Dusave;
|
if (Du > 1.5 * Dusave) Du = 1.5 * Dusave;
|
||||||
if (Du < 0.75* Dusave) Du = 0.75 * Dusave;
|
if (Du < 0.75* Dusave) Du = 0.75 * Dusave;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (Du < uTol) {
|
if (Du < uTol) {
|
||||||
Du = lastu - U2;
|
Du = lastu - U2;
|
||||||
if (Du < uTol) {
|
if (Du < uTol) {
|
||||||
parameters.Append (lastu);
|
parameters.Append (lastu);
|
||||||
points .Append (LastPoint);
|
points .Append (LastPoint);
|
||||||
MorePoints = Standard_False;
|
MorePoints = Standard_False;
|
||||||
}
|
}
|
||||||
else if (Du*Us3 > uTol) Du*=Us3;
|
else if (Du*Us3 > uTol) Du*=Us3;
|
||||||
}
|
}
|
||||||
U1 = U2;
|
U1 = U2;
|
||||||
Dusave = Du;
|
Dusave = Du;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//Recalage avant dernier point :
|
//Recalage avant dernier point :
|
||||||
i = points.Length()-1;
|
i = points.Length()-1;
|
||||||
// Real d = points (i).Distance (points (i+1));
|
// Real d = points (i).Distance (points (i+1));
|
||||||
// if (Abs(parameters (i) - parameters (i+1))<= 0.000001 || d < Precision::Confusion()) {
|
// if (Abs(parameters (i) - parameters (i+1))<= 0.000001 || d < Precision::Confusion()) {
|
||||||
@ -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)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user