~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/livarot/Path.cpp

  • Committer: JazzyNico
  • Date: 2011-08-29 20:25:30 UTC
  • Revision ID: nicoduf@yahoo.fr-20110829202530-6deuoz11q90usldv
Code refactoring and merging with trunk (revision 10599).

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
#include <glib.h>
10
10
#include "Path.h"
11
11
#include "livarot/path-description.h"
12
 
#include <libnr/nr-matrix-ops.h>
13
12
 
14
13
/*
15
14
 * manipulation of the path data: path description and polyline
700
699
    }
701
700
}
702
701
 
703
 
void Path::Transform(const Geom::Matrix &trans)
 
702
void Path::Transform(const Geom::Affine &trans)
704
703
{
705
704
    for (std::vector<PathDescr*>::iterator i = descr_cmd.begin(); i != descr_cmd.end(); i++) {
706
705
        (*i)->transform(trans);