Revert "[svgPen] Write two digits after decimal by default"

This reverts commit 42d6b6b4fedf51dd741d3134da74df04339335b4.
This commit is contained in:
Nikolaus Waxweiler 2024-05-30 11:44:59 +01:00 committed by Behdad Esfahbod
parent 726a1f7541
commit bdbc470f9f

View File

@ -2,7 +2,7 @@ from typing import Callable
from fontTools.pens.basePen import BasePen
def pointToString(pt, ntos):
def pointToString(pt, ntos=str):
return " ".join(ntos(i) for i in pt)
@ -37,13 +37,7 @@ class SVGPathPen(BasePen):
print(tpen.getCommands())
"""
def __init__(
self,
glyphSet,
ntos: Callable[[float], str] = (
lambda x: ("%.2f" % x) if x != int(x) else str(int(x))
),
):
def __init__(self, glyphSet, ntos: Callable[[float], str] = str):
BasePen.__init__(self, glyphSet)
self._commands = []
self._lastCommand = None