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 +++--- planets.py | 1 - 2 files changed, 3 insertions(+), 4 deletions(-) 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)]) diff --git a/planets.py b/planets.py index 1d955f5..50f6bd0 100644 --- a/planets.py +++ b/planets.py @@ -6,7 +6,6 @@ earth = { 'mie_atmos_height' : 1200, 'rayleigh_beta': (5.196e-6, 12.142e-6, 29.645e-6), - #'rayleigh_beta': (3.8e-6, 13.5e-6, 33.1e-6), 'mie_beta' : (21e-6), 'mie_g' : 0.75 } -- cgit v1.2.3