summaryrefslogtreecommitdiff
path: root/src/ocean/halftone.h
blob: e913eacc992be8b86318b68813396badd507a66b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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