[EDIT] code style guide finished
This commit is contained in:
14
src/toolbox/toolbox.h
Normal file
14
src/toolbox/toolbox.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#pragma once
|
||||
|
||||
#include "../entities/camera.h"
|
||||
#include <glm/gtc/matrix_transform.hpp>
|
||||
|
||||
namespace toolbox
|
||||
{
|
||||
#define WINDOW_WIDTH 1400.0f
|
||||
#define WINDOW_HEIGT 800.0f
|
||||
|
||||
glm::mat4 CreateModelMatrix(glm::vec3 translation, glm::vec3 rotation, float scale);
|
||||
|
||||
glm::mat4 CreateViewMatrix(entities::Camera& camera);
|
||||
}
|
||||
Reference in New Issue
Block a user