| | |
float aniso1=D[1]/D[0] | anisotropy of 2nd axis relative to first
|
float damp=.5 | if the path goes out of bounds, we reflect and dampen the rate of change by this much
|
int dorder=6 | derivative order (stencil size) for gradient (dS) calculation
|
float eps=0. | if the change and gradient are simultaneously lower than this, terminate early
|
float g=.1 | scale the momentum for updating the path at each iteration by how much before applying?
|
float k=1 | stiffness relative to attraction
|
float kink=1 | resistance to kinks
|
int knots=11 | number of knots
|
float lr=.3 | learning rate
|
int niter=10 | number of iterations
|
int nsmooth=1 | number of input panel gradient (dS) smoothings
|
float shove=1000 | size of initial random lateral shove
|
int srad=2 | smoothing radius for input panel gradient (dS)
|
|