Searched refs:max_x (Results 1 - 4 of 4) sorted by relevance

/inkscape/src/display/
H A Dsp-ctrlcurve.cpp123 double max_x = p0[Geom::X]; local
128 max_x = MAX( max_x, p1[Geom::X] );
133 max_x = MAX( max_x, p2[Geom::X] );
138 max_x = MAX( max_x, p3[Geom::X] );
143 item->x2 = round( max_x + 1 );
/inkscape/share/extensions/
H A Dprinting_marks.py196 min_x, min_y, max_x, max_y = False, False, False, False
211 if not max_x: max_x = current_max_x
215 if current_max_x > max_x: max_x = current_max_x
220 # ' max_x:'+ str(max_x) +
224 self.area_x2 = max_x
226 self.area_w = max_x - min_x
H A Dpixelsnap.py274 """ Returns [min_x, min_y], [max_x, max_y] of the transformed
292 min_x = min_y = max_x = max_y = 0
298 min_x = max_x = x
303 max_x = max(x, max_x)
306 return (min_x-offset, min_y-offset), (max_x+offset, max_y+offset)
/inkscape/src/ui/tools/
H A Dflood-tool.cpp342 static void do_trace(bitmap_coords_info bci, guchar *trace_px, SPDesktop *desktop, Geom::Affine transform, unsigned int min_x, unsigned int max_x, unsigned int min_y, unsigned int max_y, bool union_with_selection) { argument
347 GrayMap *gray_map = GrayMapCreate((max_x - min_x + 1), (max_y - min_y + 1));
353 for (unsigned int x = min_x; x <= max_x; x++) {
590 static ScanlineCheckResult perform_bitmap_scanline_check(std::deque<Geom::Point> *fill_queue, guchar *px, guchar *trace_px, guint32 orig_color, bitmap_coords_info bci, unsigned int *min_x, unsigned int *max_x) { argument
621 *max_x = MAX(*max_x, bci.x);
882 unsigned int max_x = 0; local
992 ScanlineCheckResult result = perform_bitmap_scanline_check(&fill_queue, px, trace_px, orig_color, bci, &min_x, &max_x);
1012 result = perform_bitmap_scanline_check(&fill_queue, px, trace_px, orig_color, bci, &min_x, &max_x);
1052 if (max_x < (widt
[all...]

Completed in 21 milliseconds