parabola

2005-11-08 Thread Shi Mu
Is there any sample code to draw parabola using Tkinter? -- http://mail.python.org/mailman/listinfo/python-list

Re: parabola

2005-11-08 Thread Salvatore
Here is an old piece of code I wrote when begining Python ;-) from Tkinter import * import string import Numeric from Canvas import Line import math class Tableau(Canvas): def __init__(self,master=None,size=400,col='black',colrep='red',colgrid='grey'):

Re: parabola

2005-11-08 Thread Salvatore
Here is an old piece of code I wrote to test Tkinter from Tkinter import * import string import Numeric from Canvas import Line import math class Tableau(Canvas): def __init__(self,master=None,size=400,col='black',colrep='red',colgrid='grey'):