aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Camera.h
diff options
context:
space:
mode:
authorheavydemon21 <nielsstunnebrink1@gmail.com>2024-11-08 17:31:25 +0100
committerheavydemon21 <nielsstunnebrink1@gmail.com>2024-11-08 17:31:25 +0100
commit91a277c69fd5f8ba814adc1006a49c7415ff65be (patch)
tree5545e9a9374e017a45ea56a81c2b7e24091cbcc2 /src/crepe/api/Camera.h
parentcb6aae1751a95a29bc04d805d9cc9135b5c54c1e (diff)
updated to satisfy the code review
Diffstat (limited to 'src/crepe/api/Camera.h')
-rw-r--r--src/crepe/api/Camera.h26
1 files changed, 7 insertions, 19 deletions
diff --git a/src/crepe/api/Camera.h b/src/crepe/api/Camera.h
index 7587b44..708a523 100644
--- a/src/crepe/api/Camera.h
+++ b/src/crepe/api/Camera.h
@@ -2,8 +2,8 @@
#include <cstdint>
-#include "Component.h"
#include "Color.h"
+#include "Component.h"
namespace crepe {
@@ -31,34 +31,22 @@ public:
~Camera();
public:
- /**
- * \brief Background color of the camera view.
- */
+ //! \brief Background color of the camera view.
Color bg_color;
- /**
- * \brief Aspect ratio height for the camera.
- */
+ //! \brief Aspect ratio height for the camera.
double aspect_height;
- /**
- * \brief Aspect ratio width for the camera.
- */
+ //! \brief Aspect ratio width for the camera.
double aspect_width;
- /**
- * \brief X-coordinate of the camera position.
- */
+ //! \brief X-coordinate of the camera position.
double x;
- /**
- * \brief Y-coordinate of the camera position.
- */
+ //! \brief Y-coordinate of the camera position.
double y;
- /**
- * \brief Zoom level of the camera view.
- */
+ //! \brief Zoom level of the camera view.
double zoom;
public: