Ideal Point

class IdealPoint(angle: float)[source]

A point with infinite distance to the origin, lying on the boundary of the disk.

Examples

Example: IdealPointExample

../_images/IdealPointExample-1.png
from manim import *

from hmanim.poincare import Disk, Dot, IdealPoint

class IdealPointExample(Scene):
    def construct(self):
        disk = Disk(
            radius=3,
            color=WHITE,
        )
        self.add(disk)

        ideal_point = IdealPoint(TAU / 4)
        ideal_dot = Dot(
            ideal_point,
            disk=disk,
            color=BLUE,
        )
        self.add(ideal_dot)
from hmanim.poincare import Disk, Dot, IdealPoint

class IdealPointExample(Scene):
    def construct(self):
        disk = Disk(
            radius=3,
            color=WHITE,
        )
        self.add(disk)

        ideal_point = IdealPoint(TAU / 4)
        ideal_dot = Dot(
            ideal_point,
            disk=disk,
            color=BLUE,
        )
        self.add(ideal_dot)