Merge pull request #9 from Jordach/master

Fix windows build due to GLM Vectors not found
master
Nicole Collings 2019-11-19 13:42:20 -08:00 committed by GitHub
commit de67d7e9c3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,7 @@
//
#include "Voronoi3D.h"
#include <glm/glm.hpp>
Voronoi3D::Voronoi3D(unsigned short size) :
size(size) {

View File

@ -5,8 +5,7 @@
#pragma once
#include <vector>
#include <glm/vec4.hpp>
#include <glm/geometric.hpp>
#include <glm/glm.hpp>
#include <string>
#include "stb_image/stb_image_write.h"