Lines Matching refs:it
5 This library is free software; you can redistribute it and/or modify it
19 This library is distributed in the hope that it will be useful,
52 iterator it = source.begin();
54 Geom::Path ret(to_geom_point(midpoint(prev, *it)));
56 for ( iterator end = source.end() ; it != end ; ++it ) {
59 if ( !it->visible ) {
60 prev = *it;
66 Geom::Point middle = to_geom_point(midpoint(prev, *it));
73 Point<T> next = (it + 1 == end) ? source.front() : *(it + 1);
74 Point<T> middle = midpoint(*it, next);
76 if ( !it->smooth ) {
77 ret.appendNew<Line>(to_geom_point(*it));
80 ret.appendNew<Quad>(to_geom_point(*it), to_geom_point(middle));
83 prev = *it;
104 it = source.holes.begin(), end = source.holes.end()
105 ; it != end ; ++it ) {
106 dest.pathVector.push_back(worker_helper(*it, optimize));
118 it = diagram.begin() , end = diagram.end() ; it != end ; ++it ) {
122 .push_back(Geom::Path(to_geom_point(it->vertices.front())));
125 it2 = ++it->vertices.begin(), end2 = it->vertices.end()
132 path.rgba[i] = it->rgba[i];
148 it = homogeneousSplines.begin(), end = homogeneousSplines.end()
149 ; it != end ; ++it, ++paths_it ) {
150 worker<T>(*it, *paths_it, optimize);