@@ -53,7 +53,7 @@ class Normal(AbstractPathEffect): ...
53
53
class Stroke (AbstractPathEffect ):
54
54
def __init__ (self , offset : tuple [float , float ] = ..., ** kwargs ) -> None : ...
55
55
# rgbFace becomes non-optional
56
- def draw_path (self , gc : GraphicsContextBase , tpath : Path , affine : Transform , rgbFace : ColorType = ...) -> None : ... # type: ignore
56
+ def draw_path (self , renderer : RendererBase , gc : GraphicsContextBase , tpath : Path , affine : Transform , rgbFace : ColorType = ...) -> None : ... # type: ignore
57
57
58
58
class withStroke (Stroke ): ...
59
59
@@ -67,7 +67,7 @@ class SimplePatchShadow(AbstractPathEffect):
67
67
** kwargs
68
68
) -> None : ...
69
69
# rgbFace becomes non-optional
70
- def draw_path (self , gc : GraphicsContextBase , tpath : Path , affine : Transform , rgbFace : ColorType = ...) -> None : ... # type: ignore
70
+ def draw_path (self , renderer : RendererBase , gc : GraphicsContextBase , tpath : Path , affine : Transform , rgbFace : ColorType = ...) -> None : ... # type: ignore
71
71
72
72
class withSimplePatchShadow (SimplePatchShadow ): ...
73
73
@@ -81,13 +81,13 @@ class SimpleLineShadow(AbstractPathEffect):
81
81
** kwargs
82
82
) -> None : ...
83
83
# rgbFace becomes non-optional
84
- def draw_path (self , gc : GraphicsContextBase , tpath : Path , affine : Transform , rgbFace : ColorType = ...) -> None : ... # type: ignore
84
+ def draw_path (self , renderer : RendererBase , gc : GraphicsContextBase , tpath : Path , affine : Transform , rgbFace : ColorType = ...) -> None : ... # type: ignore
85
85
86
86
class PathPatchEffect (AbstractPathEffect ):
87
87
patch : Patch
88
88
def __init__ (self , offset : tuple [float , float ] = ..., ** kwargs ) -> None : ...
89
89
# rgbFace becomes non-optional
90
- def draw_path (self , gc : GraphicsContextBase , tpath : Path , affine : Tran
8000
sform , rgbFace : ColorType = ...) -> None : ... # type: ignore
90
+ def draw_path (self , renderer : RendererBase , gc : GraphicsContextBase , tpath : Path , affine : Transform , rgbFace : ColorType = ...) -> None : ... # type: ignore
91
91
92
92
class TickedStroke (AbstractPathEffect ):
93
93
def __init__ (
@@ -99,6 +99,6 @@ class TickedStroke(AbstractPathEffect):
99
99
** kwargs
100
100
) -> None : ...
101
101
# rgbFace becomes non-optional
102
- def draw_path (self , gc : GraphicsContextBase , tpath : Path , affine : Transform , rgbFace : ColorType = ...) -> None : ... # type: ignore
102
+ def draw_path (self , renderer : RendererBase , gc : GraphicsContextBase , tpath : Path , affine : Transform , rgbFace : ColorType = ...) -> None : ... # type: ignore
103
103
104
104
class withTickedStroke (TickedStroke ): ...
0 commit comments