-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
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
Making directed and non-simple graphs #61
Comments
Use the addEdge(v1, v2) method to create edge from v1 --> v2 and
addEdge(v2, v1) to create an edge in the opposite direction.
Check
http://bridgesuncc.github.io/tutorials/Graph_AL.html
for an example using the IMDB data.
-- krs
On 3/24/20 4:39 PM, Austin Cory Bart wrote:
Two questions:
1. How do you make a directed edge between two vertices?
2. How do you make multiple edges between two vertices?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#61>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABLFEOFQASTSC4SXD4H6L53RJEK7FANCNFSM4LS7BWNQ>.
--
----------------------------------------------------------------------------------
Kalpathi Subramanian Ph: 704 687 8579
Associate Professor Email: [email protected]
Dept of Computer Science Web:http://webpages.uncc.edu/krs
The University of North Carolina
Charlotte, NC 28202-0001
|
Yeah, this has been an issue forever. The problem is trying to nicely
scale the edges depending on the size of the graph. We will make it an
issue and get to it to see if we can do better.
I would like to spend some time on the graphics side of it; this has
long been neglected as the focus had been more on data and data
structures side since the beginning of the project.
-- krs
On 3/24/20 5:14 PM, Austin Cory Bart wrote:
Okay, so all edges are directed, but their arrow heads are
ridiculously tiny on my screen; is there a way to make the arrow head
visible without just making the thickness extremely high?
image
<https://user-images.githubusercontent.com/897227/77477327-8b9c2200-6df2-11ea-8b01-8c5fee2a6aaf.png>
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#61 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABLFEOAOKQK7YZR3ZRJPME3RJEPCLANCNFSM4LS7BWNQ>.
--
----------------------------------------------------------------------------------
Kalpathi Subramanian Ph: 704 687 8579
Associate Professor Email: [email protected]
Dept of Computer Science Web:http://webpages.uncc.edu/krs
The University of North Carolina
Charlotte, NC 28202-0001
|
Ah, cool, that'd be nice. I was going to be relying on students making directed graphs for their projects next week, so perhaps at least increasing the default size a little might be helpful? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Two questions:
The text was updated successfully, but these errors were encountered: