Searched defs:coords (Results 1 - 5 of 5) sorted by relevance
/inkscape/src/ |
H A D | proj_pt.cpp | 27 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 D | line-geometry.cpp | 115 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 D | gradient-drag.cpp | 1747 * 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/src/libcola/ |
H A D | cola.cpp | 77 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...] |
/inkscape/src/ui/tools/ |
H A D | gradient-tool.cpp | 225 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 48 milliseconds