blob: 0de853fdbc71aaa9e9e59249dcaded736d723b5a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//
// Created by saintruler on 05.05.19.
//
#ifndef OPENGLTEST_CALCULATECANVAS_H
#define OPENGLTEST_CALCULATECANVAS_H
#include <iostream>
#include <vector>
#include <fstream>
#include <Point.h>
void generate_canvas(int width, int height, unsigned char* canvas, Point* points, int nPoints);
#endif //OPENGLTEST_CALCULATECANVAS_H
|