9 lines
164 B
C++
9 lines
164 B
C++
#include "ray.hpp"
|
|
|
|
#include "camera.hpp"
|
|
#include "scene.hpp"
|
|
|
|
Ray GeneratePrimaryRay(int x, int y, Scene& scene, float xSubPix = 0.5f, float ySubPix = 0.5f) {
|
|
|
|
}
|