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