// File: GeomPlate_PlateG0Criterion.cxx // Created: Wed Mar 5 10:04:41 1997 // Author: Joelle CHAUVET // //Modified by Jerome LEMONIER // Tue Jun 17 10:20:35 1997 // Modification de la comparaison dans la methode // Value (Appel a des distances remplace par le calcul // de la distance au carre) #include #include #include #include #include #include #include #include #include //============================================================================ //function : GeomPlate_PlateG0Criterion //purpose : //============================================================================ GeomPlate_PlateG0Criterion:: GeomPlate_PlateG0Criterion(const TColgp_SequenceOfXY& Data, const TColgp_SequenceOfXYZ& G0Data, const Standard_Real Maximum, const AdvApp2Var_CriterionType Type, const AdvApp2Var_CriterionRepartition Repart) { myData=Data; myXYZ=G0Data; myMaxValue = Maximum; myType = Type; myRepartition = Repart; } //============================================================================ //function : Value //purpose : //============================================================================ void GeomPlate_PlateG0Criterion::Value(AdvApp2Var_Patch& P, const AdvApp2Var_Context& C) const { Standard_Real UInt[2],VInt[2]; Standard_Integer MaxNbCoeff[2], NbCoeff[2]; Standard_Real * adrCoeff = NULL ; adrCoeff = (Standard_Real *) &P.Coefficients(1,C) ->ChangeArray1()(P.Coefficients(1,C)->Lower()); MaxNbCoeff[0] = C.ULimit(); MaxNbCoeff[1] = C.VLimit(); NbCoeff[0] = P.NbCoeffInU(); NbCoeff[1] = P.NbCoeffInV(); UInt[0] = P.U0(); UInt[1] = P.U1(); VInt[0] = P.V0(); VInt[1] = P.V1(); Standard_Real up,vp, dist = 0.; Standard_Integer dimension = 3 * NbCoeff[1]; TColStd_Array1OfReal Patch(1, NbCoeff[0] * dimension); TColStd_Array1OfReal Curve(1, dimension); TColStd_Array1OfReal Point(1, 3); Standard_Real * Coeffs = (Standard_Real *) &Patch.ChangeValue(1); Standard_Real * Digit = (Standard_Real *) &Point.ChangeValue(1); Standard_Integer k1, k2, pos, ll=1; for (k1 = 1; k1 <= NbCoeff[0]; k1++) { // JAG 99.04.29 pos = 3*(MaxNbCoeff[0])*(k1-1); pos = 3*(MaxNbCoeff[1])*(k1-1); for (k2 = 1; k2 <= NbCoeff[1]; k2++, pos+=3 ) { Patch(ll) = adrCoeff[pos]; Patch(ll+1) = adrCoeff[pos+1]; Patch(ll+2) = adrCoeff[pos+2]; ll += 3; } } Standard_Integer i, NbCtr = myData.Length(); for(i=1; i<=NbCtr; i++) { gp_XY P2d = myData.Value(i); // gp_Pnt PP = myXYZ.Value(i); gp_Pnt P3d; if ( UInt[0]dist ) { dist = DistTmp; } } } P.SetCritValue(Sqrt(dist)); } //============================================================================ //function : IsSatisfied //purpose : //============================================================================ Standard_Boolean GeomPlate_PlateG0Criterion::IsSatisfied(const AdvApp2Var_Patch& P) const { return (P.CritValue() < myMaxValue); }