Gustavo Ferreira
Gustavo Ferreira
there’s also `MarginPen` in [fontPens](https://github.com/robotools/fontPens), but it only works for vertical or horizontal lines — see [this example](https://forum.drawbot.com/topic/60/lines-open-path-intersection-with-paths/5?_=1593977741318) edit: here’s an example with a glyph: ```python from fontPens.marginPen import MarginPen...
see also: [Simple scripts ](http://robofont.com/documentation/building-tools/toolspace/scripts/)
[robodocs.info](http://robodocs.info/) was an experiment which didn’t really work out… the [docs in the RoboFab source](https://github.com/robofab-developers/robofab/tree/master/Docs) is a better reference, because it includes the RoboFab Sphinx theme, ported from the original...
the RoboFont documentation currently includes a few pages which became orphans after the move to fontParts: 1. [Understanding Contours and Segments](http://robofont.com/documentation/building-tools/toolkit/understanding-contours/) 2. [Glyph Math](http://robofont.com/documentation/building-tools/toolkit/glyphmath/) 3. [Using GlyphMath](http://robofont.com/documentation/how-tos/using-glyphmath/) 4. [Pen objects](http://robofont.com/documentation/building-tools/toolkit/pens/)...
6. [Using transformations](http://robofont.com/documentation/building-tools/toolkit/transformations/)
7. [Preparing for Interpolation](http://robofont.com/documentation/how-tos/preparing-for-interpolation/)
this is mentioned in the [RoboFont 3.4 release](https://forum.robofont.com/topic/803/robofont-3-4). the map has been updated in the [RF docs](https://robofont.com/documentation/building-tools/toolkit/fontparts/)* and in [FontParts map](https://github.com/gferreira/fontPartsMap). \* http://gitlab.com/typemytype/robofont_com/-/blob/master/images/building-tools/fontPartsMap.svg
@colinmford yes, feel free to use it. you’ll just need to update the URLs and the font.
some of differences between RoboFab and FontParts are documented [here](http://robofont.com/documentation/building-tools/toolkit/robofab-fontparts/).
`allFonts` must be a list of fonts: ```python from mojo.UI import SelectFont # have a bunch of fonts open fonts = AllFonts() # remove first font from list fonts =...