Code

Move 3D axis manipulation functions to separate file
[inkscape.git] / src / axis-manip.cpp
1 #define __AXIS_MANIP_C__
3 /*
4  * Generic auxiliary routines for 3D axes
5  *
6  * Authors:
7  *   Maximilian Albert <Anhalter42@gmx.de>
8  *
9  * Copyright (C) 2007 authors
10  *
11  * Released under GNU GPL, read the file 'COPYING' for more information
12  */
14 #include "axis-manip.h"
16 namespace Box3D {
18 Axis axes[3]   = { X,  Y,  Z };
19 Axis planes[3] = { XY, XZ, YZ };
20 FrontOrRear face_positions [2] = { FRONT, REAR };
22 } // namespace Box3D 
23  
24 /*
25   Local Variables:
26   mode:c++
27   c-file-style:"stroustrup"
28   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
29   indent-tabs-mode:nil
30   fill-column:99
31   End:
32 */
33 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :