You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			10 lines
		
	
	
		
			325 B
		
	
	
	
		
			Python
		
	
			
		
		
	
	
			10 lines
		
	
	
		
			325 B
		
	
	
	
		
			Python
		
	
from collections.abc import Sequence
 | 
						|
 | 
						|
import numpy as np
 | 
						|
 | 
						|
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): ...
 |