Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    
    ...
    # Draw a set of circles along an archimedean spiral
    # The centers of these circles move along the spiral 
    # (radius of spiral = constant * theta)
    
  2. or download this
    $origin_x = 110; $origin_y = 70;           # origin of the spiral
    $PI = 3.1415926535;
    ...
    }
    
    MainLoop();