=========================
Complete overhaul of the tkinter way objects are shown. Instead of deleting all canvas objects
for each animation tick, salabim now tries to minimize the number of create_image calls,
by using itemconfig and coords and reusing canvas elements, if possible and necessary.
The result is a much smoother animation, particularly at higher animation speeds.
The above doesn't, unfortunately, apply to Pythonista.
Now all of the following methods of the class Animate may be overridden:
def x(self,t=None)
def y(self,t=None)
def offsetx(self,t=None)
def offsety(self,t=None)
def angle(self,t=None)
def linewidth(self,t=None)
def linecolor(self,t=None)
def fillcolor(self,t=None)
def circle(self,t=None)
def line(self,t=None)
def polygon(self,t=None)
def rectangle(self,t=None)
def width(self,t=None)
def fontsize(self,t=None)
def text(self,t=None)
def anchor(self,t=None)
def image(self,t=None)
def layer(self,t=None)
, thus giving the possibility to use non linear movement, special effects, etc.
The distribution now also contains a script called salabim_install, which will install salabim
in the appropriate site-packages folder. Once installed, salabim can be used from whatever location!