Add files via upload

This commit is contained in:
MihailRis
2021-04-25 16:08:48 +03:00
committed by GitHub
commit e1cdcf01e9
49 changed files with 2866 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
/*
* LineBatch.h
*
* Created on: Jun 25, 2020
* Author: MihailRis
*/
#ifndef GRAPHICS_LINEBATCH_H_
#define GRAPHICS_LINEBATCH_H_
#include <stdlib.h>
class Mesh;
class LineBatch {
Mesh* mesh;
float* buffer;
size_t index;
size_t capacity;
public:
LineBatch(size_t capacity);
~LineBatch();
void line(float x1, float y1, float z1, float x2, float y2, float z2,
float r, float g, float b, float a);
void box(float x, float y, float z, float w, float h, float d,
float r, float g, float b, float a);
void render();
};
#endif /* GRAPHICS_LINEBATCH_H_ */