Code

Translations. French translation minor update.
[inkscape.git] / src / libnr / nr-translate-rotate-ops.cpp
1 #include <libnr/nr-matrix-translate-ops.h>
2 #include <libnr/nr-rotate-ops.h>
4 NR::Matrix
5 operator*(NR::translate const &a, NR::rotate const &b)
6 {
7     return NR::Matrix(b) * NR::translate(a.offset * b);
8 }
11 /*
12   Local Variables:
13   mode:c++
14   c-file-style:"stroustrup"
15   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
16   indent-tabs-mode:nil
17   fill-column:99
18   End:
19 */
20 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :