From ace393dbc86ad332c0ecd374157640cbbd909938 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Thu, 9 Jan 2020 15:18:18 +0100 Subject: Fix exposure value in bluedot example --- bluedot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bluedot.py') diff --git a/bluedot.py b/bluedot.py index 4b906a8..2f937e3 100644 --- a/bluedot.py +++ b/bluedot.py @@ -16,14 +16,14 @@ config = { 'ray_samples': 16, 'light_samples': 8, - 'exposure': 20.0, - 'zoom': 2.0, + 'exposure': 2.0, + 'zoom': 2.5, 'eye_pos': numpy.array([0, -3, 1.1]), 'eye_dir': numpy.array([0, 1, -0.35]) } -sun_range = (0, 360, 1) +sun_range = (0, 360, 10) cl_platform = cl.get_platforms()[0] cl_context = cl.Context(properties=[(cl.context_properties.PLATFORM, cl_platform)]) -- cgit v1.2.3