From 2645eae2379867dabc7ae7155e5ee5d4c9c1b8e6 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sat, 26 Oct 2019 15:42:38 +0200 Subject: [PATCH] ray:: rudimentary comments --- raycaster.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/raycaster.cpp b/raycaster.cpp index 16f254ab..10f1717b 100644 --- a/raycaster.cpp +++ b/raycaster.cpp @@ -706,7 +706,7 @@ EX void configure() { if(nonisotropic) { dialog::addSelItem(XLAT("max step"), fts(maxstep_current()), 'x'); dialog::add_action([] { - dialog::editNumber(maxstep_current(), 1e-6, 1, 0.1, sol ? 0.03 : 0.1, XLAT("max step"), ""); + dialog::editNumber(maxstep_current(), 1e-6, 1, 0.1, sol ? 0.03 : 0.1, XLAT("max step"), "affects the precision of solving the geodesic equation in Solv"); dialog::scaleLog(); dialog::bound_low(1e-9); dialog::reaction = reset_raycaster; @@ -714,7 +714,7 @@ EX void configure() { dialog::addSelItem(XLAT("min step"), fts(minstep), 'n'); dialog::add_action([] { - dialog::editNumber(minstep, 1e-6, 1, 0.1, 0.001, XLAT("min step"), ""); + dialog::editNumber(minstep, 1e-6, 1, 0.1, 0.001, XLAT("min step"), "how precisely should we find out when do cross the cell boundary"); dialog::scaleLog(); dialog::bound_low(1e-9); dialog::reaction = reset_raycaster; @@ -723,7 +723,7 @@ EX void configure() { dialog::addSelItem(XLAT("iterations"), its(max_iter_current()), 's'); dialog::add_action([&] { - dialog::editNumber(max_iter_current(), 0, 600, 1, 60, XLAT("iterations"), ""); + dialog::editNumber(max_iter_current(), 0, 600, 1, 60, XLAT("iterations"), "in H3/H2xE/E3 this is the number of cell boundaries; in nonisotropic, the number of simulation steps"); dialog::reaction = reset_raycaster; });