code refactor

This commit is contained in:
Matraf 2022-02-11 14:51:22 +01:00
parent 99515f54ee
commit a545bff119

View File

@ -49,7 +49,7 @@ bool isInBoundaries(glm::vec3 nextPosition) {
void keyboard(unsigned char key, int x, int y)
{
float angleSpeed = 10.f;
float moveSpeed = 2.0f;
float moveSpeed = 2.f;
glm::vec3 nextPosition;
switch (key)
@ -336,7 +336,7 @@ int main(int argc, char** argv)
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_DEPTH | GLUT_DOUBLE | GLUT_RGBA);
glutInitWindowPosition(200, 200);
glutInitWindowSize(800, 800);
glutInitWindowSize(1000, 1000);
glutCreateWindow("Water and shit");
glewInit();