Searched refs:exp (Results 1 - 10 of 10) sorted by relevance

/inkscape/src/
H A Dsp-spiral.cpp35 , exp(1)
65 * sodipodi:spiral="cx cy exp revo rad arg t0"
70 sp_repr_set_svg_double(repr, "sodipodi:expansion", this->exp);
123 this->exp = g_ascii_strtod (value, NULL);
124 this->exp = CLAMP (this->exp, 0.0, 1000.0);
126 this->exp = 1.0;
257 * i: for large spiral.exp values, rate of growth
338 g_print ("cx=%g, cy=%g, exp=%g, revo=%g, rad=%g, arg=%g, t0=%g\n",
341 this->exp,
390 setPosition(gdouble cx, gdouble cy, gdouble exp, gdouble revo, gdouble rad, gdouble arg, gdouble t0) argument
[all...]
H A Dsp-spiral.h35 x(t) = rad * t^exp cos(2 * Pi * revo*t + arg) + cx
36 y(t) = rad * t^exp sin(2 * Pi * revo*t + arg) + cy \endverbatim
48 float exp; ///< Spiral expansion factor member in class:SPSpiral
55 void setPosition(double cx, double cy, double exp, double revo, double rad, double arg, double t0);
H A Dsp-offset.cpp175 * inkscape:offset="cx cy exp revo rad arg t0"
424 gdouble const exp = this->transform.descrim(); local
426 if (exp != 0) {
427 size /= exp;
431 //g_print ("coa %g exp %g item %p\n", size * 0.001, exp, item);
H A Dgradient-chemistry.cpp477 double exp = skew.descrim(); local
478 skew[0] /= exp;
479 skew[1] /= exp;
480 skew[2] /= exp;
481 skew[3] /= exp;
/inkscape/src/ui/tools/
H A Dspiral-tool.h49 gdouble exp; member in class:Inkscape::UI::Tools::SpiralTool
H A Dspiral-tool.cpp62 , exp(1)
135 this->exp = CLAMP(val.getDouble(), 0.0, 1000.0);
381 /*expansion*/ this->exp,
H A Dpencil-tool.cpp643 double tolerance_sq = 0.02 * square(this->desktop->w2d().descrim() * tol) * exp(0.2 * tol - 2);
716 double tolerance_sq = 0.02 * square(this->desktop->w2d().descrim() * tol) * exp(0.2 * tol - 2);
/inkscape/src/widgets/
H A Dspiral-toolbar.cpp127 gdouble exp = 1.0; local
135 gtk_adjustment_set_value(adj, exp);
/inkscape/src/ui/
H A Dobject-edit.cpp1198 spiral->exp += exp_delta;
1199 if (spiral->exp < 1e-3)
1200 spiral->exp = 1e-3;
1296 spiral->t0 = pow(r0 / spiral->rad, 1.0/spiral->exp);
1330 spiral->exp = 1;
/inkscape/src/display/
H A Dnr-filter-gaussian.cpp157 k[i] = std::exp(-sqr(i) / d_sq);

Completed in 38 milliseconds