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
If you run this it draws the edge but not the arrow. Uncomment the superfluous edge to get an arrow.
picture pic; int picnum = 34; unitsize(pic,1pt); // define nodes node q0=ncircle("$q_0$"); node q1=ncircle("$q_0$"); // calculate nodes position real u=1.5cm; // horizontal real v=1.0*u; // vertical hlayout(1*u, q0, q1); // draw edges draw(pic, // (q0--q1).l("a"), (q0--q1).l("a") ); // draw nodes after edges draw(pic, q0, q1); shipout(format(OUTPUT_FN,picnum),pic,format="pdf");
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If you run this it draws the edge but not the arrow. Uncomment the superfluous edge to get an arrow.
The text was updated successfully, but these errors were encountered: