BodyBalanceEvaluation/backend/venv/Lib/site-packages/matplotlib/_enums.pyi

20 lines
326 B
Python
Raw Normal View History

2025-07-31 17:23:05 +08:00
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: ...