From 4cdf7a426483427b70c7235a48e1c9296718daa7 Mon Sep 17 00:00:00 2001 From: Godzil Date: Sat, 22 Feb 2020 01:29:42 +0000 Subject: [PATCH] Correct default canvas size for ch11_test --- tests/ch11_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ch11_test.cpp b/tests/ch11_test.cpp index 30e27bc..8ad861c 100644 --- a/tests/ch11_test.cpp +++ b/tests/ch11_test.cpp @@ -145,7 +145,7 @@ int main() w.addLight(&light); /* Set the camera */ - Camera camera = Camera(400, 100, 1.152); + Camera camera = Camera(400, 200, 1.152); camera.setTransform(viewTransform(Point(-2.6, 1.5, -3.9), Point(-0.6, 1, -0.8), Vector(0, 1, 0)));