put direct-manipulation in its own function, dynamic time step for all but the zoom-DOF

This commit is contained in:
Jonathan Bosson
2017-04-25 17:06:46 -06:00
parent 556e81afeb
commit b5a058121d
4 changed files with 185 additions and 153 deletions

View File

@@ -30,11 +30,11 @@ OTHER DEALINGS IN THE SOFTWARE.
// set parameters required by levmarq() to default values
void levmarq_init(LMstat *lmstat) {
lmstat->verbose = 1;
lmstat->verbose = 0;
lmstat->max_it = 5000;
lmstat->init_lambda = 1e-6;
lmstat->up_factor = 10;
lmstat->down_factor = 10;
lmstat->up_factor = 5;
lmstat->down_factor = 5;
lmstat->target_derr = 1e-12;
}