mirror of
https://github.com/3b1b/manim.git
synced 2025-07-30 05:24:22 +08:00
Minor changes and renaming
This commit is contained in:
@ -1,4 +1,4 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
from big_ol_pile_of_manim_imports import *
|
from big_ol_pile_of_manim_imports import *
|
||||||
|
|
||||||
|
|
||||||
|
@ -13,6 +13,9 @@ class ComplexAnalysisOverlay(Scene):
|
|||||||
|
|
||||||
class AnalyzeZSquared(ComplexTransformationScene, ZoomedScene):
|
class AnalyzeZSquared(ComplexTransformationScene, ZoomedScene):
|
||||||
CONFIG = {
|
CONFIG = {
|
||||||
|
"plane_config": {
|
||||||
|
"line_frequency": 0.1,
|
||||||
|
},
|
||||||
"num_anchors_to_add_per_line": 20,
|
"num_anchors_to_add_per_line": 20,
|
||||||
"complex_homotopy": lambda z, t: z**(1.0 + t),
|
"complex_homotopy": lambda z, t: z**(1.0 + t),
|
||||||
"zoom_factor": 0.05,
|
"zoom_factor": 0.05,
|
||||||
@ -169,6 +172,8 @@ class AnalyzeZSquared(ComplexTransformationScene, ZoomedScene):
|
|||||||
def get_plane(self):
|
def get_plane(self):
|
||||||
top_plane = NumberPlane(
|
top_plane = NumberPlane(
|
||||||
y_radius=FRAME_HEIGHT / 2,
|
y_radius=FRAME_HEIGHT / 2,
|
||||||
|
x_line_frequency=0.1,
|
||||||
|
y_line_frequency=0.1,
|
||||||
)
|
)
|
||||||
self.prepare_for_transformation(top_plane)
|
self.prepare_for_transformation(top_plane)
|
||||||
bottom_plane = top_plane.copy()
|
bottom_plane = top_plane.copy()
|
Reference in New Issue
Block a user