summaryrefslogtreecommitdiff
path: root/infill.h
diff options
context:
space:
mode:
Diffstat (limited to 'infill.h')
-rw-r--r--infill.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/infill.h b/infill.h
new file mode 100644
index 0000000..ab8edab
--- /dev/null
+++ b/infill.h
@@ -0,0 +1,10 @@
+/** Copyright (C) 2013 David Braam - Released under terms of the AGPLv3 License */
+#ifndef INFILL_H
+#define INFILL_H
+
+#include "utils/polygon.h"
+
+void generateConcentricInfill(Polygons outline, Polygons& result, int offsets[], int offsetsSize);
+void generateLineInfill(const Polygons& in_outline, Polygons& result, int extrusionWidth, int lineSpacing, int infillOverlap, double rotation);
+
+#endif//INFILL_H