# Base of the logarithm used for the spiral spiral_curviness = 1.12 # How much to scale noise by noise_scale = 12 # Hinge which noise will be scaled away from noise_hinge = 155 plateau_hinge = 120 # How much to flatten the central plateau by plt_flatness = 2.5 sea_level = 135 # How smooth the slope to the central plateau is plt_cliffiness = 20 # How high the central plateau is (archimedian) plt_height_a = 48 # How high the central plateau is (logarithmic) plt_height = 24 # how much to subtract from spiral term spiral_negative_bias = 1.2 # how much to dampen peaks by (linear) spiral_flatness = 0.8 # how much to exaggerate peaks by (exponential) spiral_sharpness = 1.4 # Scales the plateau term before normalization plt_prescale = 1.15 # turning pitch of spiral spiral_tightness = 0.05 # Radius of the central plateau in ADU plt_radius = 100 # How strong the spiral motif is spiral_strength = 100