Searched refs:results (Results 1 - 6 of 6) sorted by relevance
/inkscape/src/2geom/ |
H A D | geom.cpp | 287 std::vector<Point> results; 298 results.push_back(res); 301 results.push_back(res); 304 results.push_back(res); 307 results.push_back(res); 310 eliminate_duplicates_p(results); 312 if (results.size() == 2) { 313 // sort the results so that the order is the same as that of p0 and p1 314 Point dir1 (results[1] - results[ 338 std::vector<Point> results; local [all...] |
H A D | crossing.h | 164 CrossingSet results(a.size() + b.size(), Crossings()); 176 Crossings n(results[i].size() + cr.size()); 177 std::merge(results[i].begin(), results[i].end(), cr.begin(), cr.end(), n.begin(), CrossingOrder(i)); 178 results[i] = n; 182 n.resize(results[jc].size() + cr.size()); 183 std::merge(results[jc].begin(), results[jc].end(), cr.begin(), cr.end(), n.begin(), CrossingOrder(jc)); 184 results[jc] = n; 187 return results; [all...] |
H A D | path-intersection.cpp | 243 * returning the results through the Crossings parameter. 432 * Applies path_mono_splits to multiple paths, and returns the results such that 469 CrossingSet results(a.size() + b.size(), Crossings()); 470 if(a.empty()) return results; 500 merge_crossings(results[i], res, i); 501 merge_crossings(results[i], res, jc); 505 return results; 511 CrossingSet results(p.size(), Crossings()); 512 if(p.empty()) return results; 542 merge_crossings(results[ [all...] |
/inkscape/src/trace/potrace/ |
H A D | inkscape-potrace.cpp | 421 std::vector<TracingEngineResult> results; local 424 return results; 430 return results; 441 results.push_back(result); 443 return results; 454 std::vector<TracingEngineResult> results; local 465 results.push_back(result); 467 return results; 475 std::vector<TracingEngineResult> results; local 503 results 533 std::vector<TracingEngineResult> results; local [all...] |
/inkscape/src/trace/ |
H A D | trace.cpp | 449 std::vector<TracingEngineResult> results = local 451 //printf("nrPaths:%d\n", results.size()); 452 int nrPaths = results.size(); 511 for (unsigned int i=0 ; i<results.size() ; i++) 513 TracingEngineResult result = results[i];
|
/inkscape/src/ui/tools/ |
H A D | flood-tool.cpp | 363 std::vector<Inkscape::Trace::TracingEngineResult> results = pte.traceGrayMap(gray_map); local 374 for (unsigned int i=0 ; i<results.size() ; i++) { 375 Inkscape::Trace::TracingEngineResult result = results[i];
|
Completed in 497 milliseconds