New Geometry View, with new frame and new settings.

This commit is contained in:
brunoherbelin
2020-04-29 00:20:38 +02:00
parent 091eceefe5
commit 79e9b70fa2
19 changed files with 788 additions and 82 deletions

4
Mesh.h
View File

@@ -37,17 +37,17 @@ protected:
class Frame : public Node
{
Mesh *border_;
Mesh *overlay_;
Mesh *shadow_;
public:
typedef enum { MIXING = 0, MIXING_OVERLAY } Style;
typedef enum { ROUND_THIN = 0, ROUND_LARGE, SHARP_THIN, SHARP_LARGE } Style;
Frame(Style style);
~Frame();
void draw (glm::mat4 modelview, glm::mat4 projection) override;
Mesh *overlay_;
glm::vec4 color;
};