From 9fb4ab106f17290faf65146d4b005885507c1900 Mon Sep 17 00:00:00 2001 From: TravisBot <> Date: Sat, 19 May 2018 14:24:37 +0000 Subject: [Travis] Rebuilding documentation --- rectangle_8h_source.html | 130 ----------------------------------------------- 1 file changed, 130 deletions(-) delete mode 100644 rectangle_8h_source.html (limited to 'rectangle_8h_source.html') diff --git a/rectangle_8h_source.html b/rectangle_8h_source.html deleted file mode 100644 index cb7383a8..00000000 --- a/rectangle_8h_source.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - -yage/render/rectangle.h Source File - - - - - - - - - - -
-
- - - - - - - -
-
Yet Another Game Engine
-
-
- - - - - - -
- All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
- - -
- -
- - -
-
-
-
rectangle.h
-
-
-Go to the documentation of this file.
1 
-
9 #ifndef YAGE_RENDER_RECTANGLE_H
-
10 #define YAGE_RENDER_RECTANGLE_H
-
11 
-
12 #include "shape.h"
-
13 
-
14 #include <glm/glm.hpp>
-
15 
-
16 namespace yage
-
17 {
-
18 
-
19 class Rectangle : public Shape
-
20 {
-
21 public:
-
22  Rectangle(glm::vec4 position);
-
23  virtual void render() const;
-
24 
-
25 private:
-
26  glm::vec4 position_;
-
27 };
-
28 
-
29 } // namespace yage
-
30 
-
31 #endif
-
Definition: shape.h:17
-
virtual void render() const
Definition: rectangle.cpp:22
-
Definition: rectangle.h:19
-
Rectangle(glm::vec4 position)
Definition: rectangle.cpp:20
- -
- - - - -- cgit