~lib2geom-hackers/lib2geom/trunk

« back to all changes in this revision

Viewing changes to scale-translate-ops.cpp

  • Committer: njh
  • Date: 2006-05-22 11:50:24 UTC
  • Revision ID: svn-v4:4601daaa-0314-0410-9a8b-c964a3c23b6b:trunk/lib2geom:1
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#include "libnr/matrix-translate-ops.h"
 
2
 
 
3
Geom::Matrix
 
4
operator*(Geom::scale const &s, Geom::translate const &t)
 
5
{
 
6
    return Geom::Matrix(s) * t;
 
7
}
 
8
 
 
9
 
 
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:encoding=utf-8:textwidth=99 :