(
self,
polyline,
text,
repeat=False,
center=False,
below=False,
offset=0,
orientation=0,
attributes=None,
**kwargs
)
| 53 | ] |
| 54 | |
| 55 | def __init__( |
| 56 | self, |
| 57 | polyline, |
| 58 | text, |
| 59 | repeat=False, |
| 60 | center=False, |
| 61 | below=False, |
| 62 | offset=0, |
| 63 | orientation=0, |
| 64 | attributes=None, |
| 65 | **kwargs |
| 66 | ): |
| 67 | super().__init__() |
| 68 | self._name = "PolyLineTextPath" |
| 69 | self.polyline = polyline |
| 70 | self.text = text |
| 71 | self.options = remove_empty( |
| 72 | repeat=repeat, |
| 73 | center=center, |
| 74 | below=below, |
| 75 | offset=offset, |
| 76 | orientation=orientation, |
| 77 | attributes=attributes, |
| 78 | **kwargs |
| 79 | ) |
nothing calls this directly
no test coverage detected