Searched defs:threshold (Results 1 - 6 of 6) sorted by relevance
/inkscape/src/live_effects/ |
H A D | lpe-simplify.h | 42 ScalarParam threshold; member in class:Inkscape::LivePathEffect::LPESimplify
|
/inkscape/src/2geom/ |
H A D | svg-path-parser.h | 100 /** @brief Set the threshold for considering the closing segment degenerate. 102 * to the initial point of the path than the specified threshold 108 void setZSnapThreshold(Coord threshold) { _z_snap_threshold = threshold; } argument
|
/inkscape/src/ui/tools/ |
H A D | freehand-base.cpp | 292 static void spdc_apply_simplify(std::string threshold, FreehandBase *dc, SPItem *item) argument 300 lpe->getRepr()->setAttribute("threshold", threshold);
|
H A D | tweak-tool.cpp | 599 double threshold = MAX(th_max, th_max*force); local 600 res->ConvertEvenLines(threshold); 601 res->Simplify(threshold / (selection->desktop()->current_zoom()));
|
H A D | flood-tool.cpp | 204 * @param threshold The fill threshold. 207 static bool compare_pixels(guint32 check, guint32 orig, guint32 merged_orig_pixel, guint32 dtc, int threshold, PaintBucketChannels method) argument 235 return abs(static_cast<int>(ac) - ao) <= threshold; 237 return abs(static_cast<int>(ac ? unpremul_alpha(rc, ac) : 0) - (ao ? unpremul_alpha(ro, ao) : 0)) <= threshold; 239 return abs(static_cast<int>(ac ? unpremul_alpha(gc, ac) : 0) - (ao ? unpremul_alpha(go, ao) : 0)) <= threshold; 241 return abs(static_cast<int>(ac ? unpremul_alpha(bc, ac) : 0) - (ao ? unpremul_alpha(bo, ao) : 0)) <= threshold; 254 return ((diff / 3) <= ((threshold * 3) / 4)); 257 return ((int)(fabs(hsl_check[0] - hsl_orig[0]) * 100.0) <= threshold); 259 return ((int)(fabs(hsl_check[1] - hsl_orig[1]) * 100.0) <= threshold); 300 unsigned int threshold; member in struct:Inkscape::UI::Tools::bitmap_coords_info 817 int threshold = prefs->getIntLimited("/tools/paintbucket/threshold", 1, 0, 100); local [all...] |
/inkscape/src/ |
H A D | splivarot.cpp | 1973 float threshold, bool justCoalesce, 1982 float threshold, bool justCoalesce, 1994 threshold, justCoalesce, 2043 orig->Coalesce(threshold * size); 2045 orig->ConvertEvenLines(threshold * size); 2046 orig->Simplify(threshold * size); 2117 float threshold, bool justCoalesce, 2172 threshold, justCoalesce, angleLimit, breakableAngles, simplifySize, modifySelection); 2185 sp_selected_path_simplify_selection(SPDesktop *desktop, float threshold, bool justCoalesce, argument 2199 items, threshold, 1980 sp_selected_path_simplify_item(SPDesktop *desktop, Inkscape::Selection *selection, SPItem *item, float threshold, bool justCoalesce, float angleLimit, bool breakableAngles, gdouble size, bool modifySelection) argument 2115 sp_selected_path_simplify_items(SPDesktop *desktop, Inkscape::Selection *selection, std::vector<SPItem*> &items, float threshold, bool justCoalesce, float angleLimit, bool breakableAngles, bool modifySelection) argument [all...] |
Completed in 25 milliseconds