When working on my library representing geometric objects, Debugging currently looks like this:
Here I am viewing the local variables in the Autos
, Locals
, Watch
and Immediate
windows.
As I have trouble imagining the shape of the object in my mind, I would prefer a graphical component to represent these objects. So I have started creating a Debugger Visualizer to draw the objects. I have it in a public repo on bitbucket here.
Right now I cannot get it to work outside of the Console Application I have in the solution with it. What am I doing wrong?
here is what it looks like when it works:
Also, How can I do this in a way that will allow me to view multiple objects at a time. I realized that I really want to see multiple objects and their interactions, instead of just the single objects. (e.g Look for intersections and such).
P.S.
Has anyone seen a debugger extension anywhere like this? or have any suggestions of how I can fix my current one?
I have attempted this in the form of a Visual Studio Extension with no success as well. See this question for more details.