Searched defs:xmax (Results 1 - 5 of 5) sorted by relevance
/inkscape/src/libcola/ |
H A D | straightener.h | 17 void boundingBox(double &xmin,double &ymin,double &xmax,double &ymax) { argument 19 xmax=ymax=-DBL_MAX; 22 xmax = std::max(xmax,xs[i]); 37 double xmin, xmax, ymin, ymax; member in struct:straightener::Edge 43 route->boundingBox(xmin,ymin,xmax,ymax); 51 route->boundingBox(xmin,ymin,xmax,ymax); 95 double xmin, xmax, ymin, ymax; member in class:straightener::Node 102 xmin(x-width/2),xmax(x+width/2), 111 xmin(x-width/2),xmax( [all...] |
/inkscape/src/2geom/ |
H A D | convex-hull.h | 284 boost::optional<Point> ymin, ymax, xmin, xmax; local 296 if (!xmax || Point::LexGreater<X>()(p, *xmax)) { 297 xmax = p; 302 ConvexHull qhull(*xmin, *xmax, *ymin, *ymax); 309 out.push_back(*xmax);
|
/inkscape/share/extensions/ |
H A D | dxf_input.py | 371 xmax = xmin = ymin = 0.0 392 xmax = get_group('10') variable 423 if xmax > xmin: 424 scale = 210.0/(xmax - xmin) # scale to A4 width
|
H A D | voronoi.py | 178 edgeList = EdgeList(siteList.xmin,siteList.xmax,len(siteList)) 540 def __init__(self,xmin,xmax,nsites): 541 if xmin > xmax: xmin,xmax = xmax,xmin 545 self.deltax = float(xmax - xmin) 722 xmax = property(_getxmax) variable in class:SiteList
|
/inkscape/src/libuemf/ |
H A D | uwmf.c | 2440 double xmax,ymax; local 2448 xmax = U_ROUND((double) size->x * (double) dpi); 2450 if(xmax < 0 || ymax < 0 || xmax > 32767 || ymax > 32767){ 2454 xm16 = xmax;
|
Completed in 71 milliseconds