18 lines
551 B
Python
18 lines
551 B
Python
from typing import Any
|
|
from collections.abc import Iterable, Sequence
|
|
|
|
class DXFEntity:
|
|
def dxfattribs(self) -> dict[str, Any]: ...
|
|
def dxftype(self) -> str: ...
|
|
|
|
class LWPolyline(DXFEntity):
|
|
def get_points(self) -> Iterable[tuple[float, ...]]: ...
|
|
|
|
class Polyline(DXFEntity):
|
|
def points(self) -> Iterable[Any]: ... # has .xyz
|
|
|
|
class Text(DXFEntity):
|
|
def get_placement(self) -> tuple[int, tuple[float, float, float]]: ...
|
|
def set_placement(self, p: Sequence[float], align: int = ...) -> Text: ...
|
|
|
|
class Insert(DXFEntity): ...
|