Home
last modified time | relevance | path

Searched refs:epsV (Results 1 – 7 of 7) sorted by relevance

/dports/science/py-pygeodesy/PyGeodesy-21.9.16/test/
H A DtestEllipsoidalGeodTest.py26 def testGeodTest(self, test, line, precV, epsV, precK, epsK, precX, epsX): argument
32 self.test(line + 'lat', ll.lat, lat2, prec=precV, known=abs(ll.lat - lat2) < epsV)
33 self.test(line + 'lon', ll.lon, lon2, prec=precV, known=abs(ll.lon - lon2) < epsV)
34 self.test(line + 'fb', fb, azi2, prec=precV, known=abs(fb - azi2) < epsV)
57 precV, epsV = 3, 1.9e-3 variable
67 precV, epsV = 6, 1.5e-6 variable
579 t.testGeodTest(test.rstrip(), 'line %d ' % (n + 1,), precV, epsV, precK, epsK, precX, epsX)
/dports/cad/opencascade/opencascade-7.6.0/src/BRepFill/
H A DBRepFill_SectionPlacement.cxx132 Standard_Real tolrac, epsV, tol = Precision::Confusion(); in Perform() local
140 epsV = Max(BRep_Tool::Tolerance(VFirst), BRep_Tool::Tolerance(VLast)); in Perform()
144 tolrac = Min(tol,epsV); in Perform()
147 tolrac = Max(tol,epsV); in Perform()
H A DBRepFill_ShapeLaw.cxx355 Standard_Real epsV, f, l; in Handle() local
367 if (Bof) {epsV = BRep_Tool::Tolerance(V);} in Handle()
368 else epsV = 10*Precision::PConfusion(); in Handle()
369 Bof = Concat.Add(TC, epsV, Standard_True, in Handle()
371 if (!Bof) Bof = Concat.Add(TC, 200*epsV, in Handle()
H A DBRepFill_NSections.cxx205 Standard_Real epsV; in totalsurf() local
207 if (Bof) epsV = BRep_Tool::Tolerance(ComV); in totalsurf()
208 else epsV = Precision::Confusion(); in totalsurf()
209 Bof = CompBS.Add(curvBS, epsV, Standard_True, Standard_False, 1); in totalsurf()
210 if (!Bof) Bof = CompBS.Add(curvBS, 200*epsV, in totalsurf()
/dports/cad/opencascade/opencascade-7.6.0/src/BRepClass3d/
H A DBRepClass3d_SolidExplorer.cxx512 Standard_Real epsV = Max(eps * Max(Abs(V2), Abs(V1)), eps); in OtherSegment() local
513 if( Abs (U2 - U1) < epsU || Abs(V2 - V1) < epsV) { in OtherSegment()
/dports/cad/opencascade/opencascade-7.6.0/src/ChFi3d/
H A DChFi3d_Builder_0.cxx3930 Standard_Real First, Last, epsV, urefdeb, tolrac; in ChFi3d_PerformElSpine() local
4105 epsV = tol; in ChFi3d_PerformElSpine()
4108 epsV = BRep_Tool::Tolerance(V); in ChFi3d_PerformElSpine()
4163 tolrac = Min(tol, epsV); in ChFi3d_PerformElSpine()
4167 Bof = Concat.Add( TC, 2.*epsV, Standard_True ); in ChFi3d_PerformElSpine()
4170 Bof = Concat.Add( TC, 200.*epsV, Standard_True ); in ChFi3d_PerformElSpine()
/dports/cad/gmsh/gmsh-4.9.2-source/Geo/
H A DGFace.cpp1170 const double epsU = 1e-5 * ru, epsV = 1e-5 * rv; in closestPoint() local
1173 for(double v = vv.low(); v <= vv.high() + epsV; v += dv) { in closestPoint()