blob: 9ad2ac75e0ef4b0b5047c40ba32f9825fd4ed65f (
plain) (
blame)
1
2
3
4
5
6
7
|
#include "o3d/camera.h"
#include "math/math_vector.h"
using namespace engine::o3d;
Camera::Camera(engine::math::MathVector3 loc, float rot_x, float rot_y, float rot_z) : loc{loc}, rot_x{rot_x}, rot_y{rot_y}, rot_z{rot_z} {
}
|