snoopy/include/image.h

8 lines
205 B
C
Raw Permalink Normal View History

2023-02-18 19:50:48 +01:00
#pragma once
const double ASPECT_RATIO = 1.0;
const unsigned int WIDTH = 256;
const unsigned int HEIGHT = static_cast<int>(WIDTH / ASPECT_RATIO);
const int SAMPLES_PER_PIXEL = 8;
const int MAX_DEPTH = 5;