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.

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: ...