Lines Matching refs:source
45 std::vector< Point<T> > source;
48 source = Tracer::optimize(source1);
50 source = source1;
52 iterator it = source.begin();
53 Point<T> prev = source.back();
56 for ( iterator end = source.end() ; it != end ; ++it ) {
73 Point<T> next = (it + 1 == end) ? source.front() : *(it + 1);
93 void worker(const typename HomogeneousSplines<T>::Polygon &source,
96 //dest.pathVector.reserve(source.holes.size() + 1);
99 dest.rgba[i] = source.rgba[i];
101 dest.pathVector.push_back(worker_helper(source.vertices, optimize));
104 it = source.holes.begin(), end = source.holes.end()