Searched defs:freq (Results 1 - 2 of 2) sorted by relevance

/inkscape/src/extension/internal/filter/
H A Dtextures.h68 "<param name=\"freq\" gui-text=\"" N_("Frequency:") "\" type=\"float\" appearance=\"full\" precision=\"2\" min=\"0.01\" max=\"100.00\">4</param>\n"
107 std::ostringstream freq; local
118 freq << ext->get_param_float("freq") / 100;
143 freq.str().c_str(), complexity.str().c_str(), variation.str().c_str(),
/inkscape/src/display/
H A Dnr-filter-turbulence.cpp49 void init(long seed, Geom::Rect const &tile, Geom::Point const &freq, bool stitch, argument
57 _baseFreq = freq;
100 double freq = _baseFreq[Geom::X]; local
101 double lo = floor(_tile.width() * freq) / _tile.width();
102 double hi = ceil(_tile.width() * freq) / _tile.width();
103 _baseFreq[Geom::X] = freq / lo < hi / freq ? lo : hi;
107 double freq = _baseFreq[Geom::Y];
108 double lo = floor(_tile.height() * freq) / _tile.height();
109 double hi = ceil(_tile.height() * freq) / _til
341 set_baseFrequency(int axis, double freq) argument
[all...]

Completed in 471 milliseconds