mirror of
https://github.com/TheRedShip/RT_GPU.git
synced 2025-09-28 02:58:35 +02:00
34 lines
1.1 KiB
C++
34 lines
1.1 KiB
C++
/* ************************************************************************** */
|
|
/* */
|
|
/* ::: :::::::: */
|
|
/* Camera.cpp :+: :+: :+: */
|
|
/* +:+ +:+ +:+ */
|
|
/* By: TheRed <TheRed@students.42.fr> +#+ +:+ +#+ */
|
|
/* +#+#+#+#+#+ +#+ */
|
|
/* Created: 2024/10/15 14:00:38 by TheRed #+# #+# */
|
|
/* Updated: 2024/10/15 14:00:38 by TheRed ### ########.fr */
|
|
/* */
|
|
/* ************************************************************************** */
|
|
|
|
#include "Camera.hpp"
|
|
|
|
Camera::Camera(void)
|
|
{
|
|
}
|
|
|
|
Camera::Camera(Camera const &src)
|
|
{
|
|
*this = src;
|
|
}
|
|
|
|
Camera::~Camera(void)
|
|
{
|
|
}
|
|
|
|
Camera &Camera::operator=(Camera const &rhs)
|
|
{
|
|
if (this != &rhs)
|
|
{
|
|
}
|
|
return (*this);
|
|
} |