File tree Expand file tree Collapse file tree 1 file changed +13
-16
lines changed Expand file tree Collapse file tree 1 file changed +13
-16
lines changed Original file line number Diff line number Diff line change @@ -111,24 +111,22 @@ Updaters
111
111
.. manim :: PlaneFadeOut
112
112
113
113
class PlaneFadeOut(Scene):
114
-
115
114
def construct(self):
116
-
117
- sq2= Square()
118
-
119
- sq1= Square()
120
- sq1.next_to(sq2,LEFT)
121
-
122
- sq3= Square()
123
- sq3.next_to(sq2,RIGHT)
124
-
115
+ sq2 = Square()
116
+
117
+ sq1 = Square()
118
+ sq1.next_to(sq2, LEFT)
119
+
120
+ sq3 = Square()
121
+ sq3.next_to(sq2, RIGHT)
122
+
125
123
circ = Circle()
126
- circ.next_to(sq2,DOWN)
127
-
128
- self.add(sq1,sq2,sq3,circ)
124
+ circ.next_to(sq2, DOWN)
125
+
126
+ self.add(sq1, sq2, sq3, circ)
129
127
self.wait()
130
-
131
- self.play(FadeOut(sq1),FadeOut(sq2),FadeOut(sq3))
128
+
129
+ self.play(FadeOut(sq1), FadeOut(sq2), FadeOut(sq3))
132
130
self.wait()
133
131
134
132
.. manim :: FadeInAndOut
@@ -145,4 +143,3 @@ Updaters
145
143
self.add(annotation)
146
144
self.play(FadeOut(square))
147
145
148
-
You can’t perform that action at this time.
0 commit comments