Files
vb01/camera.cpp
T
devZoGok 9479e3324f implemented shadows for non positional lights
fixed skybox
implemented translation and rotation
2021-10-18 19:05:52 +03:00

20 lines
243 B
C++
Executable File

#include"camera.h"
namespace vb01{
Camera::Camera(){
}
Camera::~Camera(){}
void Camera::update(){
}
void Camera::lookAt(Vector3 direction, Vector3 up){
this->direction=direction;
this->up=up;
left=direction.cross(up);
}
}