;This file is used by the Easter Egg animation which displays spiral patterns
;based on a randomly-selected trigonometric formula.  Can you find the
;hidden Easter Egg button?

;The program chooses a formula at random, such as "sin(a * theta) + cos(b * theta) ^ c"
;and it chooses random values for a, b, and c.  The value for theta goes from 4000 
;down to 0.  For each value of theta, the program evaluates the formula and converts 
;the result to x,y notation, then it plots the point.  This often results in some 
;interesting spiral patterns.

;You can also supply your own values (below) to create spiral patterns.  If the 
;program has a problem reading this file then it will use the default values.

;When you click the "Save" button in KnotMaker while the spiral animation is running, 
;the information for the current spiral will be written to SavedSpirals.txt.



;-------------
; Settings
;-------------

;Enter a formula number (1 to 22).  A value of 0 tells the program to choose a random value.

Formula Number=0


;Enter a value for a, b, and c.  A value of 0 tells the program to choose a random value.
;Values between 1 and 10 (e.g. 2 or 8.725) tend to work well.

A=0
B=0
C=0


;Enter a warp factor.  A value of 0 tells the program to choose a random value.
;Values between 1 and 5 (e.g. 2 or 4.725) tend to work well.
;This value is used for "warping" the pattern.  A value of 1 indicates no warping.

Warp Factor=0


;This value determines how many pixels will be displayed in each spiral pattern.
;The default value is 4000.

Largest Theta Value=4000


;This value tells the program how many pixels to display every millisecond
;(to improve performance).  The default value is 20.

Number of Pixels Per Millisecond=20


;This value determines how many pixels will be displayed in each color.
;The default value is 200.

Color Counter=200
