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
I think the blue and red lines should be almost overlapping in the following diagram, should they not?
#import "@preview/fletcher:0.5.4" as fl: node, edge #set page( width: auto, height: auto, margin: 1mm, ) #let line = (stroke: blue) #let arc = (bend: 1deg, stroke: red) #fl.diagram( node-stroke: .1em, node((0, 0), name: <O>, shape: rect, defocus: 1, [defocus: 1], ), node((-1, -1), name: <A>, []), node((-1, 1), name: <B>, []), node(( 1, 1), name: <C>, []), node(( 1, -1), name: <D>, []), // Defocus honored ❤️. edge(<A>, <O>, ..line), edge(<B>, <O>, ..line), edge(<C>, <O>, ..line), edge(<D>, <O>, ..line), // Defocus unhonored 💔. edge(<A>, <O>, ..arc), edge(<B>, <O>, ..arc), edge(<C>, <O>, ..arc), edge(<D>, <O>, ..arc), )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I think the blue and red lines should be almost overlapping in the following diagram, should they not?
The text was updated successfully, but these errors were encountered: