Files
MLPproject/.venv/lib/python3.12/site-packages/matplotlib/_enums.pyi
2025-10-23 15:44:32 +02:00

20 lines
326 B
Python

from typing import cast
from enum import Enum
class JoinStyle(str, Enum):
miter = "miter"
round = "round"
bevel = "bevel"
@staticmethod
def demo() -> None: ...
class CapStyle(str, Enum):
butt = "butt"
projecting = "projecting"
round = "round"
@staticmethod
def demo() -> None: ...