Hi,
I try to use compose.jl and I fail to understand the very basic usage of it.
I want to draw a circle and a text, and it works until I try to put a black line around the circle (stroke which is not in the documentation BTW). A black line is drawn between the text and the circle:
how to remove it ?
Here is the MWE:
using Compose
c=compose(context(),circle(0.5,0.5,0.3),fill("red"),stroke("black"))
t=compose(context(),text(0.2,0.2,"toto"),fill("black"))
img=compose(context(),c,t)
draw(PDF("toto.pdf",6cm,6cm), img)
If some Compose.jl expert (which seems to be widely used despite its laconic documentation) could explain how/why this order matters it could probably save me from future mistakes.