Searched defs:seed (Results 1 - 7 of 7) sorted by relevance

/inkscape/src/filters/
H A Dturbulence.h33 double seed; member in class:SPFeTurbulence
/inkscape/src/live_effects/parameter/
H A Drandom.h49 long seed; member in class:Inkscape::LivePathEffect::RandomParam
/inkscape/src/display/
H A Dnr-filter-turbulence.h61 void turbulenceInit(long seed);
65 double seed; member in class:Inkscape::Filters::FilterTurbulence
H A Dnr-filter-turbulence.cpp49 void init(long seed, Geom::Rect const &tile, Geom::Point const &freq, bool stitch, argument
53 _setupSeed(seed);
255 void _setupSeed(long seed) { argument
256 _seed = seed;
266 * as the 10,000th generated number if the original seed is 1. */
323 , seed(0)
353 seed = s;
401 gen->init(seed, Geom::Rect(ta, tb),
/inkscape/src/live_effects/
H A Dlpe-roughen.h66 long seed; member in class:Inkscape::LivePathEffect::LPERoughen
H A Dlpe-roughen.cpp89 seed = 0;
97 if(spray_tool_friendly && seed == 0 && SP_OBJECT(lpeitem)->getId()){
99 long seed = static_cast<long>(boost::hash_value(id_item)); local
100 global_randomize.param_set_value(global_randomize.get_value(), seed);
/inkscape/src/
H A Dsp-star.cpp297 Returns a random number in the range [-0.5, 0.5) from the given seed, stepping the given number of steps from the seed.
300 rnd (guint32 const seed, unsigned steps) { argument
301 guint32 lcg = seed;
351 // the seed corresponding to the exact point
352 guint32 seed = point_unique_int (o); local
354 // randomly rotate (by step 3 from the seed) and scale (by step 4) the vector
355 ret = ret * Geom::Affine (Geom::Rotate (star->randomized * M_PI * rnd (seed, 3)));
356 ret *= ( 1 + star->randomized * rnd (seed, 4));
586 // find out the seed, uniqu
587 guint32 seed = point_unique_int (xy); local
[all...]

Completed in 113 milliseconds