Questions tagged [code-visualization]
35 questions
3
votes
2 answers
overview/understand architecture codes in eclipse
I have a maven project imported into Eclipse. I'm trying to understand the code pattern (architecture). What is the best way to do this?
will use any UML Eclipse plugin help on this?
will use sequence diagram, help on this?
what plugins should…

cometta
- 35,071
- 77
- 215
- 324
2
votes
0 answers
IDE or plugin to add helpful graphics or illustrate code as-is?
I was staring at my code thinking how boring the text looks.
All I see is text, with no visualizable structure.
Visualizable structures would be awesome:
Background graphics such as 3D half-pipes on edge connecting the opening and closing brackets…

Triynko
- 18,766
- 21
- 107
- 173
2
votes
1 answer
Can I configure code_swarm to only create the png files sans visual display?
Is there a way to configure code_swarm to only create the .png files. I think it would speed up the processing if it wasn't trying to display as it created the images.
I've looked in the FAQ, but didn't notice anything about that in particular.

grieve
- 13,220
- 10
- 49
- 61
2
votes
2 answers
Are there concrete tools or methods for visualizing the structure of a program/project?
I'm working on some beginner programming tutorials and am finding it difficult to keep track of the many modules and functions involved, their purpose (abstractly), and their interrelationships. I'd like to see everything from a bird's-eye view to…

Ryan Lue
- 916
- 10
- 29
2
votes
2 answers
Visualising complex code flows in Visual Studio
I have one very old code-base which consists of C++, VB and Classic ASP nonsense and I am trying to understand some code flows there. Unfortunately, there are many projects written in different languages so best way to analyse code I found was to…

Vladimirs
- 8,232
- 4
- 43
- 79
2
votes
1 answer
Does a Tool for Automatically Visualizing a Project's Source Code's Control Flow In-Line Exist?
I would like to be able to use a tool that lets you visualize a program's control flow(s) in the context of its source code. To clarify, such a tool should basically show what happens in a program by spitting out a human-readable abstract…

RandomDSdevel
- 431
- 6
- 17
1
vote
0 answers
how to use pythontutor.com visualization in pycharm or visual studio IDE
since im new in coding using a visual debuger is a big help for me to understand the codes im writing , using pythontutor.com or thonny app is very helpful as long as we do not import any external module .
some where i read to prevent the problem…

zorg
- 23
- 4
1
vote
2 answers
UML or CASE tool to analyze *huge* JavaScript code base?
I have to figure out how a huge JavaScript code base works and I'm wondering if there are any CASE/UML tools to analyze its structure. I understand that there are several limitations because of the dynamic typing and existence of eval(), but I…

Asimina Pappas
- 313
- 3
- 7
1
vote
5 answers
How does this specific nested for loop work in vanilla JavaScript?
I got a quiz question in my Full Stack Web Development online course that states the following:
let sum = 0;
for (let i = 0; i < 5; i++) {
for (let j = 0; j < 2; j++) {
sum = sum + i + j;
continue;
}
}
console.log(sum);
Now,…

AstonJay
- 13
- 5
1
vote
1 answer
Represent more than 20 levels in a glmtree
Currently I am working with the glmtree() function in R. I have some factor variables with 20+ levels. The problem comes with the representation of the tree. There is some information at certain leafs that is impossible to visualise due to the large…

vog
- 770
- 5
- 11
1
vote
0 answers
Code Visualization and Arrow Annotations
I would like to generate a code visualization that displays
full source code file
with arrows connecting lines
Syntax highlighting (initially PHP, but extensible)
To clarify, I have an analysis that already computes a relationship between some of…

malaverdiere
- 1,527
- 4
- 19
- 36
1
vote
3 answers
Scheme: Convert Code to picture
I have a weird Scheme question. This is a part of something bigger that I'm helping a friend with.
I need to convert a Tree:Data into an image that accurately represents the tree (I'm sorry I don't have a sample image to show just yet).
Please let…

inspectorG4dget
- 110,290
- 27
- 149
- 241
1
vote
1 answer
Eclipse Code Visualizer
Is there code visualizer available (preferred as eclipse plugin)?

John Doe
- 11
- 2
1
vote
2 answers
Visual representation of classes and/or objects
recently I started to work on some big project written in php/js.
It is really big and I have constant problem of backtracing what functions are called where.
Is there any tool, that would import all the code files and draw/write connections between…

SubjectX
- 836
- 2
- 9
- 33
0
votes
1 answer
C++ plotting libraries for visualizing the solution of TSP using Genetic Algorithms
I'm building a project to solve TSP using genetic algorithms in C++. I'm looking for C++ plotting libraries that I can use to visualize the solution. I found a video on youtube & was wondering if something like this can be done in C++. Video link :…

ransomware
- 23
- 2