mirror of
https://github.com/3b1b/manim.git
synced 2025-07-30 13:34:19 +08:00
Factored out topics/complex_numbers constructs to the appropriate places with mobject/, animation/ and scene/
This commit is contained in:
@ -16,4 +16,7 @@ def initials(name, sep_values = [" ", "_"]):
|
||||
])
|
||||
|
||||
def camel_case_initials(name):
|
||||
return filter(lambda c : c.isupper(), name)
|
||||
return filter(lambda c : c.isupper(), name)
|
||||
|
||||
def complex_string(complex_num):
|
||||
return filter(lambda c : c not in "()", str(complex_num))
|
||||
|
Reference in New Issue
Block a user