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.
|
from __future__ import annotations
|
|
|
|
import numpy as np
|
|
|
|
# dtypes of arrays returned by ContourPy.
|
|
point_dtype = np.float64
|
|
code_dtype = np.uint8
|
|
offset_dtype = np.uint32
|
|
|
|
# Kind codes used in Matplotlib Paths.
|
|
MOVETO = 1
|
|
LINETO = 2
|
|
CLOSEPOLY = 79
|