mirror of
https://github.com/3b1b/manim.git
synced 2025-08-05 16:49:03 +00:00
Minor changes and renaming
This commit is contained in:
parent
e514bd66b5
commit
a5adb90ae8
2 changed files with 6 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# -*- coding: utf-8 -*-
|
||||
from big_ol_pile_of_manim_imports import *
|
||||
|
||||
|
||||
|
|
|
@ -13,6 +13,9 @@ class ComplexAnalysisOverlay(Scene):
|
|||
|
||||
class AnalyzeZSquared(ComplexTransformationScene, ZoomedScene):
|
||||
CONFIG = {
|
||||
"plane_config": {
|
||||
"line_frequency": 0.1,
|
||||
},
|
||||
"num_anchors_to_add_per_line": 20,
|
||||
"complex_homotopy": lambda z, t: z**(1.0 + t),
|
||||
"zoom_factor": 0.05,
|
||||
|
@ -169,6 +172,8 @@ class AnalyzeZSquared(ComplexTransformationScene, ZoomedScene):
|
|||
def get_plane(self):
|
||||
top_plane = NumberPlane(
|
||||
y_radius=FRAME_HEIGHT / 2,
|
||||
x_line_frequency=0.1,
|
||||
y_line_frequency=0.1,
|
||||
)
|
||||
self.prepare_for_transformation(top_plane)
|
||||
bottom_plane = top_plane.copy()
|
Loading…
Add table
Reference in a new issue