mirror of
https://github.com/ManimCommunity/manim.git
synced 2026-06-22 10:01:47 +00:00
* Format imports using Isort. Add a check for pull requests. Signed-off-by: Naveen M K <naveen@syrusdark.website> * CI: update check's name
8 lines
166 B
Python
8 lines
166 B
Python
import numpy as np
|
|
import pytest
|
|
|
|
from manim import Sector
|
|
|
|
|
|
def test_get_arc_center():
|
|
assert np.all(Sector(arc_center=[1, 2, 0]).get_arc_center() == [1, 2, 0])
|