From ddd26ed83d3ac0335562f762ced273a1d62bd959 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sat, 23 Dec 2017 01:37:09 +0000 Subject: [Style] Updated style in files. --- yage/core/camera2d.h | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 yage/core/camera2d.h (limited to 'yage/core/camera2d.h') diff --git a/yage/core/camera2d.h b/yage/core/camera2d.h deleted file mode 100644 index 109333d6..00000000 --- a/yage/core/camera2d.h +++ /dev/null @@ -1,38 +0,0 @@ -/** --------------------------------------------------------------------------- - * @file: camera2d.h - * - * Copyright (c) 2017 Yann Herklotz Grave - * MIT License, see LICENSE file for more details. - * ---------------------------------------------------------------------------- - */ - -#ifndef YAGE_CAMERA2D_H -#define YAGE_CAMERA2D_H - -#include -#include - -namespace yage -{ - -class GlslProgram; - -class Camera -{ -private: - bool update_matrix_ = true; - float scale_ = 1; - glm::vec2 position_; - glm::mat4 camera_matrix_; - glm::mat4 ortho_matrix_; - -public: - Camera(int screen_width = 1280, int screen_height = 720); - - void update(GlslProgram &program); - void move(const glm::vec2 &direction); -}; - -} // namespace yage - -#endif -- cgit