We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Consider:
{-# LANGUAGE NoMonomorphismRestriction #-} import Diagrams.Prelude import Diagrams.Backend.Cairo.CmdLine dia = hcat' (with & sep .~ 1) [circle 1 # named 'A', circle 1 # named 'B'] # connectOutside' (with & headGap .~ Local 0.3) 'A' 'B' main = defaultMain (dia # frame 0.5)
I would expect a rather significant gap at the front of the arrow. However, rendering at 400x400 yields:
On the other hand,
{-# LANGUAGE NoMonomorphismRestriction #-} import Diagrams.Prelude import Diagrams.Backend.Cairo.CmdLine dia = hcat' (with & sep .~ 1) [circle 1 # named 'A', circle 1 # named 'B'] # connectOutside' (with & headGap .~ Local 30) 'A' 'B' main = defaultMain (dia # frame 0.5)
renders as
The text was updated successfully, but these errors were encountered:
Note that tailGap, headLength, and tailLength all display similar behavior.
tailGap
headLength
tailLength
Sorry, something went wrong.
transform Local Measure in arrow styles
f057ada
closes #193
ebfae95
closes #193 (cherry picked from commit f057ada)
Successfully merging a pull request may close this issue.
Consider:
I would expect a rather significant gap at the front of the arrow. However, rendering at 400x400 yields:
On the other hand,
renders as
The text was updated successfully, but these errors were encountered: