Up to standard intro of dot products

This commit is contained in:
Grant Sanderson
2016-08-18 12:54:04 -07:00
parent 6ef52e8d12
commit fa6fa38a00
5 changed files with 646 additions and 14 deletions

View File

@ -303,11 +303,11 @@ class RandolphScene(Scene):
self.randy.to_corner()
self.add(self.randy)
def dither(self, blink = True):
def dither(self, time = 1, blink = True):
if blink:
self.play(Blink(self.randy))
else:
Scene.dither(self)
time -= 1
Scene.dither(self, time)
return self
class TeacherStudentsScene(Scene):