Searched refs:coords (Results 1 - 9 of 9) sorted by relevance

/inkscape/src/
H A Dproj_pt.cpp27 char **coords = g_strsplit(coord_str, ":", 0); local
28 if (coords[0] == NULL || coords[1] == NULL || coords[2] == NULL) {
29 g_strfreev (coords);
34 pt[0] = g_ascii_strtod(coords[0], NULL);
35 pt[1] = g_ascii_strtod(coords[1], NULL);
36 pt[2] = g_ascii_strtod(coords[2], NULL);
37 g_strfreev (coords);
75 char **coords local
[all...]
H A Dline-geometry.cpp115 std::pair<double, double> coords = coordinates (v1, v2, w); local
116 if (coords.first == HUGE_VAL) {
121 return (coords.first >= 0 && coords.second >= 0);
H A Dgradient-drag.h85 // position of the knot, desktop coords
157 void selectByCoords(std::vector<Geom::Point> coords);
H A Dgradient-drag.cpp1747 * Select all stops/draggers that match the coords.
1749 void GrDrag::selectByCoords(std::vector<Geom::Point> coords) argument
1753 for (guint k = 0; k < coords.size(); k++) {
1754 if (Geom::L2 (d->point - coords[k]) < 1e-4) {
/inkscape/share/extensions/
H A Ddm2svg.py62 coords = []
66 coords.append(read_point(f, height))
72 coords.append(read_point(f, height))
73 points = ' '.join(','.join(map(str, e)) for e in coords)
H A Dgcodetools.py2568 coords = []
2591 if c not in coords :
2592 coords += [c]
2595 for c in coords:
2617 if "a" in coords:
/inkscape/src/libcola/
H A Dcola.cpp77 double* coords[2]={X,Y}; local
90 double pos = coords[k][*vit];
111 double** Dij, GradientProjection* gp, double* coords)
115 majlayout(Dij,gp,coords,b);
118 double** Dij, GradientProjection* gp, double* coords, double* b)
132 b[i] += L_ij * coords[j];
135 b[i] += degree * coords[i];
143 conjugate_gradient(lap2, coords, b, n, tol, n);
271 double b[n],*coords=dim==HORIZONTAL?X:Y,dist_ub,dist_bv; local
305 b[c->u]+=(coords[
110 majlayout( double** Dij, GradientProjection* gp, double* coords) argument
117 majlayout( double** Dij, GradientProjection* gp, double* coords, double* b) argument
[all...]
H A Dcola.h77 // if line is close to vertical then use Y coords to compute T
208 void majlayout(double** Dij,GradientProjection* gp, double* coords);
209 void majlayout(double** Dij,GradientProjection* gp, double* coords,
/inkscape/src/ui/tools/
H A Dgradient-tool.cpp225 std::vector<Geom::Point> coords; local
231 coords.push_back(dragger->point);
291 // remember the coords of the future dragger to select it
292 coords.push_back(0.5*(dragger->point + dnext->point));
302 return coords;
314 std::vector<Geom::Point> coords = sp_gradient_context_get_stop_intervals (drag, &these_stops, &next_stops); local
388 std::vector<Geom::Point> coords = sp_gradient_context_get_stop_intervals (drag, &these_stops, &next_stops); local
436 drag->selectByCoords(coords);
941 // status text; we do not track coords because this branch is run once, not all the time

Completed in 90 milliseconds