|
|
|
|
|
by akdas
1779 days ago
|
|
> I think 3-D visualizations of 1-D languages (all our current programming languages are 1-D) will not be so helpful, as you will be looking at transformations, not the actual code as it exists. This is the part that I disagree with. The source code is linear, sure, but the structure that ties the different components in a codebase together is high-dimensional. For example, the symbol usage graph is really useful to visualize in 3D, as is the general package structure. And most of these visualizations we see don't even touch on runtime analysis like I was working on! There, seeing different types of data arranged either by where the data is coming from in the source code or where the data is coming from at runtime (analogous to lexical vs. dynamic scoping) is a visualization that benefits from 3D. |
|
I could still be wrong, and really need to get those experiments going again! Thanks for pushing back on that and causing me to think harder.
P.S. I also think runtime analysis is an even more complex problem, and applaud you for attacking it!