~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/2geom/path.h

  • Committer: Ted Gould
  • Date: 2008-11-21 05:24:08 UTC
  • Revision ID: ted@canonical.com-20081121052408-tilucis2pjrrpzxx
MergeĀ fromĀ fe-moved

Show diffs side-by-side

added added

removed removed

Lines of Context:
259
259
  bool closed() const { return closed_; }
260
260
  void close(bool closed=true) { closed_ = closed; }
261
261
 
262
 
  Rect boundsFast() const;
263
 
  Rect boundsExact() const;
 
262
  OptRect boundsFast() const;
 
263
  OptRect boundsExact() const;
264
264
 
265
265
  Piecewise<D2<SBasis> > toPwSb() const {
266
266
    Piecewise<D2<SBasis> > ret;
566
566
  }
567
567
 
568
568
 
569
 
  /*
 
569
  /**
570
570
   * It is important to note that the coordinates passed to appendNew should be finite!
 
571
   * If one of the coordinates is infinite, 2geom will throw a ContinuityError exception.
571
572
   */
572
573
 
573
574
  template <typename CurveType, typename A>