Searched refs:steps (Results 1 - 15 of 15) sorted by relevance

/inkscape/src/livarot/
H A DAlphaLigne.cpp22 steps=NULL;
31 g_free(steps);
32 steps=NULL;
37 printf("%i steps\n",nbStep);
39 printf("(%i %f) ",steps[i].x,steps[i].delta); // localization ok
48 // doesn't deallocate the steps array, to minimize memory operations
90 // add the steps
101 steps=(alpha_step*)g_realloc(steps,maxSte
[all...]
H A DAlphaLigne.h18 * you only have to store a limited number of steps.
39 // array of steps
41 alpha_step* steps; member in class:AlphaLigne
60 // sorts the steps in increasing order. needed before you raster the line
63 // debug dump of the steps
/inkscape/src/extension/internal/
H A Dbluredge.cpp59 int steps = module->get_param_int("num-steps"); local
72 std::vector<Inkscape::XML::Node *> new_items(steps);
80 orig_opacity / (steps));
82 for (int i = 0; i < steps; i++) {
83 double offset = (width / (float)(steps - 1) * (float)i) - (width / 2.0);
135 "<param name=\"num-steps\" gui-text=\"" N_("Number of steps:") "\" gui-description=\"" N_("Number of inset/outset copies of the object to make") "\" scope=\"document\" type=\"int\" min=\"5\" max=\"100\">11</param>\n"
/inkscape/src/display/
H A Ddrawing-pattern.h51 void setOverflow(Geom::Affine initial_transform, int steps, Geom::Affine step_transform);
H A Ddrawing-pattern.cpp58 DrawingPattern::setOverflow(Geom::Affine initial_transform, int steps, Geom::Affine step_transform) { argument
60 _overflow_steps = steps;
/inkscape/src/live_effects/
H A Dlpe-bspline.h37 ScalarParam steps; member in class:Inkscape::LivePathEffect::LPEBSpline
H A Dlpe-simplify.cpp30 steps(_("Steps:"),_("Change number of simplify steps "), "steps", &wr, this,1),
39 registerParameter(&steps);
50 steps.param_set_range(0, 100);
51 steps.param_set_increments(1, 1);
52 steps.param_set_digits(0);
140 for (int unsigned i = 0; i < steps; i++) {
161 if(steps < 1) {
H A Dlpe-simplify.h41 ScalarParam steps; member in class:Inkscape::LivePathEffect::LPESimplify
H A Dlpe-bspline.cpp30 steps(_("Steps with CTRL:"), _("Change number of steps with CTRL pressed"), "steps", &wr, this, 2),
38 registerParameter(&steps);
49 steps.param_set_range(1, 10);
50 steps.param_set_increments(1, 1);
51 steps.param_set_digits(0);
52 steps.param_overwrite_widget(true);
110 if (param->param_key == "weight" || param->param_key == "steps") {
/inkscape/share/extensions/
H A Dinterp.py90 self.OptionParser.add_option("-s", "--steps",
92 dest="steps", default=5,
93 help="number of interpolation steps")
122 steps = [1.0/(self.options.steps + 1.0)]
123 for i in range(self.options.steps - 1):
124 steps.append(steps[0] + steps[-1])
125 steps
[all...]
H A Dinkweb.js165 // steps : animation steps in a second
169 conf.steps = conf.dur * conf.stepsBySec;
171 conf.xInc = ( conf.x - startPos.x ) / conf.steps;
172 conf.yInc = ( conf.y - startPos.y ) / conf.steps;
180 if ( conf.step < conf.steps ) {
H A Dgcodetools.py6169 steps = int(math.ceil(width/step))
6170 for i in range(steps+1):
/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
302 for (; steps > 0; steps --)
/inkscape/src/ui/tool/
H A Dpath-manipulator.cpp1244 //determines if the trace has a bspline effect and the number of steps that it takes
1258 int steps = 0; local
1260 steps = lpe_bsp->steps+1;
1262 return steps;
H A Dnode.cpp375 // moves the handler and its oposite in X fixed positions depending on parameter "steps with control"
379 int steps = _pm()._bsplineGetSteps(); local
380 new_pos=_pm()._bsplineHandleReposition(this,ceilf(_pm()._bsplineHandlePosition(this, false)*steps)/steps);
529 "<b>Ctrl</b>: Move handle by his actual steps in BSpline Live Effect"));

Completed in 98 milliseconds