You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support drawing text. Similar in function to the Python turtle.write method.
If someone would like to take this on, please leave a comment and I'll provide more detailed implementation steps. Adding text is not going to be super difficult, though it will take some insight into how the library works in order to implement it properly. Text will be implemented as a new kind of drawing primitive, similar to the Line and Polygon primitives we currently support. Pathfinder does support rendering text via the fill_text method, so we can use its APIs to implement this feature.
The text was updated successfully, but these errors were encountered:
Support drawing text. Similar in function to the Python turtle.write method.
If someone would like to take this on, please leave a comment and I'll provide more detailed implementation steps. Adding text is not going to be super difficult, though it will take some insight into how the library works in order to implement it properly. Text will be implemented as a new kind of drawing primitive, similar to the
Line
andPolygon
primitives we currently support. Pathfinder does support rendering text via thefill_text
method, so we can use its APIs to implement this feature.The text was updated successfully, but these errors were encountered: