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 <2geom/forward.h>
19 Geom::Matrix const sp_desktop_dt2doc_affine (SPDesktop const *dt);
21 Geom::Point sp_desktop_dt2doc_xy_point(SPDesktop const *dt, Geom::Point const p);
23 #if 0
24 Geom::Matrix const sp_desktop_root2dt_affine(SPDesktop const *dt);
25 Geom::Matrix const sp_desktop_dt2root_affine(SPDesktop const *dt);
27 Geom::Point sp_desktop_root2dt_xy_point(SPDesktop const *dt, const Geom::Point p);
28 Geom::Point sp_desktop_dt2root_xy_point(SPDesktop const *dt, const Geom::Point p);
29 #endif
31 #endif
33 /*
34 Local Variables:
35 mode:c++
36 c-file-style:"stroustrup"
37 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
38 indent-tabs-mode:nil
39 fill-column:99
40 End:
41 */
42 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :