Hello colleague, On Friday, April 15, 2016 at 5:17:29 PM UTC+2, Christoph Ortner wrote: > > I understand from the example > how to vectorise drawing of circles. > > The syntax for a two-point line segment seems to be line( [(x0, y0), > (x1, y1)] ) I don't see an analogy with `circle`? > > But how do I vectorise lines? >
what is your meaning of 'vectorise lines'? a) have lines with more points -> compose(context(),line([(0.4,0.3),(0.6,0.2),(0.6,0.4)])); you just add tuples in the array b) have more lines in the same primitive -> looks like, you need a new context for that.
