visualizer Questions
1
Solved
I wrote a little graph visualizer class:
public void simpleGraph(SparseMultigraph<Vertex,SEdge> graph, String name) {
Layout<Vertex, SEdge> layout = new ISOMLayout(graph);
layout.s...
Pictor asked 20/7, 2010 at 10:7
2
Solved
I was debugging in Visual Studio 2010, which we just installed and trying to look at a dictionary in the quick watch window. I see Keys and Values, but drilling into those shows the Count and Non-P...
Artemus asked 7/5, 2010 at 15:11
4
Solved
So, I've been working on a little visualizer for sound files, just for fun. I basically wanted to imitate the "Scope" and "Ocean Mist" visualizers in Windows Media Player. Scope was easy enough, bu...
Resinous asked 17/3, 2010 at 21:55
2
Solved
I've been helping augment a twenty-some year old proprietary language within my company. It is a large, Turing-complete language. Translating it to another grammar regime (such as Antlr) is not an ...
Iguanodon asked 28/10, 2009 at 23:41
4
Solved
I'm going back to the basics here but in Lua, you can define a table like so:
myTable = {}
myTable [1] = 12
Printing the table reference itself brings back a pointer to it. To access its element...
Bobolink asked 2/2, 2009 at 18:36
© 2022 - 2024 — McMap. All rights reserved.