diff options
| author | Jabier Arraiza Cenoz <jabier.arraiza@marker.es> | 2015-02-07 17:05:01 +0000 |
|---|---|---|
| committer | Jabiertxof <jtx@jtx.marker.es> | 2015-02-07 17:05:01 +0000 |
| commit | ab9fe994f320dfd929888e2f5d821b6968385694 (patch) | |
| tree | 94e9f46c125c7c1827491e1859bc59339ce7f143 /src/2geom/pointwise.cpp | |
| parent | update to trunk (diff) | |
| download | inkscape-ab9fe994f320dfd929888e2f5d821b6968385694.tar.gz inkscape-ab9fe994f320dfd929888e2f5d821b6968385694.zip | |
refactor of pointwise base
(bzr r13645.1.6)
Diffstat (limited to 'src/2geom/pointwise.cpp')
| -rw-r--r-- | src/2geom/pointwise.cpp | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/src/2geom/pointwise.cpp b/src/2geom/pointwise.cpp index 7a84593ba..ce3aa86f6 100644 --- a/src/2geom/pointwise.cpp +++ b/src/2geom/pointwise.cpp @@ -31,23 +31,17 @@ namespace Geom { -std::pair<int,satelite> +std::vector<satellite> pointwise::findSatellites(int A) const - { - std::pair<int,satelite> ret; - for(unsigned i = 0; i < _satellites.size(); i++){ - if(_satellites[i].first() == A){ - ret.push_back(std::pair<i,_satellites[i].second()>) - } - } - return ret; +{ + std::vector<satelite> ret; + for(unsigned i = 0; i < _satellites.size(); i++){ + if(_satellites[i].first() == A){ + ret.push_back(_satellites[i].second); } -double toTime(std::pair<int,satelite> A, double B){ - + } + return ret; } -double toSize(std::pair<int,satelite> A, double B) -Pointwise recalculate(Piecewise<D2<SBasis> > A) - } /* |
