~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/2geom/svg-elliptical-arc.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:
200
200
        return m_svg_compliant;
201
201
    }
202
202
 
203
 
    Rect boundsFast() const
 
203
    virtual OptRect boundsFast() const
204
204
    {
205
205
        return boundsExact();
206
206
    }
207
207
 
208
 
    Rect boundsExact() const;
 
208
    virtual OptRect boundsExact() const;
209
209
 
210
210
    // TODO: native implementation of the following methods
211
 
    Rect boundsLocal(Interval i, unsigned int deg) const
 
211
    virtual OptRect boundsLocal(OptInterval i, unsigned int deg) const
212
212
    {
213
213
        if (isDegenerate() && is_svg_compliant())
214
214
            return chord().boundsLocal(i, deg);