Questions tagged [code-visualization]
35 questions
252
votes
19 answers
How can I get a side-by-side diff when I do "git diff"?
When I type git diff, I'd like to see a side-by-side diff, like with diff -y, or like to display the diff in an interactive diff tool like kdiff3. How can this be done?
user783774
44
votes
10 answers
How should I visualize the structure of my code?
I have an application written in Java. In is stored in several files. It uses different classes with different methods. The code is big and complicated. I think it would be easier to understand the code if I have a graphical model of the code (some…

Roman
- 124,451
- 167
- 349
- 456
20
votes
3 answers
Which tool allows to generate such nice source code pictures?
examples below. I am pretty sure that there is online free tool that can do it. But I lost a link :(
May be someone has the link?
http://habrastorage.org/storage2/c43/58e/013/c4358e0133268ad6afa9a9f9ef11c4af.png

user929298
- 559
- 1
- 5
- 13
13
votes
3 answers
Class visualization tools for Objective-C?
Does anyone know of any static class/code explorer/visualisation tools for Objective-C? Something to help become familiar with large code-bases?
Thanks!

user366126
- 501
- 1
- 5
- 6
11
votes
2 answers
Visualizing R code with a flow chart
Are there any tools that can visualize R code?
I have some very complex R code split between several scripts that I need to understand. Part of the difficulty of this is that there are so many nested functions and variables that it's proving…

Stonecraft
- 860
- 1
- 12
- 30
8
votes
2 answers
MATLAB code analysis and visualization tools?
I just picked up a MATLAB codebase that's light on documentation and original developers (who all shot through long ago).
I'm comfortable with MATLAB but could still use some static analysis tools to visualize the program for a quick idea how it…

berad
- 91
- 1
- 4
7
votes
3 answers
Java source code display in a browser?
I have my Java source code in the standard src/ lib/ test/ directory structure for my project. I want to generate a web view of my source code where I can fire up a browser and see syntax-highlighted, line numbered code. I not only want this but I…

pathikrit
- 32,469
- 37
- 142
- 221
7
votes
3 answers
Algorithm visualization for C#
Is there any software that visualizes algorithms from code? As a flow chart of something similar. Not dependencies, inheritance and that kind of thing, but the code inside a function, or a series of functions.

Egor Pavlikhin
- 17,503
- 16
- 61
- 99
6
votes
0 answers
Interactive Flowchart Like Code Map When Debugging JavaScript (in Visual Studio Code)?
When reading some big open source projects' codes, it'd be pleasant if there's a view that shows the visualization result of program executing flow when debugging JavaScript. So if there're any tools like code map for debugging javascript? Like…

TerrySu
- 158
- 8
6
votes
7 answers
Is it possible to display of the tree structure of the Java-code?
I am a newbie in Java. I am trying to figure out how to work this code. It seems to me that it would be very useful if in the beginning I get the general structure of the code (which methods exists and how they are interrelated). For example I see…

Roman
- 124,451
- 167
- 349
- 456
5
votes
1 answer
code visualizer for Racket programs
Is there a code visualization website for Racket programs (for novice WeScheme users) similar to what is available at Online Python Tutor? Needless to say, it would provide a great self-teaching or learning tool.

lifebalance
- 1,846
- 3
- 25
- 57
5
votes
1 answer
Visualize s-expressions in real-time
I want to write Lisp/Scheme/Clojure code like this
(map inc (range 0 5))
And have it visualized somewhat like this
map -- inc
\\
range -- 0
\
-- 5
I want to see the tree change in real-time as I manipulate my…

MRocklin
- 55,641
- 23
- 163
- 235
4
votes
1 answer
Are there any programs that can visualize structure of C++ code?
I have source code that contains more than hundred source files and it is hard to understand what it does, how functions use each other, what is the flow of the execution....
Are there any programs that can visualize structure of C++ code in such a…

Roman
- 124,451
- 167
- 349
- 456
3
votes
2 answers
Dependency Graphs similar to VS 2010 Ultimate?
I'm looking for a visualization tool for net code dependency graphs similar to Dependency Graphs feature of VS 2010 Ultimate.
http://msdn.microsoft.com/en-us/library/ee847415.aspx
Since VS 2010 Ultimate is not available on my project, i'd like to…

George Polevoy
- 7,450
- 3
- 36
- 61
3
votes
1 answer
Qt Dependency Visualizer
I have a lot of classes which interact with other classes through signal&slot mechanism, composition, inheratance etc.
I wonder, is there any tool which visualizes(such as:UML-like diagrams) dependencies between classes in source code especially for…

metdos
- 13,411
- 17
- 77
- 120