mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
implemented quad
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
#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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user