geometry-class-library

Visual Debugger for Geometric Objects

喜夏-厌秋 提交于 2019-12-12 08:25:25
问题 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

Call function of Visual Studio Package

拈花ヽ惹草 提交于 2019-12-11 09:37:29
问题 I have created a new Visual Studio Package that when loaded creates a Tool Window that looks like this: It is comprised of some controls with canvases and such that draw shapes in 2 or 3 dimensions. Right now they work in the initialization step to create the objects you see above. For this tool to be useful I would like to call a method on those controls to pass it other objects to draw. For example, I am debugging some code with points and lines and want to see them graphically. (Perhaps

Visual Debugger for Geometric Objects

纵饮孤独 提交于 2019-12-04 03:09:15
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: