mirror of
https://github.com/Ladebeze66/projetcbaollm.git
synced 2025-12-16 22:37:49 +01:00
20 lines
326 B
Python
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: ...
|