summaryrefslogtreecommitdiff
path: root/src/ocean/halftone.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ocean/halftone.h')
-rw-r--r--src/ocean/halftone.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/ocean/halftone.h b/src/ocean/halftone.h
new file mode 100644
index 0000000..e913eac
--- /dev/null
+++ b/src/ocean/halftone.h
@@ -0,0 +1,19 @@
+#ifndef HALFTONE_H
+#define HALFTONE_H
+
+
+#include <vector>
+class halftone
+{
+public:
+ halftone();
+
+private:
+ int N = 0;
+ int M = 0;
+ float m_sigma = 24.f;
+ std::vector<std::vector<int>> m_halftone;
+
+};
+
+#endif // HALFTONE_H