tile.jpg FRACTAL FIND
Explore Fractal and Quantum Variations

Lynn Wienck

APPENDIX C
Sequence Unit Circle Variation Balls

Sequence Unit Circle Variation Balls use polar coordinates and trigonometric functions where the angle, θ, is incremented sequentially.
Unit Circle ball.jpg Example Ball ball.jpg
Sequence Unit Circle with Pseudocode
for (θ = 0; θ ≤ 36000; θ++)
{
	xnew = cos(0.01*θ);
	ynew = sin(0.01*θ);
   	PlotPoint(100.0*xnew, 100.0*ynew, color);
}
Example Ball with Pseudocode
for (θ = 0; θ ≤ 1800000; θ++)
{
	xnew = cos(0.4001*θ);
	ynew = sin(0.4001*θ);
	x = cos(θ);
	y = sin(θ);
	for (m = 0; m ≤ 19; m++)
	   PlotPoint(200.0*xnew+4.0*m*x, 200.0*ynew+4.0*m*y, color);
}
Ball Map Build (fa(θ),ga(θ)), (fb(θ),gb(θ)) scalea, scaleb mmin, mmax Plot
Unit Circle θ (cos(0.01*θ),sin(0.01*θ)), (0.0, 0.0) 100.0, None None, None Point
Example θ (cos(0.4001*θ),sin(0.4001*θ)), (cos(θ),sin(θ)) 200.0, 4.0 0, 19 Point
Ball #1 θ (cos(0.1101*θ)*sin(0.01*θ),sin(0.1101*θ)*sin(0.01*θ)), (0.0, 0.0) 300.0, None None, None Point
Ball #2 θ (cos(0.99*θ)*sin(0.02*θ),sin(0.99*θ)*sin(0.02*θ)), (0.0, 0.0) 300.0, None None, None Point
Ball #3 θ (cos(0.999*θ)*sin(0.0025*θ),sin(0.999*θ)*sin(0.0025*θ)), (0.0, 0.0) 300.0, None None, None Point
Ball #4 θ (cos(0.9*θ)*sin(0.9999*θ),sin(0.9*θ)*sin(0.9999*θ)), (0.0, 0.0) 300.0, None None, None Point
Ball #5 θ (cos(0.301*θ)*sin(0.302*θ),sin(0.301*θ)), (cos(0.301*θ)*sin(0.302*θ),sin(0.301*θ)) 200.0, 3.0 0, 51 Point
Ball #6 θ (cos(0.5*θ)*sin(0.301*θ),sin(0.5*θ)*cos(0.301*θ)), (cos(0.5*θ)*sin(0.301*θ),sin(0.5*θ)*cos(0.301*θ)) 200.0, 3.0 0, 51 Point
Ball #7 θ (cos(0.08*θ)*sin(0.998*θ),cos(0.999*θ)), (cos(0.08*θ)*sin(0.998*θ),cos(0.999*θ)) 200.0, 3.0 0, 51 Point
Ball #8 θ (cos(θ),sin(θ)), (cos(-0.301*θ)*sin(-0.501*θ)-sin(-0.501*θ)*sin(-0.301*θ),2.0*cos(-0.501*θ)*sin(-0.501*θ)) 200.0, 3.0 0, 51 Point
Ball #9 θ (cos(θ),sin(θ)), (cos(-θ)*cos(-θ)-sin(-θ)*sin(-θ),2.0*cos(-θ)*sin(-θ)) 200.0, 3.0 0, 51 Point
Ball #10 θ (cos(θ),sin(θ)), (cos(-1.01*θ),-sin(-1.01*θ)) 200.0, 3.0 0, 51 Point
Ball #11 θ (cos(θ),sin(θ)), (cos(-0.5*θ),sin(-0.5*θ)) 200.0, 3.0 0, 51 Point
Ball #12 θ (cos(θ),sin(θ)), (cos(-0.8001*θ),sin(-0.8001*θ) 200.0, 3.0 0, 51 Point
Ball #1 ball.jpg
Ball #2 ball.jpg
Ball #3 ball.jpg
Ball #4 ball.jpg
Ball #5 ball.jpg
Ball #6 ball.jpg
Ball #7 ball.jpg
Ball #8 ball.jpg
Ball #9 ball.jpg
Ball #10 ball.jpg
Ball #11 ball.jpg
Ball #12 ball.jpg