manim/tests/module/mobject/geometry/test_unit_geometry.py
Darylgolden 6018ebf445 Revert "Merge branch 'main' of https://github.com/ManimCommunity/manim"
This reverts commit e7f9d23aa7, reversing
changes made to afe91d02b6.
2023-07-31 15:29:39 +08:00

9 lines
188 B
Python

from __future__ import annotations
import numpy as np
from manim import Sector
def test_get_arc_center():
assert np.all(Sector(arc_center=[1, 2, 0]).get_arc_center() == [1, 2, 0])