| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/fpdf-stubs/ |
Upload File : |
# from fontTools.misc.loggingTools
from abc import ABCMeta, abstractmethod
from collections.abc import Mapping
from logging import Logger
from typing import Protocol
from typing_extensions import TypeAlias
# from fonttools.ttLib.ttGlyphSet
class _TTGlyph(Protocol):
def __init__(self, glyphSet: _TTGlyphSet, glyphName: str) -> None: ...
def draw(self, pen) -> None: ...
def drawPoints(self, pen) -> None: ...
_TTGlyphSet: TypeAlias = Mapping[str, _TTGlyph] # Simplified for our needs
# from fontTools.misc.loggingTools
class LogMixin:
@property
def log(self) -> Logger: ...
# from fontTools.pens.basePen
class AbstractPen:
@abstractmethod
def moveTo(self, pt: tuple[float, float]) -> None: ...
@abstractmethod
def lineTo(self, pt: tuple[float, float]) -> None: ...
@abstractmethod
def curveTo(self, *points: tuple[float, float]) -> None: ...
@abstractmethod
def qCurveTo(self, *points: tuple[float, float]) -> None: ...
def closePath(self) -> None: ...
def endPath(self) -> None: ...
@abstractmethod
def addComponent(self, glyphName: str, transformation: tuple[float, float, float, float, float, float]) -> None: ...
class LoggingPen(LogMixin, AbstractPen, metaclass=ABCMeta): ...
class DecomposingPen(LoggingPen, metaclass=ABCMeta):
skipMissingComponents: bool
glyphSet: _TTGlyphSet | None
def __init__(self, glyphSet: _TTGlyphSet | None) -> None: ...
def addComponent(self, glyphName: str, transformation: tuple[float, float, float, float, float, float]) -> None: ...
class BasePen(DecomposingPen):
def __init__(self, glyphSet: _TTGlyphSet | None = ...) -> None: ...
def closePath(self) -> None: ...
def endPath(self) -> None: ...
def moveTo(self, pt: tuple[float, float]) -> None: ...
def lineTo(self, pt: tuple[float, float]) -> None: ...
def curveTo(self, *points: tuple[float, float]) -> None: ...
def qCurveTo(self, *points: tuple[float, float]) -> None: ...