mirror of
https://github.com/ManimCommunity/manim.git
synced 2026-06-22 10:01:47 +00:00
9 lines
188 B
Python
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])
|