Jack Devine
Jack Devine
You are quite good at finding weird use cases! :wink: You are right that there is a problem with the force layout mechanism, but that is not the only problem......
Agreed, I don't see how this would solve the issue being raised. Having said that the lobes may be slightly more aesthetically pleasing way to do self edges than our...
I agree that the function is a nice way to solve that particular case. Although if we find a way to use the exsisting self-edge functionality to solve this problem...
Digging up a slightly old issue here. The desired functionality exsists: ```julia using MetaGraphs using LightGraphs using GraphRecipes using Plots g = MetaGraph(5) add_edge!(g, 1,2) add_edge!(g, 1,3) add_edge!(g, 3,4) set_prop!(g,...
I agree, I don't think that I had any really good reasons for choosing `Dict`, other than that is the data structure that I use 99% of the time. Feel...
But then the dependency graph in #102 wouldn't look as cool :cry: Personally, I am not such a stickler for dependencies because installing Julia packages is something that I do...
I agree that this would be a major improvement to the current node shape infrastructure, thanks for sharing your thoughts! That said, I don't understand the specific implementation of your...
Thanks for opening this issue. As part of #117 I am putting all of the edges into one series and I am making extra sure that the nearest intersection is...
So if you have one long name, then should all of the nodes increase in size, or is your preference to just let the names not fit in the nodes?...
Thanks for this. Do you have a MWE? I am having a little difficulty replicating the problem, ```julia n = 6 g = wheel_graph(n) add_edge!(g,1,1) graphplot(g) |> display g2 =...