Lines Matching defs:randomized
40 randomized(0.0)
63 this->readAttr( "inkscape:randomized" );
82 sp_repr_set_svg_double(repr, "inkscape:randomized", this->randomized);
200 this->randomized = g_ascii_strtod (value, NULL);
202 this->randomized = 0.0;
347 if (star->randomized == 0) {
355 ret = ret * Geom::Affine (Geom::Rotate (star->randomized * M_PI * rnd (seed, 3)));
356 ret *= ( 1 + star->randomized * rnd (seed, 4));
358 // the randomized corner point
391 // note that we pass randomized=true to sp_star_get_xy, because the curve must be randomized;
469 sp_star_position_set (SPStar *star, gint sides, Geom::Point center, gdouble r1, gdouble r2, gdouble arg1, gdouble arg2, bool isflat, double rounded, double randomized)
488 star->randomized = randomized;
509 bool opt_trans = (randomized == 0);
568 * @randomized: false (default) if you want to get exact, not randomized point
573 sp_star_get_xy (SPStar const *star, SPStarPoint point, gint index, bool randomized)
582 if (!randomized || star->randomized == 0) {
588 // the full range (corresponding to star->randomized == 1.0) is equal to the star's diameter
591 Geom::Point shift (star->randomized * range * rnd (seed, 1), star->randomized * range * rnd (seed, 2));