Searched refs:cit (Results 1 - 17 of 17) sorted by relevance

/inkscape/src/
H A Dsp-polygon.cpp49 for (Geom::Path::const_iterator cit = pit->begin(); cit != pit->end_default(); ++cit) {
50 if ( is_straight_curve(*cit) )
52 os << cit->finalPoint()[0] << "," << cit->finalPoint()[1] << " ";
H A Dsp-path.cpp103 for(Geom::Path::const_iterator cit = pit->begin(); cit != pit->end_default(); ++cit) {
105 if( is_straight_curve(*cit) )
107 pts.push_back(std::make_pair(cit->initialPoint() * i2dt, cit->finalPoint() * i2dt));
H A Dconn-avoid-ref.cpp216 Geom::Path::const_iterator cit = pit->begin(); local
217 while (cit != pit->end())
219 if (cit == pit->begin())
221 poly_points.push_back(cit->initialPoint());
224 if (dynamic_cast<Geom::CubicBezier const*>(&*cit))
228 poly_points.push_back(cit->pointAt(at));
232 ++cit;
237 poly_points.push_back(cit->finalPoint());
238 ++cit;
/inkscape/src/helper/
H A Dgeom.cpp167 for (Geom::Path::const_iterator cit = it->begin(); cit != it->end_open(); ++cit) {
168 Geom::Curve const &c = *cit;
190 Geom::Curve *ctemp = cit->transformed(t);
446 for (Geom::Path::const_iterator cit = it->begin(); cit != it->end_default(); ++cit) {
447 geom_curve_bbox_wind_distance(*cit, m, pt, bbox, wind, dist, tolerance, viewbox, p0);
473 for (Geom::Path::const_iterator cit
[all...]
/inkscape/src/libcola/
H A Dgradient_projection.h123 for(CList::iterator cit=leftof.begin();
124 cit!=leftof.end(); ++cit) {
125 vpsc::Variable* v = vars[(*cit).first];
126 cs.push_back(new vpsc::Constraint(left,v,(*cit).second));
128 for(CList::iterator cit=rightof.begin();
129 cit!=rightof.end(); ++cit) {
130 vpsc::Variable* v = vars[(*cit).first];
131 cs.push_back(new vpsc::Constraint(v,right,(*cit)
[all...]
H A Dcola.cpp82 for(Clusters::iterator cit=clusters->begin();
83 cit!=clusters->end(); ++cit) {
84 Cluster *c = *cit;
/inkscape/src/extension/internal/
H A Dpov-out.cpp335 for (Geom::Path::const_iterator cit = pit->begin(); cit != pit->end_closed(); ++cit)
339 if( !cit->isDegenerate() ) ++segmentCount;
373 for (Geom::Path::const_iterator cit = pit->begin(); cit != pit->end_closed(); ++cit)
377 if( cit->isDegenerate() )
380 if( is_straight_curve(*cit) )
382 Geom::Point p0 = cit
[all...]
H A Demf-print.cpp817 Geom::Path::const_iterator cit = pit->begin(); local
818 P1 = cit->initialPoint();
819 for(;cit != pit->end_closed();++cit) {
820 if (!is_straight_curve(*cit)) {
824 P1_lead = cit->finalPoint();
871 for(Geom::Path::iterator cit = pR.begin();; ++cit){
872 P1_trail = cit->initialPoint();
873 P1 = cit
[all...]
H A Djavafx-out.cpp530 for (Geom::Path::const_iterator cit = pit->begin(); cit != pit->end_closed(); ++cit)
533 if ( dynamic_cast<Geom::LineSegment const *> (&*cit) )
535 Geom::Point p = cit->finalPoint();
543 else if (Geom::CubicBezier const *cubic = dynamic_cast<Geom::CubicBezier const*>(&*cit))
564 cminmax.expandTo(cit->finalPoint());
663 for (Geom::Path::const_iterator cit = pit->begin(); cit != pit->end_closed(); ++cit)
[all...]
H A Dwmf-print.cpp818 for (Geom::Path::const_iterator cit = pit->begin(); cit != pit->end_open(); ++cit) {
929 for (Geom::Path::const_iterator cit = pit->begin(); cit != pit->end_open(); ++cit) {
932 if (is_straight_curve(*cit)) {
934 } else if (&*cit) {
967 for (Geom::Path::const_iterator cit = pit->begin(); cit !
[all...]
H A Dlatex-pstricks.cpp280 for(Geom::Path::const_iterator cit = it->begin(); cit != it->end_open(); ++cit) {
281 print_2geomcurve(os, *cit);
H A Dodf.cpp1290 for (Geom::Path::const_iterator cit = pit->begin(); cit != pit->end_closed(); ++cit) {
1292 if( is_straight_curve(*cit) )
1294 double destx = cit->finalPoint()[X];
1295 double desty = cit->finalPoint()[Y];
1300 else if(Geom::CubicBezier const *cubic = dynamic_cast<Geom::CubicBezier const*>(&*cit)) {
/inkscape/src/svg/
H A Dsvg-path.cpp104 for(Geom::Path::const_iterator cit = p.begin(); cit != p.end_open(); ++cit) {
105 sp_svg_write_curve(str, &(*cit));
/inkscape/src/util/
H A Dunits.cpp315 UnitCodeMap::const_iterator cit = _unit_map.begin(); local
316 while (cit != _unit_map.end()) {
317 if (cit->second->type == type) {
318 if (Geom::are_near(cit->second->factor, factor, eps)) {
323 ++cit;
326 if (cit != _unit_map.end()) {
327 return cit->second;
/inkscape/src/display/
H A Dcairo-utils.cpp631 for (Geom::Path::const_iterator cit = path.begin(); cit != path.end_open(); ++cit) {
632 feed_curve_to_cairo(ct, *cit, Geom::identity(), Geom::Rect(), false); // optimize_stroke is false, so the view rect is not used
660 for(Geom::Path::const_iterator cit = path.begin(); cit != path.end_open(); ++cit) {
661 feed_curve_to_cairo(ct, *cit, transshift, view, optimize_stroke);
/inkscape/src/ui/tool/
H A Dpath-manipulator.cpp1178 for (Geom::Path::iterator cit = pit->begin(); cit != pit->end(); ++cit) {
1179 Geom::Point pos = cit->finalPoint();
1183 if (closed && cit == --(pit->end())) {
1196 Geom::BezierCurve const *bezier = dynamic_cast<Geom::BezierCurve const*>(&*cit);
/inkscape/src/livarot/
H A DPathCutting.cpp437 for(Geom::Path::const_iterator cit = pathtr.begin(); cit != pathtr.end(); ++cit) {
438 AddCurve(*cit);

Completed in 63 milliseconds