mirror of
http://forgejo.openclaw.svc.cluster.local:3000/mrhavens/intellecton.git
synced 2026-06-18 01:22:57 +00:00
19 lines
326 B
Python
19 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: ...
|