1 #ifndef __SP_DESKTOP_AFFINE_H__
2 #define __SP_DESKTOP_AFFINE_H__
4 /*
5 * Desktop transformations
6 *
7 * Authors:
8 * Lauris Kaplinski <lauris@kaplinski.com>
9 *
10 * Copyright (C) 1999-2002 Lauris Kaplinski
11 * Copyright (C) 2000-2001 Ximian, Inc.
12 *
13 * Released under GNU GPL, read the file 'COPYING' for more information
14 */
16 #include "forward.h"
17 #include <libnr/nr-forward.h>
19 NR::Matrix const sp_desktop_root2dt_affine(SPDesktop const *dt);
20 NR::Matrix const sp_desktop_dt2root_affine(SPDesktop const *dt);
22 NR::Point sp_desktop_root2dt_xy_point(SPDesktop const *dt, const NR::Point p);
23 NR::Point sp_desktop_dt2root_xy_point(SPDesktop const *dt, const NR::Point p);
25 #endif
27 /*
28 Local Variables:
29 mode:c++
30 c-file-style:"stroustrup"
31 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
32 indent-tabs-mode:nil
33 fill-column:99
34 End:
35 */
36 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :