Skip to content

Commit

Permalink
Merge pull request 3b1b#944 from Lalourche/fix-counting
Browse files Browse the repository at this point in the history
Fixed execution of counting.py
  • Loading branch information
TonyCrane committed Jul 18, 2021
2 parents 3fe4d6d + 1b125df commit 45938dd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions manimlib/once_useful_constructs/counting.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
from manimlib.mobject.types.vectorized_mobject import VGroup
from manimlib.scene.scene import Scene

import itertools as it

class CountingScene(Scene):
CONFIG = {
Expand Down Expand Up @@ -219,7 +220,7 @@ class CountInTernary(PowerCounter):
def construct(self):
self.count(27)

# def get_template_configuration(self):
# def get_template_configuration(self, place):
# return [ORIGIN, UP]


Expand All @@ -233,7 +234,7 @@ class CountInBinaryTo256(PowerCounter):
def construct(self):
self.count(128, 0.3)

def get_template_configuration(self):
def get_template_configuration(self, place):
return [ORIGIN, UP]


Expand Down

0 comments on commit 45938dd

Please sign in to comment.