~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/display/nr-filter.cpp

  • Committer: Steren Giannini
  • Date: 2010-05-29 15:00:23 UTC
  • mfrom: (9012.1.442 trunk)
  • Revision ID: steren.giannini@gmail.com-20100529150023-mi9r10jkhtfs7yyj
sync with rev 9454

Show diffs side-by-side

added added

removed removed

Lines of Context:
223
223
    return 0;
224
224
}
225
225
 
 
226
void Filter::set_filter_units(SPFilterUnits unit) {
 
227
    _filter_units = unit;
 
228
}
 
229
 
 
230
void Filter::set_primitive_units(SPFilterUnits unit) {
 
231
    _primitive_units = unit;
 
232
}
 
233
 
226
234
void Filter::area_enlarge(NRRectL &bbox, NRArenaItem const *item) const {
227
235
    for (int i = 0 ; i < _primitive_count ; i++) {
228
236
        if (_primitive[i]) _primitive[i]->area_enlarge(bbox, item->ctm);