From ee465746eb37865079daeb5c47f25f11cdcddada Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Wed, 23 Aug 2017 23:02:57 +0100 Subject: Updating docs --- sprite_8hpp_source.html | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'sprite_8hpp_source.html') diff --git a/sprite_8hpp_source.html b/sprite_8hpp_source.html index d9ef7812..d1190a37 100644 --- a/sprite_8hpp_source.html +++ b/sprite_8hpp_source.html @@ -85,14 +85,20 @@ $(document).ready(function(){initNavTree('sprite_8hpp_source.html','');});
sprite.hpp
-Go to the documentation of this file.
1 /* ----------------------------------------------------------------------------
2  * sprite.hpp
3  *
4  * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
5  * See file LICENSE for more details
6  * ----------------------------------------------------------------------------
7  */
8 
9 #ifndef SPRITE_HPP
10 #define SPRITE_HPP
11 
12 #include "texture.hpp"
13 
14 #include <GL/glew.h>
15 
16 #include <string>
17 
18 namespace yage {
19 
20 class Sprite {
21 private:
22  float x_;
23  float y_;
24  float width_;
25  float height_;
26  GLuint vbo_id_ = 0;
27  Texture texture_;
28 
29 public:
30  Sprite();
31  Sprite(const Sprite&) = delete;
32  Sprite(Sprite&&) = delete;
33  ~Sprite();
34 
35  Sprite& operator=(const Sprite&) = delete;
36  Sprite& operator=(Sprite&&) = delete;
37 
38  void init(float x, float y, float width, float height,
39  const std::string& texture_path);
40  void draw();
41 };
42 
43 } // yage
44 
45 #endif
+Go to the documentation of this file.
1 /* ----------------------------------------------------------------------------
2  * sprite.hpp
3  *
4  * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com> -- MIT License
5  * See file LICENSE for more details
6  * ----------------------------------------------------------------------------
7  */
8 
9 #ifndef SPRITE_HPP
10 #define SPRITE_HPP
11 
12 #include "texture.hpp"
13 
14 #include <GL/glew.h>
15 
16 #include <string>
17 
18 namespace yage {
19 
20 class Sprite {
21 private:
22  float x_;
23  float y_;
24  float width_;
25  float height_;
26  GLuint vbo_id_ = 0;
28 
29 public:
30  Sprite();
31  Sprite(const Sprite&) = delete;
32  Sprite(Sprite&&) = delete;
33  ~Sprite();
34 
35  Sprite& operator=(const Sprite&) = delete;
36  Sprite& operator=(Sprite&&) = delete;
37 
38  void init(float x, float y, float width, float height,
39  const std::string& texture_path);
40  void draw();
41 };
42 
43 } // yage
44 
45 #endif
void draw()
Definition: sprite.cpp:64
+
Texture texture_
Definition: sprite.hpp:27
+
GLuint vbo_id_
Definition: sprite.hpp:26
+
float width_
Definition: sprite.hpp:24
void init(float x, float y, float width, float height, const std::string &texture_path)
Definition: sprite.cpp:23
Definition: texture.hpp:16
+
float x_
Definition: sprite.hpp:22
~Sprite()
Definition: sprite.cpp:19
+
float y_
Definition: sprite.hpp:23
Sprite & operator=(const Sprite &)=delete
Templated matrix class.
Definition: camera2d.hpp:17
+
float height_
Definition: sprite.hpp:25
Definition: sprite.hpp:20
@@ -100,7 +106,7 @@ $(document).ready(function(){initNavTree('sprite_8hpp_source.html','');});