Searched defs:parameters (Results 1 - 3 of 3) sorted by relevance

/inkscape/src/2geom/
H A Drecursive-bezier-intersection.cpp181 * Recursively intersect two curves keeping track of their real parameters
183 * The results are returned in a 2-D array of doubles indicating the parameters
184 * for which intersections are found. The parameters are in the order the
220 std::vector<std::pair<double, double> > &parameters)
239 parameters );
243 parameters );
247 parameters );
251 parameters );
258 parameters );
262 parameters );
218 recursively_intersect( OldBezier a, double t0, double t1, int deptha, OldBezier b, double u0, double u1, int depthb, std::vector<std::pair<double, double> > &parameters) argument
[all...]
/inkscape/src/extension/
H A Dextension.h142 GSList * parameters; /**< A table to store the parameters for this extension. member in class:Inkscape::Extension::Extension
143 This only gets created if there are parameters in this
147 /** \brief A function to get the number of parameters that
149 \return The number of parameters. */
150 unsigned int param_count ( ) { return parameters == NULL ? 0 :
151 g_slist_length(parameters); };
152 /** \brief A function to get the number of parameters that
154 \return The number of visible parameters.
197 * It could be NULL because there are no parameters fo
[all...]
/inkscape/src/extension/param/
H A Dnotebook.cpp2 * Notebook and NotebookPage parameters for extensions.
37 * related parameters.
50 GSList * parameters; /**< A table to store the parameters for this page. member in class:Inkscape::Extension::ParamNotebookPage
51 This only gets created if there are parameters on this
69 parameters = NULL;
84 if (param != NULL) parameters = g_slist_append(parameters, param);
93 //destroy parameters
94 for (GSList * list = parameters; lis
[all...]

Completed in 22 milliseconds