You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
393 B

"""
This type stub file was generated by pyright.
"""
import numpy as np
from collections.abc import Sequence
from .transforms import BboxBase
def affine_transform(points: np.ndarray, trans: np.ndarray) -> np.ndarray:
...
def count_bboxes_overlapping_bbox(bbox: BboxBase, bboxes: Sequence[BboxBase]) -> int:
...
def update_path_extents(path, trans, rect, minpos, ignore):
...