def __init__(self, theAnimator, initial=0, color="blue"):
     """ theAnimator will usually be the GraphDisplay(Frame/Toplevel) 
         initial is the value to cause coloring in cInitial """
     VertexLabeling.__init__(self)
     self.Animator = theAnimator
     self.initial=initial
     self.color = color
Beispiel #2
0
 def __init__(self, theAnimator, initial=0, color="blue"):
     """ theAnimator will usually be the GraphDisplay(Frame/Toplevel) 
         initial is the value to cause coloring in cInitial """
     VertexLabeling.__init__(self)
     self.Animator = theAnimator
     self.initial = initial
     self.color = color
 def __init__(self, theAnimator, leaveColors = None, predColor='red'):
     VertexLabeling.__init__(self)
     self.Animator = theAnimator
     self.leaveColors = leaveColors
     self.predColor = predColor
 def __init__(self, theAnimator):
     """ theAnimator will usually be the GraphDisplay(Frame/Toplevel) """
     VertexLabeling.__init__(self)
     self.Animator = theAnimator
 def __init__(self, theAnimator):
     VertexLabeling.__init__(self)
     self.A = theAnimator
Beispiel #6
0
 def __init__(self, theAnimator, leaveColors=None, predColor='red'):
     VertexLabeling.__init__(self)
     self.Animator = theAnimator
     self.leaveColors = leaveColors
     self.predColor = predColor
Beispiel #7
0
 def __init__(self, theAnimator):
     """ theAnimator will usually be the GraphDisplay(Frame/Toplevel) """
     VertexLabeling.__init__(self)
     self.Animator = theAnimator
Beispiel #8
0
 def __init__(self, theAnimator):
     VertexLabeling.__init__(self)
     self.A = theAnimator
 def __init__(self, theAnimator, ignoreColors = [], predColor='red'):
     VertexLabeling.__init__(self)
     self.Animator = theAnimator
     self.ignoreColors = ignoreColors
     self.predColor = predColor
Beispiel #10
0
 def __init__(self, theAnimator, ignoreColors=[], predColor='red'):
     VertexLabeling.__init__(self)
     self.Animator = theAnimator
     self.ignoreColors = ignoreColors
     self.predColor = predColor