Home
last modified time | relevance | path

Searched refs:dymin (Results 1 – 25 of 27) sorted by relevance

12

/dports/math/plplot-ada/plplot-5.15.0/src/
H A Dplvect.c153 PLFLT lscale, dx, dy, dxmin, dymin, umax, vmax;
186 dymin = 10E10;
203 dymin = ( dy < dymin ) ? dy : dymin;
229 dymin = dymin / vmax;
233 dymin = 10E10;
235 lscale = 1.5 * MIN( dxmin, dymin );
/dports/math/plplot/plplot-5.15.0/src/
H A Dplvect.c153 PLFLT lscale, dx, dy, dxmin, dymin, umax, vmax; in plfvect() local
186 dymin = 10E10; in plfvect()
203 dymin = ( dy < dymin ) ? dy : dymin; in plfvect()
229 dymin = dymin / vmax; in plfvect()
233 dymin = 10E10; in plfvect()
235 lscale = 1.5 * MIN( dxmin, dymin ); in plfvect()
/dports/graphics/blender/blender-2.91.0/source/blender/compositor/operations/
H A DCOM_RotateOperation.cpp84 const float dymin = input->ymin - this->m_centerY; in determineDependingAreaOfInterest() local
88 const float x1 = this->m_centerX + (this->m_cosine * dxmin + this->m_sine * dymin); in determineDependingAreaOfInterest()
89 const float x2 = this->m_centerX + (this->m_cosine * dxmax + this->m_sine * dymin); in determineDependingAreaOfInterest()
92 const float y1 = this->m_centerY + (-this->m_sine * dxmin + this->m_cosine * dymin); in determineDependingAreaOfInterest()
93 const float y2 = this->m_centerY + (-this->m_sine * dxmax + this->m_cosine * dymin); in determineDependingAreaOfInterest()
/dports/math/cgal/CGAL-5.3/include/CGAL/Intersections_3/internal/
H A DBbox_3_Segment_3_do_intersect.h217 CFT dymin, tymin, tymax, dymax; in do_intersect_bbox_segment_aux() local
232 dymin = qy - py; in do_intersect_bbox_segment_aux()
248 dymin = py - qy; in do_intersect_bbox_segment_aux()
265 CGAL_assertion(dymin >= 0); in do_intersect_bbox_segment_aux()
341 is_greater.register_new_input_values(tymin, dymin); in do_intersect_bbox_segment_aux()
353 const Is_greater_value b2 = is_greater( dmax*tymin, dymin* tmax); in do_intersect_bbox_segment_aux()
361 certainly(b = is_greater( dmin*tymin, dymin* tmin)) ) ) in do_intersect_bbox_segment_aux()
364 dmin = dymin; in do_intersect_bbox_segment_aux()
/dports/biology/emboss/EMBOSS-6.6.0/plplot/
H A Dplvect.c219 PLFLT lscale, dx, dy, dxmin, dymin, umax, vmax; in plfvect() local
241 dymin = 10E10; in plfvect()
252 dymin = (dy<dymin)?dy:dymin; in plfvect()
267 vmax = vmax/dymin; in plfvect()
/dports/misc/vxl/vxl-3.3.2/contrib/brl/bseg/brip/
H A Dbrip_roi.cxx36 double dxmin = (xmin-tdelta), dymin = (ymin-tdelta), in brip_roi() local
41 if (dymin < 0) dymin = 0; in brip_roi()
46 dbox->add_point(dxmin, dymin); in brip_roi()
/dports/games/yadex/yadex-1.7.0/src/
H A Dinput.cc244 static int dymin = INT_MAX; in get_input_status() local
264 if (dy < dymin) in get_input_status()
266 dymin = dy; in get_input_status()
280 dxmin, dxmax, dymin, dymax); in get_input_status()
/dports/math/freefem++/FreeFem-sources-4.6/examples/examples/
H A Dlame.edp58 real dymin = v[].min;
59 cout << " - dep. max x = " << dxmin << " y = " << dymin << endl;
/dports/graphics/mupdf/mupdf-1.18.0-source/source/fitz/
H A Dload-jpx.c730 int32_t dymin = oy; in template_copy_comp() local
736 if (dymin < 0) in template_copy_comp()
737 dywid += dymin, dst1 -= dymin * stride, dymin = 0; in template_copy_comp()
738 if (dymin >= h) in template_copy_comp()
740 if (dymin + dywid > h) in template_copy_comp()
741 dywid = h - dymin; in template_copy_comp()
/dports/graphics/qgis-ltr/qgis-3.16.16/src/core/
H A Dqgsmapsettings.cpp176 dymin = mExtent.yMinimum(), dymax = mExtent.yMaximum(), whitespace; in updateDerived() local
187 dymin -= whitespace; in updateDerived()
191 mVisibleExtent.set( dxmin, dymin, dxmax, dymax ); in updateDerived()
212 dymin = std::min( p1.y(), std::min( p2.y(), std::min( p3.y(), p4.y() ) ) ); in updateDerived()
215 mVisibleExtent.set( dxmin, dymin, dxmax, dymax ); in updateDerived()
/dports/math/lib2geom/lib2geom-1.1/src/2geom/orphan-code/
H A Dintersection-by-smashing.cpp200 double dymin = std::min( std::abs((*dabounds)[Y].max()), std::abs((*dabounds)[Y].min()) ); in monotonic_smash_intersect() local
202 if ( (*dabounds)[Y].max()*(*dabounds)[Y].min() < 0 ) dymin=0; in monotonic_smash_intersect()
203 assert (dxmin>=0 && dymin>=0); in monotonic_smash_intersect()
205 if (dxmin < dymin) { in monotonic_smash_intersect()
/dports/graphics/qgis/qgis-3.22.3/src/core/
H A Dqgsmapsettings.cpp176 dymin = mExtent.yMinimum(), dymax = mExtent.yMaximum(), whitespace; in updateDerived() local
187 dymin -= whitespace; in updateDerived()
191 mVisibleExtent.set( dxmin, dymin, dxmax, dymax ); in updateDerived()
216 dymin = std::min( p1.y(), std::min( p2.y(), std::min( p3.y(), p4.y() ) ) ); in updateDerived()
219 mVisibleExtent.set( dxmin, dymin, dxmax, dymax ); in updateDerived()
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/3rdparty/2geom/src/2geom/orphan-code/
H A Dintersection-by-smashing.cpp200 double dymin = std::min( std::abs((*dabounds)[Y].max()), std::abs((*dabounds)[Y].min()) ); in monotonic_smash_intersect() local
202 if ( (*dabounds)[Y].max()*(*dabounds)[Y].min() < 0 ) dymin=0; in monotonic_smash_intersect()
203 assert (dxmin>=0 && dymin>=0); in monotonic_smash_intersect()
205 if (dxmin < dymin) { in monotonic_smash_intersect()
/dports/science/elmerfem/elmerfem-release-9.0/fem/src/modules/
H A DSteadyPhaseChange.F9071 … Temp1,Temp2,Temppi,dxmin,dymin, xmin, xmax, d, HeatCond, s, tave, prevtave, cvol, clim, ccum=1, & local
479 dymin = HUGE(dymin)
498 IF(d <= dymin) THEN
500 dymin = d
529 WRITE(Message,*) 'dxmin:',dxmin,' dymin:',dymin
H A DPhaseChangeSolve.F90100 … Temp1,Temp2,Temppi,dxmin,dymin, xmin, xmax, d, HeatCond, s, tave, prevtave, cvol, clim, ccum=1, & local
733 dymin = HUGE(dymin)
746 IF(d <= dymin) THEN
748 dymin = d
772 WRITE(Message,*) 'dxmin:',dxmin,' dymin:',dymin
/dports/cad/sumo/sumo-1.2.0/tools/
H A DedgesInDistricts.py55 dxmin, dymin, dxmax, dymax = districtBoxes[district.id]
56 if dxmin <= xmax and dymin <= ymax and dxmax >= xmin and dymax >= ymin:
/dports/devel/upp/upp/uppsrc/ScatterDraw/
H A DDataSource.cpp961 double dxmin = -DOUBLE_NULL, dymin = -DOUBLE_NULL; in FindClosest() local
966 if (dx*dx + dy*dy < dxmin*dxmin + dymin*dymin) { in FindClosest()
968 dymin = dy; in FindClosest()
972 if ((dxmin > deltaX*1.00000000001) || (dymin > deltaY*1.00000000001)) in FindClosest()
974 d = sqrt(dxmin*dxmin + dymin*dymin); in FindClosest()
/dports/graphics/inkscape/inkscape-1.1_2021-05-24_c4e8f9ed74/src/3rdparty/2geom/src/toys/
H A Dsmash-intersector.cpp242 double dymin = std::min( abs((*dabounds)[Y].max()), abs((*dabounds)[Y].min()) );
244 if ( (*dabounds)[Y].max()*(*dabounds)[Y].min() < 0 ) dymin=0;
245 assert (dxmin>=0 && dymin>=0);
247 if (dxmin < dymin) {
/dports/math/lib2geom/lib2geom-1.1/src/toys/
H A Dsmash-intersector.cpp242 double dymin = std::min( abs((*dabounds)[Y].max()), abs((*dabounds)[Y].min()) );
244 if ( (*dabounds)[Y].max()*(*dabounds)[Y].min() < 0 ) dymin=0;
245 assert (dxmin>=0 && dymin>=0);
247 if (dxmin < dymin) {
/dports/lang/yorick/yorick-y_2_2_04/gist/
H A Ddraw0.c908 int dymin= flags & D_YMIN, dymax= flags & D_YMAX; in ScanRXY() local
913 if (dymin) { in ScanRXY()
938 if (dymin || dymax) { in ScanRXY()
952 if (dymin) limits->ymin= ymin; in ScanRXY()
955 if (dymin) { in ScanRXY()
H A Ddraw.c1632 GpReal dymin= 0.0, ymin= viewport->ymin; in GuessBox() local
1655 dymin= ticks->horiz.tickOff+hlen; in GuessBox()
1667 else if ((vf&(LABEL_L|LABEL_U)) && 0.5*cy>dymin) ymin-= 0.5*cy; in GuessBox()
1668 else ymin-= dymin; in GuessBox()
/dports/math/slgrace/slgrace-0.2.2/src/
H A Dgrace.sl369 variable dymin = gr.data_ymin;
376 (dymin, dymax) = expand_world_limits (dymin, dymax, logy);
384 if ((ymin != NULL) || (dymin != dymax))
386 output_one_world (fp, "ymin", &ymin, dymin);
/dports/astro/gpsman/gpsman-6.4.4.2/gmsrc/
H A Dmap.tcl2748 set MapImageGrid(dxmin) -1 ; set MapImageGrid(dymin) -1
2827 set dxmin 0 ; set dxmax 0 ; set dymin 0 ; set dymax 0
2840 if { $dy < $dymin } { set dymin $dy }
2843 set MapImageGrid(dymin) [expr $dymin-1]
3606 $MapImageGrid(dymin) $MapImageGrid(dyn)
3645 proc MapColumnBackGrid {gr dx dymin dyn} {
3656 for { set dy $dymin } { $dy < $m } { incr dy } {
/dports/deskutils/glabels/glabels-3.4.1/src/
H A Dlabel.c1930 gdouble dymin; in gl_label_align_selection_vcenter() local
1967 dymin = fabs (yavg - (obj_extent.y1 + obj_extent.y2)/2.0); in gl_label_align_selection_vcenter()
1975 if ( dy < dymin ) in gl_label_align_selection_vcenter()
1977 dymin = dy; in gl_label_align_selection_vcenter()
/dports/math/plplot/plplot-5.15.0/bindings/octave/
H A Dplplot_octave.i1892 PLFLT dxmin, PLFLT dxmax, PLFLT dymin, PLFLT dymax ) in my_plimage() argument
1895 …age( (const PLFLT **) aa, nx, ny, xmin, xmax, ymin, ymax, zmin, zmax, dxmin, dxmax, dymin, dymax ); in my_plimage()

12