~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/2geom/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:
168
168
    }
169
169
    
170
170
    
171
 
    Rect boundsFast() const
 
171
    virtual OptRect boundsFast() const
172
172
    {
173
 
        return boundsExact();
 
173
        return boundsExact();
174
174
    }
175
175
  
176
 
    Rect boundsExact() const;
 
176
    virtual OptRect boundsExact() const;
177
177
    
178
178
    // TODO: native implementation of the following methods
179
 
    Rect boundsLocal(Interval i, unsigned int deg) const
 
179
    virtual OptRect boundsLocal(OptInterval i, unsigned int deg) const
180
180
    {
181
 
        return SBasisCurve(toSBasis()).boundsLocal(i, deg);
 
181
        return SBasisCurve(toSBasis()).boundsLocal(i, deg);
182
182
    }
183
183
    
184
184
    std::vector<double> roots(double v, Dim2 d) const;