-
Hi! Thanks a lot for creating this package; I've found it very helpful. I have a question regarding the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
This is possible.
d.draw(tile, hwidth=0.02, fill='white') into d.draw(tile, stroke_width=0.02, stroke='white', fill='none') |
Beta Was this translation helpful? Give feedback.
This is possible.
hwidth
sets the width of the line in hyperbolic space. This is why the thickness appears to vary when projected into the Poincare disk. You can simply draw the lines normally by replacinghwidth
andfill
withstroke_width
,stroke
, andfill='none'
. Changeinto