FocusOn#

Qualified name: manim.animation.indication.FocusOn

class FocusOn(mobject=None, *args, use_override=True, **kwargs)[source]#

Bases: Transform

Shrink a spotlight to a position.

Parameters:
  • focus_point (Union[ndarray, Mobject]) – The point at which to shrink the spotlight. If it is a Mobject its center will be used.

  • opacity (float) – The opacity of the spotlight.

  • color (str) – The color of the spotlight.

  • run_time (float) – The duration of the animation.

  • kwargs – Additional arguments to be passed to the Succession constructor

Examples

Example: UsingFocusOn

from manim import *

class UsingFocusOn(Scene):
    def construct(self):
        dot = Dot(color=YELLOW).shift(DOWN)
        self.add(Tex("Focusing on the dot below:"), dot)
        self.play(FocusOn(dot))
        self.wait()
class UsingFocusOn(Scene):
    def construct(self):
        dot = Dot(color=YELLOW).shift(DOWN)
        self.add(Tex("Focusing on the dot below:"), dot)
        self.play(FocusOn(dot))
        self.wait()

Methods

create_target

Attributes

path_arc

path_func