2025-01-24 21:01:01 +01:00
|
|
|
#pragma once
|
|
|
|
|
#include <glm/glm.hpp>
|
|
|
|
|
|
|
|
|
|
struct Camera
|
|
|
|
|
{
|
|
|
|
|
glm::vec3 position;
|
|
|
|
|
glm::vec3 direction;
|
|
|
|
|
glm::vec2 sensorSize = glm::vec2(0.036, 0.024);
|
|
|
|
|
float S_O = 6.9;
|
|
|
|
|
float f = 0.7;
|
2025-01-25 15:11:46 +01:00
|
|
|
float A = 0.35;
|
2025-01-24 21:01:01 +01:00
|
|
|
};
|