Searched defs:seed (Results 1 - 7 of 7) sorted by relevance
/inkscape/src/filters/ |
H A D | turbulence.h | 33 double seed; member in class:SPFeTurbulence
|
/inkscape/src/live_effects/parameter/ |
H A D | random.h | 49 long seed; member in class:Inkscape::LivePathEffect::RandomParam
|
/inkscape/src/display/ |
H A D | nr-filter-turbulence.h | 61 void turbulenceInit(long seed); 65 double seed; member in class:Inkscape::Filters::FilterTurbulence
|
H A D | nr-filter-turbulence.cpp | 49 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 D | lpe-roughen.h | 66 long seed; member in class:Inkscape::LivePathEffect::LPERoughen
|
H A D | lpe-roughen.cpp | 89 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 D | sp-star.cpp | 297 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