<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[AppendBPoint outputs NotImplementedError]]></title><description><![CDATA[<p dir="auto">Is there a tutorial or some help on how to add points on an existing contour?<br />
<code>appendBPoint</code> outputs <code>NotImplementedError</code>.<br />
Thanks.</p>
]]></description><link>https://forum.robofont.com/topic/206/appendbpoint-outputs-notimplementederror</link><generator>RSS for Node</generator><lastBuildDate>Sun, 09 Aug 2026 15:49:36 GMT</lastBuildDate><atom:link href="https://forum.robofont.com/topic/206.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 28 Oct 2012 21:11:34 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to AppendBPoint outputs NotImplementedError on Tue, 02 Jan 2018 17:34:47 GMT]]></title><description><![CDATA[<p dir="auto">Is there a tutorial or some help on how to add points on an existing contour?<br />
<code>appendBPoint</code> outputs <code>NotImplementedError</code>.<br />
Thanks.</p>
]]></description><link>https://forum.robofont.com/post/206</link><guid isPermaLink="true">https://forum.robofont.com/post/206</guid><dc:creator><![CDATA[jo]]></dc:creator><pubDate>Tue, 02 Jan 2018 17:34:47 GMT</pubDate></item><item><title><![CDATA[Reply to AppendBPoint outputs NotImplementedError on Tue, 02 Jan 2018 17:35:33 GMT]]></title><description><![CDATA[<p dir="auto">To draw in a glyph use a pen like object<br />
To add or insert points use <code>appendSegment</code> or <code>insertSegment</code></p>
<pre><code class="language-python">glyph = CurrentGlyph()
glyph.clear()
## grab the pen of that glyph
pen = glyph.getPen()
## draw with the pen
## this draws a rect
pen.moveTo((100, 100))
pen.lineTo((100, 200))
pen.lineTo((200, 200))
pen.lineTo((200, 100))
pen.closePath()

## grab the first contour
contour = glyph[0]
## append a segment
contour.appendSegment("line", [(150, 50)])
## insert a segment
contour.insertSegment(2, "line", [(50, 200)])
contour.insertSegment(3, "curve", [(100, 280), (200, 280), (250, 200)])
</code></pre>
]]></description><link>https://forum.robofont.com/post/904</link><guid isPermaLink="true">https://forum.robofont.com/post/904</guid><dc:creator><![CDATA[frederik]]></dc:creator><pubDate>Tue, 02 Jan 2018 17:35:33 GMT</pubDate></item><item><title><![CDATA[Reply to AppendBPoint outputs NotImplementedError on Tue, 30 Oct 2012 09:32:38 GMT]]></title><description><![CDATA[<p dir="auto">hi frederik,<br />
that is a great help. segments obviously come along with some points.<br />
thanks a lot!<br />
jo</p>
]]></description><link>https://forum.robofont.com/post/905</link><guid isPermaLink="true">https://forum.robofont.com/post/905</guid><dc:creator><![CDATA[jo]]></dc:creator><pubDate>Tue, 30 Oct 2012 09:32:38 GMT</pubDate></item></channel></rss>