diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:29:01 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:29:01 +0000 |
commit | 35a96bde514a8897f6f0fcc41c5833bf63df2e2a (patch) | |
tree | 657d15a03cc46bd099fc2c6546a7a4ad43815d9f /src/axis-manip.cpp | |
parent | Initial commit. (diff) | |
download | inkscape-35a96bde514a8897f6f0fcc41c5833bf63df2e2a.tar.xz inkscape-35a96bde514a8897f6f0fcc41c5833bf63df2e2a.zip |
Adding upstream version 1.0.2.upstream/1.0.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/axis-manip.cpp')
-rw-r--r-- | src/axis-manip.cpp | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/src/axis-manip.cpp b/src/axis-manip.cpp new file mode 100644 index 0000000..66b5c82 --- /dev/null +++ b/src/axis-manip.cpp @@ -0,0 +1,55 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/** + * Generic auxiliary routines for 3D axes + * + * Authors: + * Maximilian Albert <Anhalter42@gmx.de> + * + * Copyright (C) 2007 authors + * + * Released under GNU GPL v2+, read the file 'COPYING' for more information. + */ + +#include <glib.h> +#include "axis-manip.h" + +namespace Proj { + +Axis axes[4] = { X, Y, Z, W }; + +} // namespace Proj + + +namespace Box3D { + +Axis axes[3] = { X, Y, Z }; +Axis planes[3] = { XY, XZ, YZ }; +FrontOrRear face_positions [2] = { FRONT, REAR }; + +std::pair <Axis, Axis> +get_remaining_axes (Axis axis) { + if (!is_single_axis_direction (axis)) return std::make_pair (NONE, NONE); + Axis plane = orth_plane_or_axis (axis); + return std::make_pair (extract_first_axis_direction (plane), extract_second_axis_direction (plane)); +} + +Glib::ustring string_from_axes (Box3D::Axis axis) { + Glib::ustring result; + if (axis & Box3D::X) result += "X"; + if (axis & Box3D::Y) result += "Y"; + if (axis & Box3D::Z) result += "Z"; + return result; +} + +} // 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:fileencoding=utf-8 : |