Searched defs:arg (Results 1 - 15 of 15) sorted by relevance

/inkscape/src/libcroco/
H A Dcr-pseudo.c81 *arg = NULL; local
90 arg = (guchar *) g_strndup (a_this->extra->stryng->str,
99 if (arg) {
100 g_string_append (str_buf, (const gchar *) arg);
101 g_free (arg);
102 arg = NULL;
/inkscape/src/
H A Dsp-star.h37 double arg[2]; member in class:SPStar
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
37 * where spiral curve is drawn for {t | t0 <= t <= 1}. The rad and arg
51 float arg; ///< Spiral argument member in class:SPSpiral
55 void setPosition(double cx, double cy, double exp, double revo, double rad, double arg, double t0);
60 void getPolar(double t, double* rad, double* arg) const;
H A Dmain-cmdlineact.cpp27 CmdLineAction::CmdLineAction (bool isVerb, gchar const * arg) : _isVerb(isVerb), _arg(NULL) { argument
28 if (arg != NULL) {
29 _arg = g_strdup(arg);
H A Dsp-spiral.cpp38 , arg(0)
65 * sodipodi:spiral="cx cy exp revo rad arg t0"
73 sp_repr_set_svg_double(repr, "sodipodi:argument", this->arg);
153 this->arg = g_ascii_strtod (value, NULL);
155 * FIXME: We still need some bounds on arg, for
160 * results in very negative arg.
163 this->arg = 0.0;
292 g_print ("[%s] depth=%d, dstep=%g, t0=%g, t=%g, arg=%g\n",
293 debug_state, depth, dstep, spiral->t0, *t, spiral->arg);
338 g_print ("cx=%g, cy=%g, exp=%g, revo=%g, rad=%g, arg
390 setPosition(gdouble cx, gdouble cy, gdouble exp, gdouble revo, gdouble rad, gdouble arg, gdouble t0) argument
497 double const arg = 2.0 * M_PI * this->revo * t + this->arg; local
520 double const arg = t_scaled + this->arg; local
[all...]
H A Dsp-star.cpp44 this->arg[0] = this->arg[1] = 0.0;
78 sp_repr_set_svg_double(repr, "sodipodi:arg1", this->arg[0]);
79 sp_repr_set_svg_double(repr, "sodipodi:arg2", this->arg[1]);
160 this->arg[0] = g_ascii_strtod (value, NULL);
162 this->arg[0] = 0.0;
170 this->arg[1] = g_ascii_strtod (value, NULL);
172 this->arg[1] = 0.0;
484 star->arg[0] = arg1;
485 star->arg[
577 double arg = star->arg[point]; local
[all...]
H A Dmain.cpp2238 gchar const *arg = poptGetOptArg(ctx); local
2239 if (arg != NULL) {
2240 // printf("Adding in: %s\n", arg);
2241 new Inkscape::CmdLineAction((a == SP_ARG_VERB), arg);
/inkscape/src/util/
H A Dcompose.hpp1 /* Defines String::compose(fmt, arg...) for easy, i18n-friendly
53 Composition &arg(const T &obj);
116 inline Composition &Composition::arg(const T &obj) function in class:StringPrivate::Composition
209 c.arg(o1);
218 c.arg(o1).arg(o2);
227 c.arg(o1).arg(o2).arg(o3);
237 c.arg(o
[all...]
H A Ducompose.hpp1 /* Defines String::ucompose(fmt, arg...) for easy, i18n-friendly
59 Composition &arg(const T &obj);
161 inline Composition &Composition::arg(const T &obj) function in class:UStringPrivate::Composition
260 c.arg(o1);
269 c.arg(o1).arg(o2);
278 c.arg(o1).arg(o2).arg(o3);
288 c.arg(o
[all...]
/inkscape/src/ui/tools/
H A Dspiral-tool.cpp373 gdouble arg = Geom::atan2(delta) - 2.0*M_PI*this->spiral->revo; local
376 arg = sp_round(arg, M_PI/snaps);
383 rad, arg,
391 rads->str, sp_round((arg + 2.0*M_PI*this->spiral->revo)*180/M_PI, 0.0001));
/inkscape/src/inkgc/
H A Dgc.cpp26 void display_warning(char *msg, GC_word arg) { argument
27 g_warning(msg, arg);
/inkscape/packaging/macosx/ScriptExec/
H A Dmain.c86 static void *Execute(void *arg);
87 static void *OpenDoc(void *arg);
258 static void *Execute (void *arg) argument
277 static void *OpenDoc (void *arg) argument
/inkscape/src/ui/
H A Dobject-edit.cpp1035 double darg1 = arg1 - star->arg[0];
1038 star->randomized = darg1/(star->arg[0] - star->arg[1]);
1040 star->rounded = darg1/(star->arg[0] - star->arg[1]);
1045 star->arg[0] = arg1;
1046 star->arg[1] += darg1;
1063 double darg1 = arg1 - star->arg[1];
1066 star->randomized = darg1/(star->arg[0] - star->arg[
1215 gdouble arg = 2.0*M_PI*spiral->revo*spiral->t0 + spiral->arg; local
[all...]
/inkscape/src/extension/internal/pdfinput/
H A Dpdf-parser.cpp473 printf("throwing away arg: ");
615 GBool PdfParser::checkArg(Object *arg, TchkType type) { argument
617 case tchkBool: return arg->isBool();
618 case tchkInt: return arg->isInt();
619 case tchkNum: return arg->isNum();
620 case tchkString: return arg->isString();
621 case tchkName: return arg->isName();
622 case tchkArray: return arg->isArray();
623 case tchkProps: return arg->isDict() || arg
[all...]
/inkscape/
H A Dbuildtool.cpp10182 String arg = argv[i]; local
10183 if (arg.size()>1 && arg[0]=='-')
10185 if (arg == "-h" || arg == "-help")
10190 else if (arg == "-version")
10195 else if (arg == "-f" || arg == "-file")
10205 else if (arg == "-j")
10218 else if (arg
[all...]

Completed in 78 milliseconds