Code

Super duper mega (fun!) commit: replaced encoding=utf-8 with fileencoding=utf-8 in...
[inkscape.git] / src / libnr / nr-rotate-matrix-ops.cpp
1 #include <libnr/nr-matrix-ops.h>
3 NR::Matrix
4 operator*(NR::rotate const &a, NR::Matrix const &b)
5 {
6     return NR::Matrix(a) * b;
7 }
10 /*
11   Local Variables:
12   mode:c++
13   c-file-style:"stroustrup"
14   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
15   indent-tabs-mode:nil
16   fill-column:99
17   End:
18 */
19 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :