I want to experiment with graphs but don't want deal with their visualization. What is the easiest way to visualize graphs? I heard about graphviz but never actually worked with it.
The main intention is to experiment with maze/dungeon generation for a simple exploration game.
Name:
Anonymous2010-12-06 16:03
pencil and paper
Name:
[SOLVED]2010-12-06 16:12
like y=3x+1? just plot it
Name:
Anonymous2010-12-06 16:21
no like this tree:
1- start with root
2- a- each node has p1 probability to branch into two
b- each node has p2 probability to continue without branching
c- each node has p3(=1-p1-p2) probability to be a leaf(dead end)
I want to run this many times for different p1 p2 p3 values, paper&pencil is nice but not very feasible.
>>12
Or you could read a wikipedia article about trees.
Name:
Anonymous2010-12-06 17:44
>>1
I've used Graphviz for a graph to map visualization project and it worked well. You can generate the graph files yourself and render them with Graphviz or you can use the Graphviz library in your code. The hardest part about using Graphviz was the installation.