Exports the first item on the stack as an SVG file For testing purposes mainly. :param fileName: the filename to export, absolute path to the file
(self, fileName: str)
| 1041 | return getSVG(self.val(), opts) |
| 1042 | |
| 1043 | def exportSvg(self, fileName: str) -> None: |
| 1044 | """ |
| 1045 | Exports the first item on the stack as an SVG file |
| 1046 | |
| 1047 | For testing purposes mainly. |
| 1048 | |
| 1049 | :param fileName: the filename to export, absolute path to the file |
| 1050 | """ |
| 1051 | exportSVG(self, fileName) |
| 1052 | |
| 1053 | def rotateAboutCenter(self: T, axisEndPoint: VectorLike, angleDegrees: float) -> T: |
| 1054 | """ |