-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
44 lines (38 loc) · 879 Bytes
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
* File: main.cpp
* Author: Shubham
*
* Created on November 4, 2014, 7:44 PM
*/
#include <Eigen/Dense>
#include <cstdlib>
#include <cmath>
#include <stdio.h>
#include <iostream>
#include "camera.h"
using namespace std;
using namespace Eigen;
/*
*
*/
int main(int argc, char** argv) {
//Then the camera
Camera cam;
cam.ambient = Vector4f(0,0,0,0);
cam.background = Vector4f(255, 255, 255, 0);
cam.bottom = -10.0f;
cam.left = -10.0f;
cam.maxBounces = 3;
cam.near = sqrt(1.0f*1.0f + 1.0f*1.0f + 5.0f*5.0f);
cam.out = "test.ppm";
cam.right = 10.0f;
cam.top = 10.0f;
cam.resln(500, 500);
cam.pos = Vector3f(1.0, 1.0, 5.0);
cam.nSteps = 400;
cam.step_disance = 0.05f;
cam.up = Vector3f(0.0f, 1.0f, 0.0f);
//Now, render!
cam.render();
return 0;
}