Code

Use subdirectories with icon sizes.
[inkscape.git] / src / libnr / nr-matrix-rotate-ops.cpp
1 #include "libnr/nr-matrix-ops.h"
3 NR::Matrix operator*(NR::Matrix const &m, NR::rotate const &r)
4 {
5   return m * NR::Matrix(r);
6 }
9 /*
10   Local Variables:
11   mode:c++
12   c-file-style:"stroustrup"
13   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
14   indent-tabs-mode:nil
15   fill-column:99
16   End:
17 */
18 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :