summaryrefslogtreecommitdiffstats
path: root/src/livarot/LivarotDefs.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 11:50:49 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 11:50:49 +0000
commitc853ffb5b2f75f5a889ed2e3ef89b818a736e87a (patch)
tree7d13a0883bb7936b84d6ecdd7bc332b41ed04bee /src/livarot/LivarotDefs.h
parentInitial commit. (diff)
downloadinkscape-c853ffb5b2f75f5a889ed2e3ef89b818a736e87a.tar.xz
inkscape-c853ffb5b2f75f5a889ed2e3ef89b818a736e87a.zip
Adding upstream version 1.3+ds.upstream/1.3+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/livarot/LivarotDefs.h')
-rw-r--r--src/livarot/LivarotDefs.h95
1 files changed, 95 insertions, 0 deletions
diff --git a/src/livarot/LivarotDefs.h b/src/livarot/LivarotDefs.h
new file mode 100644
index 0000000..9940cde
--- /dev/null
+++ b/src/livarot/LivarotDefs.h
@@ -0,0 +1,95 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+/** @file
+ * TODO: insert short description here
+ *//*
+ * Authors:
+ * see git history
+ * Fred
+ *
+ * Copyright (C) 2018 Authors
+ * Released under GNU GPL v2+, read the file 'COPYING' for more information.
+ */
+
+#ifndef my_defs
+#define my_defs
+
+#include <cstdint>
+
+// error codes (mostly obsolete)
+enum
+{
+ avl_no_err = 0, // 0 is the error code for "everything OK"
+ avl_bal_err = 1,
+ avl_rm_err = 2,
+ avl_ins_err = 3,
+ shape_euler_err = 4, // computations result in a non-eulerian graph, thus the function cannot do a proper polygon
+ // despite the rounding sheme, this still happen with uber-complex graphs
+ // note that coordinates are stored in double => double precision for the computation is not even
+ // enough to get exact results (need quadruple precision, i think).
+ shape_input_err = 5, // the function was given an incorrect input (not a polygon, or not eulerian)
+ shape_nothing_to_do = 6 // the function had nothing to do (zero offset, etc)
+};
+
+// return codes for the find function in the AVL tree (private)
+
+/**
+ * The SweepTree::Find function and its variant for a single point figure out where a point or an edge
+ * should be inserted in a linked list of edges. Once calculated, they return one of these values to indicate
+ * how that place looks like.
+ */
+enum
+{
+ not_found = 0, /*!< Didn't find a place. */
+ found_exact = 1, /*!< Found such an edge where edge to insert lies directly on top of another edge */
+ found_on_left = 2, /*!< Point/edge should go to the left of some edge. (There is nothing on the left of that edge) */
+ found_on_right = 3, /*!< Point/edge should go to the right of some edge. (There is nothing on the right of that edge) */
+ found_between = 4 /*!< Point/edge should go in between two particular edges. */
+};
+
+// types of cap for stroking polylines
+enum butt_typ
+{
+ butt_straight, // straight line
+ butt_square, // half square
+ butt_round, // half circle
+ butt_pointy // a little pointy hat
+};
+// types of joins for stroking paths
+enum join_typ
+{
+ join_straight, // a straight line
+ join_round, // arc of circle (in fact, one or two quadratic bezier curve chunks)
+ join_pointy // a miter join (uses the miter parameter)
+};
+typedef enum butt_typ ButtType;
+typedef enum join_typ JoinType;
+
+enum fill_typ
+{
+ fill_oddEven = 0,
+ fill_nonZero = 1,
+ fill_positive = 2,
+ fill_justDont = 3
+};
+typedef enum fill_typ FillRule;
+
+// info for a run of pixel to fill
+struct raster_info {
+ int startPix,endPix; // start and end pixel from the polygon POV
+ int sth,stv; // coordinates for the first pixel in the run, in (possibly another) POV
+ uint32_t* buffer; // pointer to the first pixel in the run
+};
+typedef void (*RasterInRunFunc) (raster_info &dest,void *data,int nst,float vst,int nen,float ven); // init for position ph,pv; the last parameter is a pointer
+
+
+enum Side {
+ LEFT = 0,
+ RIGHT = 1
+};
+
+enum FirstOrLast {
+ FIRST = 0,
+ LAST = 1
+};
+
+#endif