diff options
| author | Maximilian Albert <maximilian.albert@gmail.com> | 2007-07-11 08:01:56 +0000 |
|---|---|---|
| committer | cilix42 <cilix42@users.sourceforge.net> | 2007-07-11 08:01:56 +0000 |
| commit | 622194729542a21fec2330189f7cb3dabfaf1e10 (patch) | |
| tree | 7685c0ee856cfad863e376a3189543905b6fc6da /src/axis-manip.cpp | |
| parent | apparently filter-dialog cpp file wasn't added to translatable ones as well :) (diff) | |
| download | inkscape-622194729542a21fec2330189f7cb3dabfaf1e10.tar.gz inkscape-622194729542a21fec2330189f7cb3dabfaf1e10.zip | |
Move 3D axis manipulation functions to separate file
(bzr r3226)
Diffstat (limited to 'src/axis-manip.cpp')
| -rw-r--r-- | src/axis-manip.cpp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/axis-manip.cpp b/src/axis-manip.cpp new file mode 100644 index 000000000..094da7dde --- /dev/null +++ b/src/axis-manip.cpp @@ -0,0 +1,33 @@ +#define __AXIS_MANIP_C__ + +/* + * Generic auxiliary routines for 3D axes + * + * Authors: + * Maximilian Albert <Anhalter42@gmx.de> + * + * Copyright (C) 2007 authors + * + * Released under GNU GPL, read the file 'COPYING' for more information + */ + +#include "axis-manip.h" + +namespace Box3D { + +Axis axes[3] = { X, Y, Z }; +Axis planes[3] = { XY, XZ, YZ }; +FrontOrRear face_positions [2] = { FRONT, REAR }; + +} // namespace Box3D + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 : |
