Using slerp to interpolate to new local rotation when choosing new focusnode, tried central difference on gradient calc to resolve zoom/roll bug

This commit is contained in:
Jonathan Bosson
2017-04-26 16:10:23 -06:00
parent b5a058121d
commit 9111151913
3 changed files with 30 additions and 33 deletions

View File

@@ -33,8 +33,8 @@ void levmarq_init(LMstat *lmstat) {
lmstat->verbose = 0;
lmstat->max_it = 5000;
lmstat->init_lambda = 1e-6;
lmstat->up_factor = 5;
lmstat->down_factor = 5;
lmstat->up_factor = 10;
lmstat->down_factor = 10;
lmstat->target_derr = 1e-12;
}