Searched refs:amount (Results 1 - 9 of 9) sorted by relevance

/inkscape/src/display/
H A Dnr-filter-offset.h33 void set_dx(double amount);
34 void set_dy(double amount);
H A Dnr-filter-offset.cpp76 void FilterOffset::set_dx(double amount) { argument
77 dx = amount;
80 void FilterOffset::set_dy(double amount) { argument
81 dy = amount;
/inkscape/src/extension/internal/bitmap/
H A Dunsharpmask.cpp22 float amount = _amount / 100.0; local
23 image->unsharpmask(_radius, _sigma, amount, _threshold);
30 _amount = module->get_param_float("amount");
45 "<param name=\"amount\" gui-text=\"" N_("Amount:") "\" type=\"float\" min=\"0.0\" max=\"100.0\">50.0</param>\n"
/inkscape/src/libdepixelize/priv/
H A Dsimplifiedvoronoi.h1105 T amount = 0.125 local
1108 transform(another, - amount, amount);
1117 T amount = 0.0625 * bottomright(c_it); local
1118 transform(another, amount, 0.25 - amount);
1127 T amount = 0.0625 * topleft(c_it); local
1128 transform(another, - ( 0.25 - amount ),
1129 - amount);
1139 T amount local
1152 T amount = 0.125 local
1165 T amount = 0.03125; local
1182 T amount = 0.0625; local
1197 T amount = 0.0625; local
1213 T amount = 0.1875; local
1269 T amount = 0.1875 * topleft(b_it); local
1280 T amount = 0.0625 * topleft(b_it); local
1292 T amount = 0.0625 * bottomright(b_it); local
1301 T amount = 0.125 local
1310 T amount = 0.125 local
1328 T amount = 0.1875; local
1343 T amount = 0.0625; local
1359 T amount = 0.0625; local
1421 T amount = 0.125 local
1433 T amount = 0.0625 * bottomright(c_it); local
1443 T amount = 0.0625 * topleft(c_it); local
1454 T amount = 0.1875 * topleft(c_it); local
1485 T amount = 0.1875; local
1500 T amount = 0.0625; local
1516 T amount = 0.0625; local
1567 T amount = 0.1875 * topleft(b_it); local
1577 T amount = 0.0625 * topleft(b_it); local
1588 T amount = 0.0625 * bottomright(b_it); local
1597 T amount = 0.125 local
1619 T amount = 0.03125; local
1636 T amount = 0.0625; local
1651 T amount = 0.0625; local
1667 T amount = 0.1875; local
[all...]
/inkscape/src/2geom/
H A Dgeneric-interval.h168 /** @brief Expand or shrink the interval in both directions by the given amount.
170 * <code>amount * 2</code>. Negative values can be given; they will shrink the interval.
173 void expandBy(C amount) {
174 _b[0] -= amount;
175 _b[1] += amount;
196 /** @brief Offset the interval by a specified amount */
201 /** @brief Offset the interval by the negation of the specified amount */
H A Dgeneric-rect.h282 /** @brief Expand the rectangle in both directions by the specified amount.
284 * rectangle. If <code>-amount</code> is larger than
287 void expandBy(C amount) { argument
288 expandBy(amount, amount);
/inkscape/src/ui/tools/
H A Dmeasure-tool.h61 void setMeasureCanvasText(bool is_angle, double precision, double amount, double fontsize, Glib::ustring unit_name, Geom::Point position, guint32 background, CanvasTextAnchorPositionEnum text_anchor, bool to_item, bool to_phantom, Inkscape::XML::Node *measure_repr);
H A Dmeasure-tool.cpp1038 void MeasureTool::setMeasureCanvasText(bool is_angle, double precision, double amount, double fontsize, Glib::ustring unit_name, Geom::Point position, guint32 background, CanvasTextAnchorPositionEnum text_anchor, bool to_item, bool to_phantom, Inkscape::XML::Node *measure_repr) argument
1048 gchar *measure_str = g_strdup_printf(precision_str.str().c_str(), amount, unit_name.c_str());
/inkscape/share/extensions/
H A Dsynfig_output.py681 x -- x-amount of blur
682 y -- x-amount of blur
741 """Increase the opacity of the given layers by a certain amount
756 # Otherwise, set their amount
758 amount = self.get_param(layer, "amount")
759 self.set_param(layer, "amount", amount*opacity)
803 if len(layers) > 1 or self.get_param(layers[0], "amount") != 1.0:

Completed in 42 milliseconds