/[cvs]/fract/mandelzoom.cgi
ViewVC logotype

Diff of /fract/mandelzoom.cgi

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.5 by teddy, Sun Feb 25 22:54:25 2001 UTC revision 1.9 by teddy, Tue Jun 19 22:27:27 2001 UTC
# Line 1  Line 1 
1  #!/usr/bin/python  #!/usr/bin/python
2    
3  import cgi, Image, ImageDraw, sys, math  import cgi, Image, ImageDraw, sys, math, signal, errno, os
4  from string import atoi, atof  from string import atoi, atof
5    
6    def handler(signum, frame):
7        raise os.error, (errno.ETIME, "Timer expired")
8    
9    signal.alarm(55)
10    signal.signal(signal.SIGALRM, handler)
11    
12  # This is to get backtrace output  # This is to get backtrace output
13  sys.stderr = sys.stdout  sys.stderr = sys.stdout
14    
# Line 28  xmax, ymax = width-1, height-1 Line 34  xmax, ymax = width-1, height-1
34  if form.has_key('cx'):  if form.has_key('cx'):
35      cx= atof(form['cx'].value)      cx= atof(form['cx'].value)
36  else:  else:
37      cx= 0      cx= 0.0
38    
39  if form.has_key('cy'):  if form.has_key('cy'):
40      cy= atof(form['cy'].value)      cy= atof(form['cy'].value)
41  else:  else:
42      cy= 0      cy= 0.0
43    
44  if form.has_key('diag'):  if form.has_key('diag'):
45      diag= atof(form['diag'].value)      diag= atof(form['diag'].value)
# Line 53  if not (form.has_key('type') and form['t Line 59  if not (form.has_key('type') and form['t
59    
60  <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">  <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
61  <HTML><HEAD>  <HTML><HEAD>
62  <TITLE>Mandel Set Zoomer</TITLE>  <TITLE>Mandelbrot Set Zoomer</TITLE>
63  </HEAD>  </HEAD>
64  <BODY>  <BODY>
65  <H1>Mandel Set Zoomer</H1>  <H1>Mandelbrot Set Zoomer</H1>
66    
67  <FORM ACTION="mandelzoom.cgi" METHOD=GET>  <FORM ACTION="mandelzoom.cgi" METHOD=GET>
68    
# Line 68  if not (form.has_key('type') and form['t Line 74  if not (form.has_key('type') and form['t
74          ds="&debug=on"          ds="&debug=on"
75      else:      else:
76          ds=""          ds=""
77        if form.has_key('image.x') and form.has_key('image.y'):
78            # Adjust cx and cy
79            ix= atof(form['image.x'].value)
80            iy= atof(form['image.y'].value)
81            owidth= atof(form['owidth'].value)
82            oheight= atof(form['oheight'].value)
83            diagp= math.sqrt(owidth**2 + oheight**2)
84            scale= diagp/diag
85            cx= (ix/scale) + (cx - (owidth / (scale*2)))
86            cy= ((oheight-iy)/scale) + (cy - (oheight / (scale*2)))
87      if form.has_key('zoom'):      if form.has_key('zoom'):
88          zoom=atof(form['zoom'].value)          zoom=atof(form['zoom'].value)
89          diag=diag/zoom          diag=diag/zoom
90      else:      else:
91          # If no zoom provided, don't actually zoom          # If no zoom provided, don't actually zoom
92          zoom= 2          zoom= 2.0
93      print 'SRC="mandelzoom.cgi?type=image&width=%s&height=%s&iter=%s%s&diag=%s&cx=%s&cy=%s"' % (str(width), str(height), str(maxiter), ds, str(diag), str(cx), str(cy)),      print 'SRC="mandelzoom.cgi?type=image&width=%s&height=%s&iter=%s%s&diag=%s&cx=%s&cy=%s"' % (str(width), str(height), str(maxiter), ds, str(diag), str(cx), str(cy)),
94      print 'ALIGN=BOTTOM HEIGHT="%s"' % (str(height)),      print 'ALIGN=BOTTOM HEIGHT="%s"' % (str(height)),
95      print 'WIDTH="%s"><P>' % (str(width))      print 'WIDTH="%s"><P>' % (str(width))
# Line 86  if not (form.has_key('type') and form['t Line 102  if not (form.has_key('type') and form['t
102          if zv == 1:          if zv == 1:
103              print '>Pan'              print '>Pan'
104          elif zv < 1:          elif zv < 1:
105              if int(1/zv) == 1/zv:              print '>Out ÷%s' % (str(1/zv))
                 print '>Out ÷%s' % (str(int(1/zv)))  
             else:  
                 print '>Out ÷%s' % (str(1/zv))  
106          else:          else:
107              print '>In ×%s' % (str(zv))              print '>In ×%s' % (str(zv))
108      print '</SELECT>'      print '</SELECT>'
# Line 105  if not (form.has_key('type') and form['t Line 118  if not (form.has_key('type') and form['t
118      else:      else:
119          print '>'          print '>'
120      print '<INPUT TYPE=SUBMIT VALUE="Apply">'      print '<INPUT TYPE=SUBMIT VALUE="Apply">'
121      for var in (("diag", diag), ("cx", cx), ("cy", cy)):      for var in (("diag", diag), ("cx", cx), ("cy", cy), ("owidth", width),
122                    ("oheight", height)):
123          print '<INPUT TYPE=HIDDEN NAME="%s" VALUE="%s">' % var          print '<INPUT TYPE=HIDDEN NAME="%s" VALUE="%s">' % var
124      print '<INPUT TYPE=HIDDEN NAME=type VALUE="html">'      print '<INPUT TYPE=HIDDEN NAME=type VALUE="html">'
125    
126      print """</FORM>      print """</FORM><P>
127    After changing any settings, don't forget to change the "Zoom" setting
128    to "Pan" if you don't want to zoom when applying them.
129  </BODY></HTML>"""  </BODY></HTML>"""
130      sys.exit(0)      sys.exit(0)
131    
# Line 121  scale= diagp/diag Line 137  scale= diagp/diag
137  x= (width/2.0)/scale  x= (width/2.0)/scale
138  y= (height/2.0)/scale  y= (height/2.0)/scale
139    
140  c1= cx - x + cy - y * (0+1j)  c1= cx - x + (cy - y) * (0+1j)
141  c2= cx + x + cy + y * (0+1j)  c2= cx + x + (cy + y) * (0+1j)
142    
143  #print width, height, diag, cx, cy, diagp, scale, x, y, c1, c2  #print width, height, diag, cx, cy, diagp, scale, x, y, c1, c2
144  #sys.exit(0)  #sys.exit(0)
# Line 239  if c1.imag > 0 and c2.imag < 0: # the x Line 255  if c1.imag > 0 and c2.imag < 0: # the x
255      else:      else:
256          yto= yorig # End at x axis          yto= yorig # End at x axis
257    
258  drawrect((0, yfrom), (xmax, yto))  try:
259        drawrect((0, yfrom), (xmax, yto))
260    except os.error, the_error:
261        if the_error[0] != errno.ETIME:
262            raise os.error, the_error
263            
264    signal.alarm(0)
265    
266  print "Content-type: image/png"  print "Content-type: image/png"
267  print  print

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.9

root@recompile.se
ViewVC Help
Powered by ViewVC 1.1.26