| from __future__ import annotations | |
| from manim import * | |
| from manim.utils.testing.frames_comparison import frames_comparison | |
| __module_test__ = "modifier_methods" | |
| def test_Gradient(scene): | |
| c = Circle(fill_opacity=1).set_color(color=[PURE_YELLOW, GREEN]) | |
| scene.add(c) | |
| def test_GradientRotation(scene): | |
| c = Circle(fill_opacity=1).set_color(color=[PURE_YELLOW, GREEN]).rotate(PI) | |
| scene.add(c) | |