From 86e760a5625514ac7ca1927f7b8a96110d073db9 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 3 Jan 2018 11:22:37 +0100 Subject: [PATCH] more help for Rug --- rug.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/rug.cpp b/rug.cpp index 6e9e6ab4..ab4b18d9 100644 --- a/rug.cpp +++ b/rug.cpp @@ -1418,7 +1418,7 @@ void show() { if(rug::rugged && torus) dialog::addBoolItem(XLAT("keep shape"), keep_shape, 'k'); if(!(keep_shape && good_shape)) { - dialog::addSelItem(XLAT("error"), ftsg(err_zero), 'e'); + dialog::addSelItem(XLAT("maximum error"), ftsg(err_zero), 'e'); if(rug::rugged) dialog::lastItem().value += " (" + ftsg(err_zero_current) + ")"; } @@ -1480,7 +1480,9 @@ void show() { "In the orthogonal projection this just controls the scale." ); else if(uni == 'e') { - dialog::editNumber(err_zero, 1e-9, 1, .1, 1e-3, "error", "error"); + dialog::editNumber(err_zero, 1e-9, 1, .1, 1e-3, "maximum error", + "New points are added when the current error in the model is smaller than this value." + ); dialog::scaleLog(); dialog::reaction = [] () { err_zero_current = err_zero; }; }