Added documentation

This commit is contained in:
Edward Emelianov
2021-10-29 20:40:38 +03:00
parent 39b9cee77c
commit b2a3d68513
10 changed files with 471 additions and 41 deletions

View File

@@ -29,8 +29,8 @@ static char *conffile = NULL; // configuration file name
configuration theconf = {
.maxUsteps=DEFAULT_MAXUSTEPS,
.maxVsteps=DEFAULT_MAXVSTEPS,
.maxFpos=Fmaxsteps,
.minFpos=0,
.maxFpos=Fmaxsteps-1,
.minFpos=-Fmaxsteps+1,
.minarea=DEFAULT_MINAREA,
.maxarea=DEFAULT_MAXAREA,
.maxwh = 1.1,
@@ -52,9 +52,9 @@ configuration theconf = {
.xtarget=-1,
.ytarget=-1,
.throwpart=DEFAULT_THROWPART,
.maxexp=EXPOS_MAX + DBL_EPSILON,
.minexp=EXPOS_MIN - DBL_EPSILON,
.fixedexp=EXPOS_MIN,
.maxexp=EXPOS_MAX - 1.,
.minexp=EXPOS_MIN + DBL_EPSILON,
.fixedexp=EXPOS_MIN*2,
.gain = 20.,
.intensthres=DEFAULT_INTENSTHRES,
.medseed=MIN_MEDIAN_SEED,