├── .github └── workflows │ └── ci-site.yaml ├── .gitignore ├── LICENSE ├── README.md ├── dev ├── old │ ├── 17-06-24_buffered_line_plot │ │ ├── demo.gif │ │ ├── pixelDrawDrag2.sln │ │ ├── pixelDrawDrag2 │ │ │ ├── App.config │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ └── pixelDrawDrag2.csproj │ │ └── readme.md │ ├── 17-06-24_stretchy_line_plot │ │ ├── demo.gif │ │ ├── pixelDrawDrag2.sln │ │ ├── pixelDrawDrag2 │ │ │ ├── App.config │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── pixelDrawDrag2.csproj │ │ │ └── swhPlot.cs │ │ └── readme.md │ ├── 17-06-25_pan_and_zoom │ │ ├── demo.gif │ │ ├── readme.md │ │ ├── swharden_demo.sln │ │ └── swharden_demo │ │ │ ├── App.config │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── ScottPlot.cs │ │ │ ├── clipart.jpg │ │ │ └── swharden_demo.csproj │ ├── 17-06-26_abf_data │ │ ├── demo.jpg │ │ ├── readme.md │ │ ├── swharden_demo.sln │ │ └── swharden_demo │ │ │ ├── App.config │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── ScottPlot.cs │ │ │ ├── clipart.jpg │ │ │ └── swharden_demo.csproj │ ├── 17-07-02_nice_axis │ │ ├── DataVis │ │ │ ├── DataVis.sln │ │ │ ├── Sandbox │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ └── Sandbox.csproj │ │ │ ├── ScottPlot2 │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── ScottPlot.cs │ │ │ │ └── ScottPlot2.csproj │ │ │ └── demo_01_basic │ │ │ │ ├── App.config │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── demo_01_basic.csproj │ │ ├── demo.gif │ │ ├── readme.md │ │ └── test.jpg │ ├── 17-07-03_wav_speed_rendering │ │ ├── DataVis │ │ │ ├── DataVis.sln │ │ │ ├── Sandbox │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ ├── Sandbox.csproj │ │ │ │ └── packages.config │ │ │ ├── ScottPlot2 │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── ScottPlot.cs │ │ │ │ └── ScottPlot2.csproj │ │ │ └── demo_01_basic │ │ │ │ ├── App.config │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── demo_01_basic.csproj │ │ ├── demo.gif │ │ └── readme.md │ ├── 17-07-16_microphone │ │ ├── .gitignore │ │ ├── ScottPlot-2017-07-30 │ │ │ ├── ScottPlot.sln │ │ │ ├── ScottPlot │ │ │ │ ├── Axis.cs │ │ │ │ ├── Draw.cs │ │ │ │ ├── Figure.cs │ │ │ │ ├── Generate.cs │ │ │ │ ├── Misc.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── ScottPlot.csproj │ │ │ │ ├── ScottPlotUC.Designer.cs │ │ │ │ ├── ScottPlotUC.cs │ │ │ │ ├── ScottPlotUC.resx │ │ │ │ ├── ucInteractive.Designer.cs │ │ │ │ ├── ucInteractive.cs │ │ │ │ └── ucInteractive.resx │ │ │ └── examples │ │ │ │ ├── GUI │ │ │ │ ├── 01 multilayered static │ │ │ │ │ ├── 01 multilayered simple.csproj │ │ │ │ │ ├── App.config │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ └── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ ├── 02 simple interactive │ │ │ │ │ ├── 02 interactive.csproj │ │ │ │ │ ├── App.config │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ └── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ ├── 03 interactive sandbox │ │ │ │ │ └── 03 interactive sandbox │ │ │ │ │ │ ├── 03 interactive sandbox.csproj │ │ │ │ │ │ ├── App.config │ │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ │ ├── Form1.cs │ │ │ │ │ │ ├── Form1.resx │ │ │ │ │ │ ├── Program.cs │ │ │ │ │ │ └── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ ├── 04 ScottPlotUC │ │ │ │ │ ├── 04 ScottPlotUC.csproj │ │ │ │ │ ├── App.config │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ └── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ └── ScottPlotABF │ │ │ │ │ ├── ABF.cs │ │ │ │ │ ├── App.config │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ │ └── ScottPlotABF.csproj │ │ │ │ └── console │ │ │ │ └── 01 simple │ │ │ │ ├── 01 simple.csproj │ │ │ │ ├── App.config │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── demo.gif │ │ ├── microphone.sln │ │ ├── microphone │ │ │ ├── App.config │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── microphone.csproj │ │ │ └── packages.config │ │ └── readme.md │ ├── 18-01-09_microphone_level_meter │ │ ├── WindowsFormsApp1 │ │ │ ├── WindowsFormsApp1.sln │ │ │ └── WindowsFormsApp1 │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── WindowsFormsApp1.csproj │ │ │ │ └── packages.config │ │ ├── readme.md │ │ └── screenshot.gif │ ├── 18-01-10_fast_pixel_bitmap │ │ ├── WindowsFormsApp1 │ │ │ ├── 02 bitmap scroll │ │ │ │ ├── 02 bitmap scroll.csproj │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ ├── WindowsFormsApp1.sln │ │ │ └── WindowsFormsApp1 │ │ │ │ ├── 01 bitmap demo.csproj │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ └── readme.md │ │ ├── readme.md │ │ └── screenshot.png │ ├── 18-01-11_microphone_spectrograph │ │ ├── WindowsFormsApp1 │ │ │ ├── WindowsFormsApp1.sln │ │ │ └── WindowsFormsApp1 │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── packages.config │ │ │ │ ├── readme.md │ │ │ │ └── spectrograph.csproj │ │ ├── readme.md │ │ └── spectrograph.gif │ ├── 18-01-14_qrss │ │ ├── binaries.zip │ │ ├── capture_music.jpg │ │ ├── capture_qrss.jpg │ │ ├── qrss │ │ │ ├── qrss.sln │ │ │ └── qrss │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── packages.config │ │ │ │ └── qrss.csproj │ │ ├── readme.md │ │ ├── screenshot_music.png │ │ └── screenshot_qrss.png │ ├── 18-01-15_form_drawing │ │ ├── Thumbs.db │ │ ├── clampfit-graph.png │ │ ├── clampfit-needs-graphing.png │ │ ├── clampfit2.png │ │ ├── compiled_release.zip │ │ ├── drawing │ │ │ ├── 03 functional │ │ │ │ ├── 03 functional.csproj │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ └── ScottPlot.cs │ │ │ ├── drawing.sln │ │ │ ├── drawing │ │ │ │ ├── 01 pixel placement.csproj │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ └── ScottPlot.cs │ │ │ └── drawing2 │ │ │ │ ├── 02 table layout.csproj │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ ├── layout.PNG │ │ ├── layout2.PNG │ │ ├── plan.PNG │ │ ├── plan.pptx │ │ ├── readme.md │ │ └── screenshot2.png │ ├── 18-09-19_microphone_FFT_revisited │ │ ├── README.md │ │ ├── Release.zip │ │ ├── ScottPlotMicrophoneFFT │ │ │ ├── ScottPlot-2018-09-09 │ │ │ │ ├── Axes.cs │ │ │ │ ├── Axis.cs │ │ │ │ ├── DataGen.cs │ │ │ │ ├── Figure.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── ScottPlot.cd │ │ │ │ ├── ScottPlot.csproj │ │ │ │ ├── ScottPlotUC.Designer.cs │ │ │ │ ├── ScottPlotUC.cs │ │ │ │ └── ScottPlotUC.resx │ │ │ ├── ScottPlotMicrophoneFFT.sln │ │ │ └── ScottPlotMicrophoneFFT │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── ScottPlotMicrophoneFFT.csproj │ │ │ │ └── packages.config │ │ └── screenshot.png │ ├── 18-09-28_gnuplot_knowing │ │ ├── WindowsFormsApp1 │ │ │ ├── App.config │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── GnuPlot.cs │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── WindowsFormsApp1.csproj │ │ │ └── WindowsFormsApp1.sln │ │ └── readme.md │ ├── 2019-06-01-graphics-basics │ │ ├── App.config │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── graphicsBasics.csproj │ │ ├── graphicsBasics.sln │ │ ├── readme.md │ │ └── screenshot.png │ ├── 2019-06-02-drawing-with-mouse │ │ ├── App.config │ │ ├── DrawWithMouse.csproj │ │ ├── DrawWithMouse.sln │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── readme.md │ │ └── screenshot.png │ ├── 2019-06-03-coordinate-system │ │ ├── App.config │ │ ├── DrawCoordinates.csproj │ │ ├── DrawCoordinates.sln │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── readme.md │ │ └── screenshot.png │ ├── 2019-06-04-pixel-setting │ │ ├── App.config │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── PixelSetting.csproj │ │ ├── PixelSetting.sln │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── readme.md │ │ └── screenshot.png │ ├── 2019-06-05-grayscale-image │ │ ├── App.config │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── PixelSetting.csproj │ │ ├── PixelSetting.sln │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── readme.md │ │ └── screenshot.png │ ├── 2019-06-06-audio-level-monitor │ │ ├── App.config │ │ ├── AudioPeak.csproj │ │ ├── AudioPeak.sln │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── packages.config │ │ ├── readme.md │ │ └── screenshot.png │ ├── 2019-06-07-audio-visualizer │ │ ├── App.config │ │ ├── AudioPeak.csproj │ │ ├── AudioPeak.sln │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── packages.config │ │ ├── readme.md │ │ └── screenshot.gif │ ├── 2019-06-08-audio-fft │ │ ├── App.config │ │ ├── AudioPeak.csproj │ │ ├── AudioPeak.sln │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── packages.config │ │ ├── readme.md │ │ └── screenshot.gif │ ├── 2019-09-08-SkiaSharp-openGL │ │ ├── SkiaDemo.sln │ │ ├── SkiaDemo │ │ │ ├── App.config │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── OpenTK.dll.config │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── SkiaDemo.csproj │ │ │ └── packages.config │ │ ├── SkiaSharp-OpenGL-Demo.zip │ │ ├── readme.md │ │ └── screenshot.jpg │ ├── 2019-10-09-WPF-Draw-Lines │ │ ├── WpfPlotConcept.sln │ │ ├── WpfPlotConcept │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── DrawVis.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── VisHost.cs │ │ │ └── WpfPlotConcept.csproj │ │ ├── readme.md │ │ └── screenshot.png │ ├── 2021-01-07-blazor-html-canvas │ │ ├── BlazorCanvasTest2 │ │ │ ├── App.razor │ │ │ ├── BlazorCanvasTest2.csproj │ │ │ ├── BlazorCanvasTest2.sln │ │ │ ├── Models │ │ │ │ ├── Ball.cs │ │ │ │ └── Field.cs │ │ │ ├── Pages │ │ │ │ └── Index.razor │ │ │ ├── Program.cs │ │ │ ├── Shared │ │ │ │ └── MainLayout.razor │ │ │ ├── _Imports.razor │ │ │ └── wwwroot │ │ │ │ └── index.html │ │ ├── blazor-canvas-demo.gif │ │ └── readme.md │ ├── 2021-01-08-blazor-boids │ │ ├── BlazorBoids │ │ │ ├── App.razor │ │ │ ├── BlazorBoids.csproj │ │ │ ├── BlazorBoids.sln │ │ │ ├── Models │ │ │ │ ├── Boid.cs │ │ │ │ └── Field.cs │ │ │ ├── Pages │ │ │ │ └── Index.razor │ │ │ ├── Program.cs │ │ │ ├── Shared │ │ │ │ └── MainLayout.razor │ │ │ ├── _Imports.razor │ │ │ └── wwwroot │ │ │ │ ├── favicon.ico │ │ │ │ └── index.html │ │ ├── blazor-boids.gif │ │ └── experiments │ │ │ ├── bounce.html │ │ │ ├── planet.html │ │ │ └── renderTest.html │ ├── 2021-01-09-blazor-mystify │ │ ├── MystifyBlazor │ │ │ ├── App.razor │ │ │ ├── Models │ │ │ │ ├── Color.cs │ │ │ │ ├── Corner.cs │ │ │ │ ├── Field.cs │ │ │ │ ├── Polygon.cs │ │ │ │ └── Shape.cs │ │ │ ├── MystifyBlazor.csproj │ │ │ ├── MystifyBlazor.sln │ │ │ ├── Pages │ │ │ │ └── Index.razor │ │ │ ├── Program.cs │ │ │ ├── Shared │ │ │ │ └── MainLayout.razor │ │ │ ├── _Imports.razor │ │ │ ├── dev │ │ │ │ └── practice.html │ │ │ └── wwwroot │ │ │ │ ├── css │ │ │ │ ├── app.css │ │ │ │ └── bootstrap.css │ │ │ │ ├── favicon.ico │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ └── bootstrap.bundle.min.js │ │ └── blazor-mystify.gif │ ├── 2021-01-10-blazor-google-charts │ │ ├── App.razor │ │ ├── BlazorGoogleCharts.csproj │ │ ├── BlazorGoogleCharts.sln │ │ ├── Pages │ │ │ └── Index.razor │ │ ├── Program.cs │ │ ├── Shared │ │ │ └── MainLayout.razor │ │ ├── _Imports.razor │ │ ├── blazor-google-charts.jpg │ │ └── wwwroot │ │ │ ├── css │ │ │ ├── app.css │ │ │ └── bootstrap.css │ │ │ ├── favicon.ico │ │ │ ├── index.html │ │ │ └── js │ │ │ └── bootstrap.bundle.min.js │ ├── 2021-07-03-console-microphone │ │ ├── Program.cs │ │ ├── console-microphone.csproj │ │ ├── console-microphone.sln │ │ ├── microphone-mono.gif │ │ ├── microphone-stereo.gif │ │ └── readme.md │ ├── drawing │ │ ├── alternate │ │ │ ├── ImageSharpBenchmark │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── ImageSharpBenchmark.csproj │ │ │ │ ├── ImageSharpBenchmark.sln │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ └── packages.config │ │ │ ├── SkiaSharpBenchmark │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── OpenTK.dll.config │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ ├── SkiaSharpBenchmark.csproj │ │ │ │ ├── SkiaSharpBenchmark.sln │ │ │ │ └── packages.config │ │ │ ├── SkiaSharpOpenGLBenchmark │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── OpenTK.dll.config │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ ├── SkiaSharpOpenGLBenchmark.csproj │ │ │ │ ├── SkiaSharpOpenGLBenchmark.sln │ │ │ │ └── packages.config │ │ │ ├── SystemDrawing │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ ├── SystemDrawing.csproj │ │ │ │ └── SystemDrawing.sln │ │ │ └── WpfBenchmark │ │ │ │ ├── App.config │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── MainWindow.xaml │ │ │ │ ├── MainWindow.xaml.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── WpfBenchmark.csproj │ │ │ │ └── WpfBenchmark.sln │ │ ├── boids │ │ │ ├── Boids.Model │ │ │ │ ├── Boid.cs │ │ │ │ ├── Boids.Model.csproj │ │ │ │ └── Field.cs │ │ │ ├── Boids.Viewer │ │ │ │ ├── App.config │ │ │ │ ├── Boids.Viewer.csproj │ │ │ │ ├── Form2.Designer.cs │ │ │ │ ├── Form2.cs │ │ │ │ ├── Form2.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ └── SDRender.cs │ │ │ ├── Boids.sln │ │ │ └── screenshot.gif │ │ ├── boids2 │ │ │ ├── BoidsGL.sln │ │ │ ├── Model │ │ │ │ ├── Boid.cs │ │ │ │ ├── Field.cs │ │ │ │ ├── Model.csproj │ │ │ │ ├── Position.cs │ │ │ │ └── Velocity.cs │ │ │ ├── Viewer │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── OpenTK.dll.config │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ ├── Renderer.cs │ │ │ │ ├── Viewer.csproj │ │ │ │ └── packages.config │ │ │ └── screenshot.png │ │ ├── bounce │ │ │ ├── Mystify.Model │ │ │ │ ├── Corner.cs │ │ │ │ ├── Mystify.Model.csproj │ │ │ │ ├── PointF.cs │ │ │ │ └── Polygon.cs │ │ │ ├── Mystify.Viewer │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Mystify.Viewer.csproj │ │ │ │ ├── OpenTK.dll.config │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ └── packages.config │ │ │ └── Mystify.sln │ │ ├── constellation │ │ │ ├── injected │ │ │ │ ├── ConstellationInjected.sln │ │ │ │ ├── GraphicsModel │ │ │ │ │ ├── Color.cs │ │ │ │ │ ├── Field.cs │ │ │ │ │ ├── GraphicsModel.csproj │ │ │ │ │ ├── IRenderer.cs │ │ │ │ │ ├── Point.cs │ │ │ │ │ └── Star.cs │ │ │ │ ├── Viewer │ │ │ │ │ ├── App.config │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── SystemDrawingRenderer.cs │ │ │ │ │ └── Viewer.csproj │ │ │ │ └── ViewerGL │ │ │ │ │ ├── App.config │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── OpenTK.dll.config │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── SkiaSharpRenderer.cs │ │ │ │ │ ├── ViewerGL.csproj │ │ │ │ │ └── packages.config │ │ │ ├── isolated │ │ │ │ ├── ConstellationIsolated.sln │ │ │ │ ├── GraphicsModel │ │ │ │ │ ├── Field.cs │ │ │ │ │ ├── GraphicsModel.csproj │ │ │ │ │ └── Star.cs │ │ │ │ ├── RenderSystemDrawing │ │ │ │ │ ├── RenderSystemDrawing.csproj │ │ │ │ │ └── Renderer.cs │ │ │ │ ├── Viewer │ │ │ │ │ ├── App.config │ │ │ │ │ ├── Form1.Designer.cs │ │ │ │ │ ├── Form1.cs │ │ │ │ │ ├── Form1.resx │ │ │ │ │ ├── Program.cs │ │ │ │ │ ├── Properties │ │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ │ ├── Resources.resx │ │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ │ └── Settings.settings │ │ │ │ │ ├── Viewer.csproj │ │ │ │ │ └── packages.config │ │ │ │ └── ViewerWPF │ │ │ │ │ ├── App.xaml │ │ │ │ │ ├── App.xaml.cs │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── MainWindow.xaml │ │ │ │ │ ├── MainWindow.xaml.cs │ │ │ │ │ └── ViewerWPF.csproj │ │ │ └── simple │ │ │ │ ├── ConstellationSimple.sln │ │ │ │ ├── GraphicsModel │ │ │ │ ├── Field.cs │ │ │ │ ├── GraphicsModel.csproj │ │ │ │ └── Star.cs │ │ │ │ ├── Viewer │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ └── Viewer.csproj │ │ │ │ └── ViewerGL │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── OpenTK.dll.config │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ ├── ViewerGL.csproj │ │ │ │ └── packages.config │ │ ├── game-of-life │ │ │ ├── GameOfLife.sln │ │ │ ├── GameOfLife │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── GameOfLife.csproj │ │ │ │ ├── Program.cs │ │ │ │ └── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ ├── LifeModel │ │ │ │ ├── Board.cs │ │ │ │ ├── Cell.cs │ │ │ │ └── LifeModel.csproj │ │ │ └── screenshot.gif │ │ ├── mystify │ │ │ ├── Mystify.Model │ │ │ │ ├── Color.cs │ │ │ │ ├── Colors.cs │ │ │ │ ├── Corner.cs │ │ │ │ ├── Field.cs │ │ │ │ ├── IRenderer.cs │ │ │ │ ├── Mystify.Model.csproj │ │ │ │ ├── Point.cs │ │ │ │ └── Polygon.cs │ │ │ ├── Mystify.Viewer │ │ │ │ ├── App.config │ │ │ │ ├── DrawingRenderer.cs │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Mystify.Viewer.csproj │ │ │ │ ├── OpenTK.dll.config │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ │ ├── Resources.Designer.cs │ │ │ │ │ ├── Resources.resx │ │ │ │ │ ├── Settings.Designer.cs │ │ │ │ │ └── Settings.settings │ │ │ │ ├── SkiaRenderer.cs │ │ │ │ └── packages.config │ │ │ ├── Mystify.sln │ │ │ └── screenshot.gif │ │ ├── quickstart-console │ │ │ ├── DrawingQuickstartConsole.csproj │ │ │ ├── DrawingQuickstartConsole.sln │ │ │ ├── Program.cs │ │ │ └── drawing-quickstart-console.png │ │ ├── quickstart-winforms │ │ │ ├── App.config │ │ │ ├── DrawingQuickstartWinForms.csproj │ │ │ ├── DrawingQuickstartWinForms.sln │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ ├── quickstart-wpf │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── AssemblyInfo.cs │ │ │ ├── DrawingQuickstartWPF.csproj │ │ │ ├── DrawingQuickstartWPF.sln │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ └── drawing-in-wpf.png │ │ ├── simple-paint │ │ │ ├── SimplePaint.sln │ │ │ └── SimplePaint │ │ │ │ ├── App.config │ │ │ │ ├── Form1.Designer.cs │ │ │ │ ├── Form1.cs │ │ │ │ ├── Form1.resx │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ │ └── SimplePaint.csproj │ │ └── starfield │ │ │ ├── Starfield.Tests │ │ │ ├── RenderTests.cs │ │ │ └── Starfield.Tests.csproj │ │ │ ├── Starfield.WPF │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── AssemblyInfo.cs │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Starfield.WPF.csproj │ │ │ └── csharp-starfield-windows-wpf.gif │ │ │ ├── Starfield.WinForms │ │ │ ├── App.config │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── Starfield.WinForms.csproj │ │ │ ├── csharp-starfield-windows-forms.gif │ │ │ └── packages.config │ │ │ ├── Starfield.WinFormsNoBlock │ │ │ ├── App.config │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── Starfield.WinFormsNoBlock.csproj │ │ │ └── packages.config │ │ │ ├── Starfield.WinFormsSkiaSharp │ │ │ ├── App.config │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── OpenTK.dll.config │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ ├── Starfield.WinFormsSkiaSharp.csproj │ │ │ └── packages.config │ │ │ ├── Starfield.sln │ │ │ └── Starfield │ │ │ ├── Field.cs │ │ │ ├── Starfield.csproj │ │ │ ├── field_basic.bmp │ │ │ └── field_basic.png │ └── plotting │ │ ├── interactive-data-display │ │ ├── IDDQuickstart452 │ │ │ ├── App.config │ │ │ ├── App.xaml │ │ │ ├── App.xaml.cs │ │ │ ├── IDDQuickstart452.csproj │ │ │ ├── MainWindow.xaml │ │ │ ├── MainWindow.xaml.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.Designer.cs │ │ │ │ └── Settings.settings │ │ │ └── packages.config │ │ └── IIDQuickstart.sln │ │ ├── livecharts │ │ └── LiveChartsQuickstart │ │ │ ├── App.config │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── LiveChartsQuickstart.csproj │ │ │ ├── LiveChartsQuickstart.sln │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ └── packages.config │ │ ├── microsoft-charting │ │ └── ChartingQuickstart │ │ │ ├── App.config │ │ │ ├── ChartingQuickstart.csproj │ │ │ ├── ChartingQuickstart.sln │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ └── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── nplot │ │ └── NPlotQuickstart │ │ │ ├── App.config │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── NPlotQuickstart.csproj │ │ │ ├── NPlotQuickstart.sln │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ └── packages.config │ │ ├── oxyplot │ │ └── OxyPlotQuickstart │ │ │ ├── App.config │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── OxyPlotQuickstart.csproj │ │ │ ├── OxyPlotQuickstart.sln │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ └── packages.config │ │ ├── scottplot │ │ ├── ScottPlotQuickstart.sln │ │ └── ScottPlotQuickstart │ │ │ ├── App.config │ │ │ ├── Form1.Designer.cs │ │ │ ├── Form1.cs │ │ │ ├── Form1.resx │ │ │ ├── Program.cs │ │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ │ ├── ScottPlotQuickstart.csproj │ │ │ └── packages.config │ │ └── zedgraph │ │ └── ZedGraphQuickstart │ │ ├── App.config │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── License-LGPL.txt │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── ZedGraphQuickstart.csproj │ │ ├── ZedGraphQuickstart.sln │ │ └── packages.config └── site-mockups │ ├── bs5sidebar.js │ ├── header.html │ ├── mockup1.html │ ├── mockup2.html │ ├── starfield.js │ └── wave.svg ├── projects ├── array-to-image │ ├── ArrayToImage.csproj │ ├── ArrayToImage.sln │ ├── Demonstrate.cs │ ├── ImageMakers │ │ ├── IGraphicsPlatform.cs │ │ ├── SkiaSharpImageMaker.cs │ │ └── SystemDrawingImageMaker.cs │ ├── Program.cs │ ├── TestImages │ │ └── bird.jpg │ └── TestPatterns │ │ ├── ColorStrips.cs │ │ ├── DiagnalGradients.cs │ │ ├── HorizontalGradients.cs │ │ ├── ITestPattern.cs │ │ └── VerticalGradients.cs ├── audio │ ├── AudioMonitor │ │ ├── AudioMonitor.csproj │ │ ├── AudioMonitor.sln │ │ ├── AudioMonitorForm.Designer.cs │ │ ├── AudioMonitorForm.cs │ │ ├── AudioMonitorForm.resx │ │ ├── FftMonitorForm.Designer.cs │ │ ├── FftMonitorForm.cs │ │ ├── FftMonitorForm.resx │ │ ├── MenuForm.Designer.cs │ │ ├── MenuForm.cs │ │ ├── MenuForm.resx │ │ ├── Program.cs │ │ ├── screenshot.gif │ │ └── screenshot2.gif │ └── ConsoleLevelMonitor │ │ ├── ConsoleLevelMonitor.csproj │ │ ├── ConsoleLevelMonitor.sln │ │ └── Program.cs ├── bitmap-raw │ ├── BitmapGenerator.cs │ ├── BitmapMaker.cs │ ├── BitmapRaw.csproj │ ├── BitmapRaw.sln │ ├── Program.cs │ ├── RawBitmap.cs │ └── RawColor.cs ├── dataframe │ ├── DataFrameDemo.csproj │ ├── DataFrameDemo.sln │ ├── PrettyPrinters.cs │ ├── Program.cs │ └── demo.ipynb ├── maui-audio-monitor │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── MauiAudioMon.csproj │ ├── MauiAudioMon.sln │ ├── Program.cs │ └── screenshot.gif ├── maui-fft │ ├── FftProcessor.cs │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── MauiFft.csproj │ ├── MauiFft.sln │ ├── Program.cs │ └── screenshot.gif ├── maui-forms-gl │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Form2.Designer.cs │ ├── Form2.cs │ ├── Form2.resx │ ├── FormMenu.Designer.cs │ ├── FormMenu.cs │ ├── FormMenu.resx │ ├── Graphics.cs │ ├── Program.cs │ ├── SkiaCompareGL.csproj │ ├── SkiaCompareGL.sln │ └── screenshot.png ├── maui-graphics │ ├── GraphicsModels │ │ ├── GraphicsModels.csproj │ │ └── RandomCircles.cs │ ├── MauiGraphicsProjects.sln │ ├── QuickstartConsole │ │ ├── Program.cs │ │ └── QuickstartConsole.csproj │ ├── QuickstartWinForms │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ └── QuickstartWinForms.csproj │ └── QuickstartWpf │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── QuickstartWpf.csproj ├── maui-life │ ├── FormsLife │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── FormsLife.csproj │ │ └── Program.cs │ ├── Life │ │ ├── Board.cs │ │ ├── Life.csproj │ │ └── Render.cs │ ├── LifeInMaui.sln │ └── screenshot.gif ├── model-viewer │ ├── FormsViewer │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── FormsViewer.csproj │ │ └── Program.cs │ ├── GraphicsModelLibrary │ │ ├── BallPit │ │ │ ├── Ball.cs │ │ │ └── BallPitModel.cs │ │ ├── GraphicsModelLibrary.csproj │ │ ├── IGraphicsModel.cs │ │ └── Starfield │ │ │ └── StarfieldModel.cs │ ├── ModelViewer.sln │ └── screenshot.jpg ├── multi-target │ ├── ConsoleApp │ │ ├── ConsoleApp.csproj │ │ └── Program.cs │ ├── MauiGraphicsApp │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── MauiGraphicsApp.csproj │ │ ├── MauiProgram.cs │ │ ├── Platforms │ │ │ ├── Android │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── MainActivity.cs │ │ │ │ ├── MainApplication.cs │ │ │ │ └── Resources │ │ │ │ │ └── values │ │ │ │ │ └── colors.xml │ │ │ ├── MacCatalyst │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Info.plist │ │ │ │ └── Program.cs │ │ │ ├── Windows │ │ │ │ ├── App.xaml │ │ │ │ ├── App.xaml.cs │ │ │ │ ├── Package.appxmanifest │ │ │ │ └── app.manifest │ │ │ └── iOS │ │ │ │ ├── AppDelegate.cs │ │ │ │ ├── Info.plist │ │ │ │ ├── Program.cs │ │ │ │ └── Resources │ │ │ │ └── LaunchScreen.xib │ │ ├── Resources │ │ │ ├── Fonts │ │ │ │ └── OpenSans-Regular.ttf │ │ │ ├── Images │ │ │ │ └── dotnet_bot.svg │ │ │ ├── appicon.svg │ │ │ └── appiconfg.svg │ │ └── TestDrawable.cs │ ├── MultiTargetApp.sln │ ├── StandardGraphics │ │ ├── Render.cs │ │ └── StandardGraphics.csproj │ ├── WinFormsFrameworkApp │ │ ├── App.config │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ └── WinFormsFrameworkApp.csproj │ ├── WinFormsNetApp │ │ ├── FormBitmap.Designer.cs │ │ ├── FormBitmap.cs │ │ ├── FormBitmap.resx │ │ ├── FormGL.Designer.cs │ │ ├── FormGL.cs │ │ ├── FormGL.resx │ │ ├── MenuForm.Designer.cs │ │ ├── MenuForm.cs │ │ ├── MenuForm.resx │ │ ├── Program.cs │ │ └── WinFormsNetApp.csproj │ ├── WpfApp │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── WpfApp.csproj │ ├── readme.md │ ├── screenshot-maui.gif │ ├── screenshot-winforms.gif │ └── screenshot-wpf.gif ├── plotting │ └── interactive-data-display │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AssemblyInfo.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── QuickstartInteractiveDataDisplay.csproj │ │ └── QuickstartInteractiveDataDisplay.sln ├── rotated-rectangle-intersection │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ ├── RotatedRectangleDemo.csproj │ ├── RotatedRectangleDemo.sln │ └── point-inside-rotated-rectangle.gif ├── sandbox │ └── ConsoleMauiGraphics │ │ ├── ConsoleMauiGraphics.csproj │ │ ├── ConsoleMauiGraphics.sln │ │ └── Program.cs ├── skiasharp-quickstart │ ├── SkiaSharpQuickstart.sln │ └── SkiaSharpQuickstartConsole │ │ ├── Program.cs │ │ └── SkiaSharpQuickstartConsole.csproj ├── skiasharp │ ├── drawtext-rectangle │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── SampleData.cs │ │ ├── skiasharp-wrap.csproj │ │ └── skiasharp-wrap.sln │ ├── skiasharp-text │ │ ├── Program.cs │ │ └── skiasharp-text.csproj │ └── video │ │ ├── GraphicsToVideo.sln │ │ ├── GraphicsToVideo │ │ ├── GraphicsToVideo.csproj │ │ ├── Program.cs │ │ └── SKBitmapFrame.cs │ │ └── VideoMaker │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── GraphicsModels │ │ ├── Ball.cs │ │ ├── BallField.cs │ │ └── IGraphicsModel.cs │ │ ├── Program.cs │ │ ├── SKBitmapFrame.cs │ │ ├── VideoFileMaker.cs │ │ └── VideoMaker.csproj ├── spline-interpolation │ ├── Interpolation.sln │ ├── Interpolation │ │ ├── Cubic.cs │ │ └── Interpolation.csproj │ ├── InterpolationConsole │ │ ├── InterpolationConsole.csproj │ │ └── Program.cs │ ├── InterpolationTests │ │ ├── InterpolationTests.csproj │ │ └── UnitTest1.cs │ ├── InterpolationViewer │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── InterpolationViewer.csproj │ │ └── Program.cs │ ├── interpolation.png │ ├── readme.md │ ├── screenshot.gif │ └── screenshot.mp4 └── system-drawing │ ├── quickstart-console │ ├── Program.cs │ └── quickstart-console.csproj │ └── video │ ├── GraphicsToVideo.sln │ └── GraphicsToVideo │ ├── GraphicsToVideo.csproj │ └── Program.cs └── website ├── .gitignore ├── build.sh ├── config.toml ├── content ├── 404.md ├── _index.md ├── audio │ ├── _index.md │ ├── fft │ │ ├── fft-csharp-audio-microphone.gif │ │ └── index.md │ ├── level │ │ ├── index.md │ │ └── winforms-audio-level-meter.gif │ └── naudio │ │ ├── console-audio-level-meter.gif │ │ └── index.md ├── dev │ ├── _index.md │ ├── changelog │ │ └── index.md │ ├── headings │ │ └── index.md │ ├── ljpcalc │ │ ├── index.md │ │ └── ljp.png │ └── pyabf │ │ ├── action-potentials-small.png │ │ ├── index.md │ │ ├── pyabf-example-action-potentials.jpg │ │ └── pyabfv2.png ├── maui.graphics │ ├── _index.md │ ├── quickstart-console │ │ ├── console.png │ │ └── index.md │ ├── quickstart-maui │ │ └── index.md │ ├── quickstart-winforms │ │ ├── index.md │ │ └── maui-graphics-quickstart-winforms-2.png │ └── quickstart-wpf │ │ ├── index.md │ │ └── maui-graphics-quickstart-wpf.png ├── platforms │ ├── _index.md │ ├── compare │ │ ├── index.md │ │ └── system.drawing.png │ ├── imagesharp │ │ ├── drawing-with-imagesharp.png │ │ └── index.md │ └── wpf-primitives │ │ ├── drawingvisual.png │ │ ├── index.md │ │ └── wpf-primitive-drawing.png ├── plotting-commercial │ ├── _index.md │ ├── devexpress-wpf-charting │ │ ├── devexpress-bar.gif │ │ ├── devexpress-controls-app.jpg │ │ ├── devexpress-controls-store.jpg │ │ ├── devexpress-line.png │ │ ├── devexpress-office.gif │ │ ├── devexpress-scatter.gif │ │ ├── devexpress-stock.gif │ │ ├── devexpress-trial.png │ │ └── index.md │ ├── infragistics-chart │ │ ├── index.md │ │ ├── infragistics-line-graph.png │ │ └── infragistics-ultraWinChart.png │ ├── lightningchart │ │ ├── index.md │ │ └── lightning-chart-1.png │ ├── scichart │ │ ├── index.md │ │ ├── scichart-demo.gif │ │ ├── scichart-demos.jpg │ │ └── scichart-performance.gif │ ├── syncfusion-wpf-charts │ │ ├── index.md │ │ ├── patient-monitor.gif │ │ ├── wpf-charts-line.jpg │ │ └── wpf-charts-trend.png │ └── telerik-ui-chart │ │ ├── index.md │ │ ├── telerik-live-data.gif │ │ └── telerik-ui-wpf-demo.jpg ├── plotting-free │ ├── _index.md │ ├── interactive-data-display │ │ ├── D3-WPF-Version-2.pdf │ │ ├── index.md │ │ ├── interactive-data-display-quickstart-bar-graph.png │ │ ├── interactive-data-display-quickstart-line-plot.png │ │ ├── interactive-data-display-quickstart-scatter-plot.png │ │ └── interactive-data-display-quickstart.gif │ ├── livecharts │ │ ├── index.md │ │ ├── livecharts-quickstart-bar-graph.png │ │ ├── livecharts-quickstart-line-plot.png │ │ ├── livecharts-quickstart-scatter-plot.png │ │ └── livecharts-quickstart.gif │ ├── microsoft-charting │ │ ├── index.md │ │ ├── microsoft-charting-toolbox.png │ │ ├── quickstart-bar.png │ │ ├── quickstart-fast-line.png │ │ └── quickstart-scatter.png │ ├── nplot │ │ ├── index.md │ │ ├── nplot-console-quickstart.png │ │ └── nplot-quickstart.gif │ ├── oxyplot │ │ ├── index.md │ │ ├── oxyplot-console-quickstart.png │ │ ├── oxyplot-quickstart-bar-graph.png │ │ ├── oxyplot-quickstart-line-plot.png │ │ ├── oxyplot-quickstart-scatter-plot.png │ │ └── oxyplot-quickstart.gif │ ├── scottplot │ │ ├── index.md │ │ ├── scottplot-cookbook.png │ │ ├── scottplot-quickstart-bar-graph.png │ │ ├── scottplot-quickstart-console.png │ │ ├── scottplot-quickstart-line-plot.png │ │ ├── scottplot-quickstart-scatter-plot.png │ │ ├── scottplot-quickstart-simple-bar-graph.png │ │ └── scottplot-quickstart.gif │ └── zedgraph │ │ ├── index.md │ │ ├── zedgraph-console-quickstart.png │ │ ├── zedgraph-multiple-y-axes.png │ │ ├── zedgraph-quickstart-bar.png │ │ ├── zedgraph-quickstart-line.png │ │ ├── zedgraph-quickstart-scatter.png │ │ └── zedgraph-quickstart.gif ├── simulations │ ├── _index.md │ ├── boids │ │ ├── Boids-Csharp-OpenGL.png │ │ ├── boids.zip │ │ ├── csharp-boids.gif │ │ └── index.md │ ├── life │ │ ├── game-of-life-csharp-glider-gun.gif │ │ ├── game-of-life-csharp.gif │ │ ├── glider-gun.png │ │ └── index.md │ └── mystify │ │ ├── index.md │ │ └── mystify.gif ├── skiasharp │ ├── _index.md │ ├── array-to-image │ │ ├── index.md │ │ └── output.png │ ├── drawtext-rectangle │ │ ├── index.md │ │ ├── skiasharp-word-wrap.gif │ │ └── skiasharp-word-wrap.zip │ ├── quickstart-console │ │ ├── anti-aliasing-example.png │ │ ├── drawing-quickstart-console.png │ │ ├── index.md │ │ └── quickstart.jpg │ ├── skiasharp-opengl-starfield │ │ ├── index.md │ │ ├── starfield.gif │ │ └── starfield.png │ ├── skiasharp-opengl │ │ ├── drawing-with-skiasharp-opengl.png │ │ └── index.md │ ├── skiasharp │ │ ├── drawing-with-skiasharp.png │ │ └── index.md │ ├── text │ │ ├── index.md │ │ ├── measure.png │ │ ├── options.png │ │ ├── quickstart.png │ │ ├── rotation-artifact-fixed.png │ │ ├── rotation-artifact.png │ │ └── rotation.png │ └── video │ │ ├── index.md │ │ └── output.webm └── system.drawing │ ├── _index.md │ ├── animate-starfield │ ├── index.md │ ├── starfield-tests.png │ └── starfield.png │ ├── animate-winforms │ ├── csharp-starfield-windows-forms.gif │ └── index.md │ ├── animate-wpf │ ├── csharp-starfield-windows-wpf.gif │ └── index.md │ ├── array-to-image │ ├── index.md │ └── output.png │ ├── benchmark │ ├── index.md │ ├── starfield-hot-path.png │ ├── windows-forms-benchmark.png │ └── windows-forms-benchmark2.png │ ├── cross-platform │ └── index.md │ ├── double-buffer │ └── index.md │ ├── quickstart-console │ ├── anti-aliasing-example.png │ ├── drawing-quickstart-console.png │ └── index.md │ ├── quickstart-winforms │ ├── drawing-in-windows-forms-bad.gif │ ├── drawing-in-windows-forms-good.gif │ ├── drawing-in-windows-forms.png │ └── index.md │ ├── quickstart-wpf │ ├── drawing-in-wpf.png │ └── index.md │ ├── threading │ ├── csharp-starfield-noblock.gif │ ├── csharp-starfield-windows-forms.gif │ └── index.md │ └── video │ ├── index.md │ └── output.webm ├── dev ├── animation │ └── constellation.js ├── banner │ ├── banner.jpg │ └── banner.psd └── icon │ ├── favicon.bat │ └── favicon.svg ├── layouts ├── _default │ ├── baseof.html │ ├── home.html │ ├── section.html │ └── single.html ├── partials │ └── section-links.html └── shortcodes │ └── toc.html ├── serve.sh └── static ├── .htaccess ├── css ├── github.css └── page.css ├── favicon-180.png ├── favicon-192.png ├── favicon-512.png ├── favicon.ico ├── favicon.svg ├── feed ├── .htaccess └── index.html ├── img ├── banner.jpg └── highlights │ ├── boids.gif │ ├── life.gif │ └── mystify.gif └── manifest.webmanifest /.github/workflows/ci-site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/.github/workflows/ci-site.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/README.md -------------------------------------------------------------------------------- /dev/old/17-06-24_buffered_line_plot/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-24_buffered_line_plot/demo.gif -------------------------------------------------------------------------------- /dev/old/17-06-24_buffered_line_plot/pixelDrawDrag2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-24_buffered_line_plot/pixelDrawDrag2.sln -------------------------------------------------------------------------------- /dev/old/17-06-24_buffered_line_plot/pixelDrawDrag2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-24_buffered_line_plot/pixelDrawDrag2/App.config -------------------------------------------------------------------------------- /dev/old/17-06-24_buffered_line_plot/pixelDrawDrag2/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-24_buffered_line_plot/pixelDrawDrag2/Form1.cs -------------------------------------------------------------------------------- /dev/old/17-06-24_buffered_line_plot/pixelDrawDrag2/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-24_buffered_line_plot/pixelDrawDrag2/Form1.resx -------------------------------------------------------------------------------- /dev/old/17-06-24_buffered_line_plot/pixelDrawDrag2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-24_buffered_line_plot/pixelDrawDrag2/Program.cs -------------------------------------------------------------------------------- /dev/old/17-06-24_buffered_line_plot/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-24_buffered_line_plot/readme.md -------------------------------------------------------------------------------- /dev/old/17-06-24_stretchy_line_plot/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-24_stretchy_line_plot/demo.gif -------------------------------------------------------------------------------- /dev/old/17-06-24_stretchy_line_plot/pixelDrawDrag2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-24_stretchy_line_plot/pixelDrawDrag2.sln -------------------------------------------------------------------------------- /dev/old/17-06-24_stretchy_line_plot/pixelDrawDrag2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-24_stretchy_line_plot/pixelDrawDrag2/App.config -------------------------------------------------------------------------------- /dev/old/17-06-24_stretchy_line_plot/pixelDrawDrag2/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-24_stretchy_line_plot/pixelDrawDrag2/Form1.cs -------------------------------------------------------------------------------- /dev/old/17-06-24_stretchy_line_plot/pixelDrawDrag2/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-24_stretchy_line_plot/pixelDrawDrag2/Form1.resx -------------------------------------------------------------------------------- /dev/old/17-06-24_stretchy_line_plot/pixelDrawDrag2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-24_stretchy_line_plot/pixelDrawDrag2/Program.cs -------------------------------------------------------------------------------- /dev/old/17-06-24_stretchy_line_plot/pixelDrawDrag2/swhPlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-24_stretchy_line_plot/pixelDrawDrag2/swhPlot.cs -------------------------------------------------------------------------------- /dev/old/17-06-24_stretchy_line_plot/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-24_stretchy_line_plot/readme.md -------------------------------------------------------------------------------- /dev/old/17-06-25_pan_and_zoom/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-25_pan_and_zoom/demo.gif -------------------------------------------------------------------------------- /dev/old/17-06-25_pan_and_zoom/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-25_pan_and_zoom/readme.md -------------------------------------------------------------------------------- /dev/old/17-06-25_pan_and_zoom/swharden_demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-25_pan_and_zoom/swharden_demo.sln -------------------------------------------------------------------------------- /dev/old/17-06-25_pan_and_zoom/swharden_demo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-25_pan_and_zoom/swharden_demo/App.config -------------------------------------------------------------------------------- /dev/old/17-06-25_pan_and_zoom/swharden_demo/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-25_pan_and_zoom/swharden_demo/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/17-06-25_pan_and_zoom/swharden_demo/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-25_pan_and_zoom/swharden_demo/Form1.cs -------------------------------------------------------------------------------- /dev/old/17-06-25_pan_and_zoom/swharden_demo/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-25_pan_and_zoom/swharden_demo/Form1.resx -------------------------------------------------------------------------------- /dev/old/17-06-25_pan_and_zoom/swharden_demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-25_pan_and_zoom/swharden_demo/Program.cs -------------------------------------------------------------------------------- /dev/old/17-06-25_pan_and_zoom/swharden_demo/ScottPlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-25_pan_and_zoom/swharden_demo/ScottPlot.cs -------------------------------------------------------------------------------- /dev/old/17-06-25_pan_and_zoom/swharden_demo/clipart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-25_pan_and_zoom/swharden_demo/clipart.jpg -------------------------------------------------------------------------------- /dev/old/17-06-26_abf_data/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-26_abf_data/demo.jpg -------------------------------------------------------------------------------- /dev/old/17-06-26_abf_data/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-26_abf_data/readme.md -------------------------------------------------------------------------------- /dev/old/17-06-26_abf_data/swharden_demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-26_abf_data/swharden_demo.sln -------------------------------------------------------------------------------- /dev/old/17-06-26_abf_data/swharden_demo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-26_abf_data/swharden_demo/App.config -------------------------------------------------------------------------------- /dev/old/17-06-26_abf_data/swharden_demo/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-26_abf_data/swharden_demo/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/17-06-26_abf_data/swharden_demo/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-26_abf_data/swharden_demo/Form1.cs -------------------------------------------------------------------------------- /dev/old/17-06-26_abf_data/swharden_demo/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-26_abf_data/swharden_demo/Form1.resx -------------------------------------------------------------------------------- /dev/old/17-06-26_abf_data/swharden_demo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-26_abf_data/swharden_demo/Program.cs -------------------------------------------------------------------------------- /dev/old/17-06-26_abf_data/swharden_demo/ScottPlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-26_abf_data/swharden_demo/ScottPlot.cs -------------------------------------------------------------------------------- /dev/old/17-06-26_abf_data/swharden_demo/clipart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-26_abf_data/swharden_demo/clipart.jpg -------------------------------------------------------------------------------- /dev/old/17-06-26_abf_data/swharden_demo/swharden_demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-06-26_abf_data/swharden_demo/swharden_demo.csproj -------------------------------------------------------------------------------- /dev/old/17-07-02_nice_axis/DataVis/DataVis.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-02_nice_axis/DataVis/DataVis.sln -------------------------------------------------------------------------------- /dev/old/17-07-02_nice_axis/DataVis/Sandbox/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-02_nice_axis/DataVis/Sandbox/App.config -------------------------------------------------------------------------------- /dev/old/17-07-02_nice_axis/DataVis/Sandbox/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-02_nice_axis/DataVis/Sandbox/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/17-07-02_nice_axis/DataVis/Sandbox/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-02_nice_axis/DataVis/Sandbox/Form1.cs -------------------------------------------------------------------------------- /dev/old/17-07-02_nice_axis/DataVis/Sandbox/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-02_nice_axis/DataVis/Sandbox/Form1.resx -------------------------------------------------------------------------------- /dev/old/17-07-02_nice_axis/DataVis/Sandbox/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-02_nice_axis/DataVis/Sandbox/Program.cs -------------------------------------------------------------------------------- /dev/old/17-07-02_nice_axis/DataVis/Sandbox/Sandbox.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-02_nice_axis/DataVis/Sandbox/Sandbox.csproj -------------------------------------------------------------------------------- /dev/old/17-07-02_nice_axis/DataVis/ScottPlot2/ScottPlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-02_nice_axis/DataVis/ScottPlot2/ScottPlot.cs -------------------------------------------------------------------------------- /dev/old/17-07-02_nice_axis/DataVis/demo_01_basic/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-02_nice_axis/DataVis/demo_01_basic/App.config -------------------------------------------------------------------------------- /dev/old/17-07-02_nice_axis/DataVis/demo_01_basic/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-02_nice_axis/DataVis/demo_01_basic/Program.cs -------------------------------------------------------------------------------- /dev/old/17-07-02_nice_axis/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-02_nice_axis/demo.gif -------------------------------------------------------------------------------- /dev/old/17-07-02_nice_axis/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-02_nice_axis/readme.md -------------------------------------------------------------------------------- /dev/old/17-07-02_nice_axis/test.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-02_nice_axis/test.jpg -------------------------------------------------------------------------------- /dev/old/17-07-03_wav_speed_rendering/DataVis/DataVis.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-03_wav_speed_rendering/DataVis/DataVis.sln -------------------------------------------------------------------------------- /dev/old/17-07-03_wav_speed_rendering/DataVis/Sandbox/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-03_wav_speed_rendering/DataVis/Sandbox/Form1.cs -------------------------------------------------------------------------------- /dev/old/17-07-03_wav_speed_rendering/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-03_wav_speed_rendering/demo.gif -------------------------------------------------------------------------------- /dev/old/17-07-03_wav_speed_rendering/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-03_wav_speed_rendering/readme.md -------------------------------------------------------------------------------- /dev/old/17-07-16_microphone/.gitignore: -------------------------------------------------------------------------------- 1 | packages/ -------------------------------------------------------------------------------- /dev/old/17-07-16_microphone/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-16_microphone/demo.gif -------------------------------------------------------------------------------- /dev/old/17-07-16_microphone/microphone.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-16_microphone/microphone.sln -------------------------------------------------------------------------------- /dev/old/17-07-16_microphone/microphone/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-16_microphone/microphone/App.config -------------------------------------------------------------------------------- /dev/old/17-07-16_microphone/microphone/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-16_microphone/microphone/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/17-07-16_microphone/microphone/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-16_microphone/microphone/Form1.cs -------------------------------------------------------------------------------- /dev/old/17-07-16_microphone/microphone/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-16_microphone/microphone/Form1.resx -------------------------------------------------------------------------------- /dev/old/17-07-16_microphone/microphone/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-16_microphone/microphone/Program.cs -------------------------------------------------------------------------------- /dev/old/17-07-16_microphone/microphone/microphone.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-16_microphone/microphone/microphone.csproj -------------------------------------------------------------------------------- /dev/old/17-07-16_microphone/microphone/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-16_microphone/microphone/packages.config -------------------------------------------------------------------------------- /dev/old/17-07-16_microphone/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/17-07-16_microphone/readme.md -------------------------------------------------------------------------------- /dev/old/18-01-09_microphone_level_meter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-09_microphone_level_meter/readme.md -------------------------------------------------------------------------------- /dev/old/18-01-09_microphone_level_meter/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-09_microphone_level_meter/screenshot.gif -------------------------------------------------------------------------------- /dev/old/18-01-10_fast_pixel_bitmap/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-10_fast_pixel_bitmap/readme.md -------------------------------------------------------------------------------- /dev/old/18-01-10_fast_pixel_bitmap/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-10_fast_pixel_bitmap/screenshot.png -------------------------------------------------------------------------------- /dev/old/18-01-11_microphone_spectrograph/WindowsFormsApp1/WindowsFormsApp1/readme.md: -------------------------------------------------------------------------------- 1 | # FFT Spectrograph 2 | 3 | * Install NAudio with NuGet -------------------------------------------------------------------------------- /dev/old/18-01-11_microphone_spectrograph/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-11_microphone_spectrograph/readme.md -------------------------------------------------------------------------------- /dev/old/18-01-11_microphone_spectrograph/spectrograph.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-11_microphone_spectrograph/spectrograph.gif -------------------------------------------------------------------------------- /dev/old/18-01-14_qrss/binaries.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-14_qrss/binaries.zip -------------------------------------------------------------------------------- /dev/old/18-01-14_qrss/capture_music.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-14_qrss/capture_music.jpg -------------------------------------------------------------------------------- /dev/old/18-01-14_qrss/capture_qrss.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-14_qrss/capture_qrss.jpg -------------------------------------------------------------------------------- /dev/old/18-01-14_qrss/qrss/qrss.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-14_qrss/qrss/qrss.sln -------------------------------------------------------------------------------- /dev/old/18-01-14_qrss/qrss/qrss/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-14_qrss/qrss/qrss/App.config -------------------------------------------------------------------------------- /dev/old/18-01-14_qrss/qrss/qrss/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-14_qrss/qrss/qrss/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/18-01-14_qrss/qrss/qrss/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-14_qrss/qrss/qrss/Form1.cs -------------------------------------------------------------------------------- /dev/old/18-01-14_qrss/qrss/qrss/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-14_qrss/qrss/qrss/Form1.resx -------------------------------------------------------------------------------- /dev/old/18-01-14_qrss/qrss/qrss/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-14_qrss/qrss/qrss/Program.cs -------------------------------------------------------------------------------- /dev/old/18-01-14_qrss/qrss/qrss/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-14_qrss/qrss/qrss/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dev/old/18-01-14_qrss/qrss/qrss/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-14_qrss/qrss/qrss/Properties/Resources.resx -------------------------------------------------------------------------------- /dev/old/18-01-14_qrss/qrss/qrss/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-14_qrss/qrss/qrss/Properties/Settings.settings -------------------------------------------------------------------------------- /dev/old/18-01-14_qrss/qrss/qrss/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-14_qrss/qrss/qrss/packages.config -------------------------------------------------------------------------------- /dev/old/18-01-14_qrss/qrss/qrss/qrss.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-14_qrss/qrss/qrss/qrss.csproj -------------------------------------------------------------------------------- /dev/old/18-01-14_qrss/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-14_qrss/readme.md -------------------------------------------------------------------------------- /dev/old/18-01-14_qrss/screenshot_music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-14_qrss/screenshot_music.png -------------------------------------------------------------------------------- /dev/old/18-01-14_qrss/screenshot_qrss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-14_qrss/screenshot_qrss.png -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/Thumbs.db -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/clampfit-graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/clampfit-graph.png -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/clampfit-needs-graphing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/clampfit-needs-graphing.png -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/clampfit2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/clampfit2.png -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/compiled_release.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/compiled_release.zip -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/drawing/03 functional/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/drawing/03 functional/Form1.cs -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/drawing/drawing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/drawing/drawing.sln -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/drawing/drawing/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/drawing/drawing/App.config -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/drawing/drawing/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/drawing/drawing/Form1.cs -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/drawing/drawing/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/drawing/drawing/Form1.resx -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/drawing/drawing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/drawing/drawing/Program.cs -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/drawing/drawing/ScottPlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/drawing/drawing/ScottPlot.cs -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/drawing/drawing2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/drawing/drawing2/App.config -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/drawing/drawing2/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/drawing/drawing2/Form1.cs -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/drawing/drawing2/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/drawing/drawing2/Form1.resx -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/drawing/drawing2/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/drawing/drawing2/Program.cs -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/layout.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/layout.PNG -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/layout2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/layout2.PNG -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/plan.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/plan.PNG -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/plan.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/plan.pptx -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/readme.md -------------------------------------------------------------------------------- /dev/old/18-01-15_form_drawing/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-01-15_form_drawing/screenshot2.png -------------------------------------------------------------------------------- /dev/old/18-09-19_microphone_FFT_revisited/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-09-19_microphone_FFT_revisited/README.md -------------------------------------------------------------------------------- /dev/old/18-09-19_microphone_FFT_revisited/Release.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-09-19_microphone_FFT_revisited/Release.zip -------------------------------------------------------------------------------- /dev/old/18-09-19_microphone_FFT_revisited/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-09-19_microphone_FFT_revisited/screenshot.png -------------------------------------------------------------------------------- /dev/old/18-09-28_gnuplot_knowing/WindowsFormsApp1/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-09-28_gnuplot_knowing/WindowsFormsApp1/App.config -------------------------------------------------------------------------------- /dev/old/18-09-28_gnuplot_knowing/WindowsFormsApp1/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-09-28_gnuplot_knowing/WindowsFormsApp1/Form1.cs -------------------------------------------------------------------------------- /dev/old/18-09-28_gnuplot_knowing/WindowsFormsApp1/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-09-28_gnuplot_knowing/WindowsFormsApp1/Form1.resx -------------------------------------------------------------------------------- /dev/old/18-09-28_gnuplot_knowing/WindowsFormsApp1/GnuPlot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-09-28_gnuplot_knowing/WindowsFormsApp1/GnuPlot.cs -------------------------------------------------------------------------------- /dev/old/18-09-28_gnuplot_knowing/WindowsFormsApp1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-09-28_gnuplot_knowing/WindowsFormsApp1/Program.cs -------------------------------------------------------------------------------- /dev/old/18-09-28_gnuplot_knowing/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/18-09-28_gnuplot_knowing/readme.md -------------------------------------------------------------------------------- /dev/old/2019-06-01-graphics-basics/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-01-graphics-basics/App.config -------------------------------------------------------------------------------- /dev/old/2019-06-01-graphics-basics/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-01-graphics-basics/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/2019-06-01-graphics-basics/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-01-graphics-basics/Form1.cs -------------------------------------------------------------------------------- /dev/old/2019-06-01-graphics-basics/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-01-graphics-basics/Form1.resx -------------------------------------------------------------------------------- /dev/old/2019-06-01-graphics-basics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-01-graphics-basics/Program.cs -------------------------------------------------------------------------------- /dev/old/2019-06-01-graphics-basics/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-01-graphics-basics/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dev/old/2019-06-01-graphics-basics/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-01-graphics-basics/Properties/Resources.resx -------------------------------------------------------------------------------- /dev/old/2019-06-01-graphics-basics/graphicsBasics.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-01-graphics-basics/graphicsBasics.csproj -------------------------------------------------------------------------------- /dev/old/2019-06-01-graphics-basics/graphicsBasics.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-01-graphics-basics/graphicsBasics.sln -------------------------------------------------------------------------------- /dev/old/2019-06-01-graphics-basics/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-01-graphics-basics/readme.md -------------------------------------------------------------------------------- /dev/old/2019-06-01-graphics-basics/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-01-graphics-basics/screenshot.png -------------------------------------------------------------------------------- /dev/old/2019-06-02-drawing-with-mouse/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-02-drawing-with-mouse/App.config -------------------------------------------------------------------------------- /dev/old/2019-06-02-drawing-with-mouse/DrawWithMouse.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-02-drawing-with-mouse/DrawWithMouse.csproj -------------------------------------------------------------------------------- /dev/old/2019-06-02-drawing-with-mouse/DrawWithMouse.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-02-drawing-with-mouse/DrawWithMouse.sln -------------------------------------------------------------------------------- /dev/old/2019-06-02-drawing-with-mouse/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-02-drawing-with-mouse/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/2019-06-02-drawing-with-mouse/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-02-drawing-with-mouse/Form1.cs -------------------------------------------------------------------------------- /dev/old/2019-06-02-drawing-with-mouse/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-02-drawing-with-mouse/Form1.resx -------------------------------------------------------------------------------- /dev/old/2019-06-02-drawing-with-mouse/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-02-drawing-with-mouse/Program.cs -------------------------------------------------------------------------------- /dev/old/2019-06-02-drawing-with-mouse/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-02-drawing-with-mouse/readme.md -------------------------------------------------------------------------------- /dev/old/2019-06-02-drawing-with-mouse/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-02-drawing-with-mouse/screenshot.png -------------------------------------------------------------------------------- /dev/old/2019-06-03-coordinate-system/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-03-coordinate-system/App.config -------------------------------------------------------------------------------- /dev/old/2019-06-03-coordinate-system/DrawCoordinates.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-03-coordinate-system/DrawCoordinates.csproj -------------------------------------------------------------------------------- /dev/old/2019-06-03-coordinate-system/DrawCoordinates.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-03-coordinate-system/DrawCoordinates.sln -------------------------------------------------------------------------------- /dev/old/2019-06-03-coordinate-system/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-03-coordinate-system/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/2019-06-03-coordinate-system/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-03-coordinate-system/Form1.cs -------------------------------------------------------------------------------- /dev/old/2019-06-03-coordinate-system/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-03-coordinate-system/Form1.resx -------------------------------------------------------------------------------- /dev/old/2019-06-03-coordinate-system/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-03-coordinate-system/Program.cs -------------------------------------------------------------------------------- /dev/old/2019-06-03-coordinate-system/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-03-coordinate-system/readme.md -------------------------------------------------------------------------------- /dev/old/2019-06-03-coordinate-system/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-03-coordinate-system/screenshot.png -------------------------------------------------------------------------------- /dev/old/2019-06-04-pixel-setting/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-04-pixel-setting/App.config -------------------------------------------------------------------------------- /dev/old/2019-06-04-pixel-setting/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-04-pixel-setting/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/2019-06-04-pixel-setting/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-04-pixel-setting/Form1.cs -------------------------------------------------------------------------------- /dev/old/2019-06-04-pixel-setting/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-04-pixel-setting/Form1.resx -------------------------------------------------------------------------------- /dev/old/2019-06-04-pixel-setting/PixelSetting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-04-pixel-setting/PixelSetting.csproj -------------------------------------------------------------------------------- /dev/old/2019-06-04-pixel-setting/PixelSetting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-04-pixel-setting/PixelSetting.sln -------------------------------------------------------------------------------- /dev/old/2019-06-04-pixel-setting/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-04-pixel-setting/Program.cs -------------------------------------------------------------------------------- /dev/old/2019-06-04-pixel-setting/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-04-pixel-setting/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dev/old/2019-06-04-pixel-setting/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-04-pixel-setting/Properties/Resources.resx -------------------------------------------------------------------------------- /dev/old/2019-06-04-pixel-setting/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-04-pixel-setting/Properties/Settings.settings -------------------------------------------------------------------------------- /dev/old/2019-06-04-pixel-setting/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-04-pixel-setting/readme.md -------------------------------------------------------------------------------- /dev/old/2019-06-04-pixel-setting/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-04-pixel-setting/screenshot.png -------------------------------------------------------------------------------- /dev/old/2019-06-05-grayscale-image/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-05-grayscale-image/App.config -------------------------------------------------------------------------------- /dev/old/2019-06-05-grayscale-image/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-05-grayscale-image/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/2019-06-05-grayscale-image/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-05-grayscale-image/Form1.cs -------------------------------------------------------------------------------- /dev/old/2019-06-05-grayscale-image/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-05-grayscale-image/Form1.resx -------------------------------------------------------------------------------- /dev/old/2019-06-05-grayscale-image/PixelSetting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-05-grayscale-image/PixelSetting.csproj -------------------------------------------------------------------------------- /dev/old/2019-06-05-grayscale-image/PixelSetting.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-05-grayscale-image/PixelSetting.sln -------------------------------------------------------------------------------- /dev/old/2019-06-05-grayscale-image/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-05-grayscale-image/Program.cs -------------------------------------------------------------------------------- /dev/old/2019-06-05-grayscale-image/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-05-grayscale-image/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dev/old/2019-06-05-grayscale-image/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-05-grayscale-image/Properties/Resources.resx -------------------------------------------------------------------------------- /dev/old/2019-06-05-grayscale-image/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-05-grayscale-image/readme.md -------------------------------------------------------------------------------- /dev/old/2019-06-05-grayscale-image/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-05-grayscale-image/screenshot.png -------------------------------------------------------------------------------- /dev/old/2019-06-06-audio-level-monitor/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-06-audio-level-monitor/App.config -------------------------------------------------------------------------------- /dev/old/2019-06-06-audio-level-monitor/AudioPeak.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-06-audio-level-monitor/AudioPeak.csproj -------------------------------------------------------------------------------- /dev/old/2019-06-06-audio-level-monitor/AudioPeak.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-06-audio-level-monitor/AudioPeak.sln -------------------------------------------------------------------------------- /dev/old/2019-06-06-audio-level-monitor/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-06-audio-level-monitor/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/2019-06-06-audio-level-monitor/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-06-audio-level-monitor/Form1.cs -------------------------------------------------------------------------------- /dev/old/2019-06-06-audio-level-monitor/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-06-audio-level-monitor/Form1.resx -------------------------------------------------------------------------------- /dev/old/2019-06-06-audio-level-monitor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-06-audio-level-monitor/Program.cs -------------------------------------------------------------------------------- /dev/old/2019-06-06-audio-level-monitor/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-06-audio-level-monitor/packages.config -------------------------------------------------------------------------------- /dev/old/2019-06-06-audio-level-monitor/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-06-audio-level-monitor/readme.md -------------------------------------------------------------------------------- /dev/old/2019-06-06-audio-level-monitor/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-06-audio-level-monitor/screenshot.png -------------------------------------------------------------------------------- /dev/old/2019-06-07-audio-visualizer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-07-audio-visualizer/App.config -------------------------------------------------------------------------------- /dev/old/2019-06-07-audio-visualizer/AudioPeak.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-07-audio-visualizer/AudioPeak.csproj -------------------------------------------------------------------------------- /dev/old/2019-06-07-audio-visualizer/AudioPeak.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-07-audio-visualizer/AudioPeak.sln -------------------------------------------------------------------------------- /dev/old/2019-06-07-audio-visualizer/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-07-audio-visualizer/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/2019-06-07-audio-visualizer/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-07-audio-visualizer/Form1.cs -------------------------------------------------------------------------------- /dev/old/2019-06-07-audio-visualizer/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-07-audio-visualizer/Form1.resx -------------------------------------------------------------------------------- /dev/old/2019-06-07-audio-visualizer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-07-audio-visualizer/Program.cs -------------------------------------------------------------------------------- /dev/old/2019-06-07-audio-visualizer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-07-audio-visualizer/Properties/Resources.resx -------------------------------------------------------------------------------- /dev/old/2019-06-07-audio-visualizer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-07-audio-visualizer/packages.config -------------------------------------------------------------------------------- /dev/old/2019-06-07-audio-visualizer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-07-audio-visualizer/readme.md -------------------------------------------------------------------------------- /dev/old/2019-06-07-audio-visualizer/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-07-audio-visualizer/screenshot.gif -------------------------------------------------------------------------------- /dev/old/2019-06-08-audio-fft/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-08-audio-fft/App.config -------------------------------------------------------------------------------- /dev/old/2019-06-08-audio-fft/AudioPeak.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-08-audio-fft/AudioPeak.csproj -------------------------------------------------------------------------------- /dev/old/2019-06-08-audio-fft/AudioPeak.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-08-audio-fft/AudioPeak.sln -------------------------------------------------------------------------------- /dev/old/2019-06-08-audio-fft/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-08-audio-fft/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/2019-06-08-audio-fft/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-08-audio-fft/Form1.cs -------------------------------------------------------------------------------- /dev/old/2019-06-08-audio-fft/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-08-audio-fft/Form1.resx -------------------------------------------------------------------------------- /dev/old/2019-06-08-audio-fft/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-08-audio-fft/Program.cs -------------------------------------------------------------------------------- /dev/old/2019-06-08-audio-fft/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-08-audio-fft/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dev/old/2019-06-08-audio-fft/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-08-audio-fft/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /dev/old/2019-06-08-audio-fft/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-08-audio-fft/Properties/Resources.resx -------------------------------------------------------------------------------- /dev/old/2019-06-08-audio-fft/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-08-audio-fft/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /dev/old/2019-06-08-audio-fft/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-08-audio-fft/Properties/Settings.settings -------------------------------------------------------------------------------- /dev/old/2019-06-08-audio-fft/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-08-audio-fft/packages.config -------------------------------------------------------------------------------- /dev/old/2019-06-08-audio-fft/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-08-audio-fft/readme.md -------------------------------------------------------------------------------- /dev/old/2019-06-08-audio-fft/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-06-08-audio-fft/screenshot.gif -------------------------------------------------------------------------------- /dev/old/2019-09-08-SkiaSharp-openGL/SkiaDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-09-08-SkiaSharp-openGL/SkiaDemo.sln -------------------------------------------------------------------------------- /dev/old/2019-09-08-SkiaSharp-openGL/SkiaDemo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-09-08-SkiaSharp-openGL/SkiaDemo/App.config -------------------------------------------------------------------------------- /dev/old/2019-09-08-SkiaSharp-openGL/SkiaDemo/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-09-08-SkiaSharp-openGL/SkiaDemo/Form1.cs -------------------------------------------------------------------------------- /dev/old/2019-09-08-SkiaSharp-openGL/SkiaDemo/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-09-08-SkiaSharp-openGL/SkiaDemo/Form1.resx -------------------------------------------------------------------------------- /dev/old/2019-09-08-SkiaSharp-openGL/SkiaDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-09-08-SkiaSharp-openGL/SkiaDemo/Program.cs -------------------------------------------------------------------------------- /dev/old/2019-09-08-SkiaSharp-openGL/SkiaDemo/SkiaDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-09-08-SkiaSharp-openGL/SkiaDemo/SkiaDemo.csproj -------------------------------------------------------------------------------- /dev/old/2019-09-08-SkiaSharp-openGL/SkiaDemo/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-09-08-SkiaSharp-openGL/SkiaDemo/packages.config -------------------------------------------------------------------------------- /dev/old/2019-09-08-SkiaSharp-openGL/SkiaSharp-OpenGL-Demo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-09-08-SkiaSharp-openGL/SkiaSharp-OpenGL-Demo.zip -------------------------------------------------------------------------------- /dev/old/2019-09-08-SkiaSharp-openGL/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-09-08-SkiaSharp-openGL/readme.md -------------------------------------------------------------------------------- /dev/old/2019-09-08-SkiaSharp-openGL/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-09-08-SkiaSharp-openGL/screenshot.jpg -------------------------------------------------------------------------------- /dev/old/2019-10-09-WPF-Draw-Lines/WpfPlotConcept.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-10-09-WPF-Draw-Lines/WpfPlotConcept.sln -------------------------------------------------------------------------------- /dev/old/2019-10-09-WPF-Draw-Lines/WpfPlotConcept/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-10-09-WPF-Draw-Lines/WpfPlotConcept/App.xaml -------------------------------------------------------------------------------- /dev/old/2019-10-09-WPF-Draw-Lines/WpfPlotConcept/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-10-09-WPF-Draw-Lines/WpfPlotConcept/App.xaml.cs -------------------------------------------------------------------------------- /dev/old/2019-10-09-WPF-Draw-Lines/WpfPlotConcept/DrawVis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-10-09-WPF-Draw-Lines/WpfPlotConcept/DrawVis.cs -------------------------------------------------------------------------------- /dev/old/2019-10-09-WPF-Draw-Lines/WpfPlotConcept/VisHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-10-09-WPF-Draw-Lines/WpfPlotConcept/VisHost.cs -------------------------------------------------------------------------------- /dev/old/2019-10-09-WPF-Draw-Lines/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-10-09-WPF-Draw-Lines/readme.md -------------------------------------------------------------------------------- /dev/old/2019-10-09-WPF-Draw-Lines/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2019-10-09-WPF-Draw-Lines/screenshot.png -------------------------------------------------------------------------------- /dev/old/2021-01-07-blazor-html-canvas/BlazorCanvasTest2/Shared/MainLayout.razor: -------------------------------------------------------------------------------- 1 | @inherits LayoutComponentBase 2 | 3 | @Body -------------------------------------------------------------------------------- /dev/old/2021-01-07-blazor-html-canvas/blazor-canvas-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-07-blazor-html-canvas/blazor-canvas-demo.gif -------------------------------------------------------------------------------- /dev/old/2021-01-07-blazor-html-canvas/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-07-blazor-html-canvas/readme.md -------------------------------------------------------------------------------- /dev/old/2021-01-08-blazor-boids/BlazorBoids/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-08-blazor-boids/BlazorBoids/App.razor -------------------------------------------------------------------------------- /dev/old/2021-01-08-blazor-boids/BlazorBoids/BlazorBoids.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-08-blazor-boids/BlazorBoids/BlazorBoids.sln -------------------------------------------------------------------------------- /dev/old/2021-01-08-blazor-boids/BlazorBoids/Models/Boid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-08-blazor-boids/BlazorBoids/Models/Boid.cs -------------------------------------------------------------------------------- /dev/old/2021-01-08-blazor-boids/BlazorBoids/Models/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-08-blazor-boids/BlazorBoids/Models/Field.cs -------------------------------------------------------------------------------- /dev/old/2021-01-08-blazor-boids/BlazorBoids/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-08-blazor-boids/BlazorBoids/Pages/Index.razor -------------------------------------------------------------------------------- /dev/old/2021-01-08-blazor-boids/BlazorBoids/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-08-blazor-boids/BlazorBoids/Program.cs -------------------------------------------------------------------------------- /dev/old/2021-01-08-blazor-boids/BlazorBoids/Shared/MainLayout.razor: -------------------------------------------------------------------------------- 1 | @inherits LayoutComponentBase 2 | 3 | @Body -------------------------------------------------------------------------------- /dev/old/2021-01-08-blazor-boids/BlazorBoids/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-08-blazor-boids/BlazorBoids/_Imports.razor -------------------------------------------------------------------------------- /dev/old/2021-01-08-blazor-boids/blazor-boids.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-08-blazor-boids/blazor-boids.gif -------------------------------------------------------------------------------- /dev/old/2021-01-08-blazor-boids/experiments/bounce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-08-blazor-boids/experiments/bounce.html -------------------------------------------------------------------------------- /dev/old/2021-01-08-blazor-boids/experiments/planet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-08-blazor-boids/experiments/planet.html -------------------------------------------------------------------------------- /dev/old/2021-01-08-blazor-boids/experiments/renderTest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-08-blazor-boids/experiments/renderTest.html -------------------------------------------------------------------------------- /dev/old/2021-01-09-blazor-mystify/MystifyBlazor/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-09-blazor-mystify/MystifyBlazor/App.razor -------------------------------------------------------------------------------- /dev/old/2021-01-09-blazor-mystify/MystifyBlazor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-09-blazor-mystify/MystifyBlazor/Program.cs -------------------------------------------------------------------------------- /dev/old/2021-01-09-blazor-mystify/MystifyBlazor/Shared/MainLayout.razor: -------------------------------------------------------------------------------- 1 | @inherits LayoutComponentBase 2 | 3 | @Body -------------------------------------------------------------------------------- /dev/old/2021-01-09-blazor-mystify/blazor-mystify.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-09-blazor-mystify/blazor-mystify.gif -------------------------------------------------------------------------------- /dev/old/2021-01-10-blazor-google-charts/App.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-10-blazor-google-charts/App.razor -------------------------------------------------------------------------------- /dev/old/2021-01-10-blazor-google-charts/Pages/Index.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-10-blazor-google-charts/Pages/Index.razor -------------------------------------------------------------------------------- /dev/old/2021-01-10-blazor-google-charts/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-10-blazor-google-charts/Program.cs -------------------------------------------------------------------------------- /dev/old/2021-01-10-blazor-google-charts/Shared/MainLayout.razor: -------------------------------------------------------------------------------- 1 | @inherits LayoutComponentBase 2 | 3 | @Body -------------------------------------------------------------------------------- /dev/old/2021-01-10-blazor-google-charts/_Imports.razor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-10-blazor-google-charts/_Imports.razor -------------------------------------------------------------------------------- /dev/old/2021-01-10-blazor-google-charts/wwwroot/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-10-blazor-google-charts/wwwroot/css/app.css -------------------------------------------------------------------------------- /dev/old/2021-01-10-blazor-google-charts/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-10-blazor-google-charts/wwwroot/favicon.ico -------------------------------------------------------------------------------- /dev/old/2021-01-10-blazor-google-charts/wwwroot/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-01-10-blazor-google-charts/wwwroot/index.html -------------------------------------------------------------------------------- /dev/old/2021-07-03-console-microphone/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-07-03-console-microphone/Program.cs -------------------------------------------------------------------------------- /dev/old/2021-07-03-console-microphone/console-microphone.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-07-03-console-microphone/console-microphone.sln -------------------------------------------------------------------------------- /dev/old/2021-07-03-console-microphone/microphone-mono.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-07-03-console-microphone/microphone-mono.gif -------------------------------------------------------------------------------- /dev/old/2021-07-03-console-microphone/microphone-stereo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-07-03-console-microphone/microphone-stereo.gif -------------------------------------------------------------------------------- /dev/old/2021-07-03-console-microphone/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/2021-07-03-console-microphone/readme.md -------------------------------------------------------------------------------- /dev/old/drawing/alternate/ImageSharpBenchmark/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/ImageSharpBenchmark/App.config -------------------------------------------------------------------------------- /dev/old/drawing/alternate/ImageSharpBenchmark/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/ImageSharpBenchmark/Form1.cs -------------------------------------------------------------------------------- /dev/old/drawing/alternate/ImageSharpBenchmark/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/ImageSharpBenchmark/Form1.resx -------------------------------------------------------------------------------- /dev/old/drawing/alternate/ImageSharpBenchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/ImageSharpBenchmark/Program.cs -------------------------------------------------------------------------------- /dev/old/drawing/alternate/ImageSharpBenchmark/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/ImageSharpBenchmark/packages.config -------------------------------------------------------------------------------- /dev/old/drawing/alternate/SkiaSharpBenchmark/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/SkiaSharpBenchmark/App.config -------------------------------------------------------------------------------- /dev/old/drawing/alternate/SkiaSharpBenchmark/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/SkiaSharpBenchmark/Form1.cs -------------------------------------------------------------------------------- /dev/old/drawing/alternate/SkiaSharpBenchmark/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/SkiaSharpBenchmark/Form1.resx -------------------------------------------------------------------------------- /dev/old/drawing/alternate/SkiaSharpBenchmark/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/SkiaSharpBenchmark/Program.cs -------------------------------------------------------------------------------- /dev/old/drawing/alternate/SkiaSharpOpenGLBenchmark/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/SkiaSharpOpenGLBenchmark/Form1.cs -------------------------------------------------------------------------------- /dev/old/drawing/alternate/SystemDrawing/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/SystemDrawing/App.config -------------------------------------------------------------------------------- /dev/old/drawing/alternate/SystemDrawing/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/SystemDrawing/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/drawing/alternate/SystemDrawing/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/SystemDrawing/Form1.cs -------------------------------------------------------------------------------- /dev/old/drawing/alternate/SystemDrawing/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/SystemDrawing/Form1.resx -------------------------------------------------------------------------------- /dev/old/drawing/alternate/SystemDrawing/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/SystemDrawing/Program.cs -------------------------------------------------------------------------------- /dev/old/drawing/alternate/SystemDrawing/SystemDrawing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/SystemDrawing/SystemDrawing.sln -------------------------------------------------------------------------------- /dev/old/drawing/alternate/WpfBenchmark/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/WpfBenchmark/App.config -------------------------------------------------------------------------------- /dev/old/drawing/alternate/WpfBenchmark/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/WpfBenchmark/App.xaml -------------------------------------------------------------------------------- /dev/old/drawing/alternate/WpfBenchmark/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/WpfBenchmark/App.xaml.cs -------------------------------------------------------------------------------- /dev/old/drawing/alternate/WpfBenchmark/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/WpfBenchmark/MainWindow.xaml -------------------------------------------------------------------------------- /dev/old/drawing/alternate/WpfBenchmark/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/WpfBenchmark/MainWindow.xaml.cs -------------------------------------------------------------------------------- /dev/old/drawing/alternate/WpfBenchmark/WpfBenchmark.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/WpfBenchmark/WpfBenchmark.csproj -------------------------------------------------------------------------------- /dev/old/drawing/alternate/WpfBenchmark/WpfBenchmark.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/alternate/WpfBenchmark/WpfBenchmark.sln -------------------------------------------------------------------------------- /dev/old/drawing/boids/Boids.Model/Boid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids/Boids.Model/Boid.cs -------------------------------------------------------------------------------- /dev/old/drawing/boids/Boids.Model/Boids.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids/Boids.Model/Boids.Model.csproj -------------------------------------------------------------------------------- /dev/old/drawing/boids/Boids.Model/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids/Boids.Model/Field.cs -------------------------------------------------------------------------------- /dev/old/drawing/boids/Boids.Viewer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids/Boids.Viewer/App.config -------------------------------------------------------------------------------- /dev/old/drawing/boids/Boids.Viewer/Boids.Viewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids/Boids.Viewer/Boids.Viewer.csproj -------------------------------------------------------------------------------- /dev/old/drawing/boids/Boids.Viewer/Form2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids/Boids.Viewer/Form2.Designer.cs -------------------------------------------------------------------------------- /dev/old/drawing/boids/Boids.Viewer/Form2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids/Boids.Viewer/Form2.cs -------------------------------------------------------------------------------- /dev/old/drawing/boids/Boids.Viewer/Form2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids/Boids.Viewer/Form2.resx -------------------------------------------------------------------------------- /dev/old/drawing/boids/Boids.Viewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids/Boids.Viewer/Program.cs -------------------------------------------------------------------------------- /dev/old/drawing/boids/Boids.Viewer/SDRender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids/Boids.Viewer/SDRender.cs -------------------------------------------------------------------------------- /dev/old/drawing/boids/Boids.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids/Boids.sln -------------------------------------------------------------------------------- /dev/old/drawing/boids/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids/screenshot.gif -------------------------------------------------------------------------------- /dev/old/drawing/boids2/BoidsGL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids2/BoidsGL.sln -------------------------------------------------------------------------------- /dev/old/drawing/boids2/Model/Boid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids2/Model/Boid.cs -------------------------------------------------------------------------------- /dev/old/drawing/boids2/Model/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids2/Model/Field.cs -------------------------------------------------------------------------------- /dev/old/drawing/boids2/Model/Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids2/Model/Model.csproj -------------------------------------------------------------------------------- /dev/old/drawing/boids2/Model/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids2/Model/Position.cs -------------------------------------------------------------------------------- /dev/old/drawing/boids2/Model/Velocity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids2/Model/Velocity.cs -------------------------------------------------------------------------------- /dev/old/drawing/boids2/Viewer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids2/Viewer/App.config -------------------------------------------------------------------------------- /dev/old/drawing/boids2/Viewer/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids2/Viewer/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/drawing/boids2/Viewer/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids2/Viewer/Form1.cs -------------------------------------------------------------------------------- /dev/old/drawing/boids2/Viewer/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids2/Viewer/Form1.resx -------------------------------------------------------------------------------- /dev/old/drawing/boids2/Viewer/OpenTK.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids2/Viewer/OpenTK.dll.config -------------------------------------------------------------------------------- /dev/old/drawing/boids2/Viewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids2/Viewer/Program.cs -------------------------------------------------------------------------------- /dev/old/drawing/boids2/Viewer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids2/Viewer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /dev/old/drawing/boids2/Viewer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids2/Viewer/Properties/Resources.resx -------------------------------------------------------------------------------- /dev/old/drawing/boids2/Viewer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids2/Viewer/Properties/Settings.settings -------------------------------------------------------------------------------- /dev/old/drawing/boids2/Viewer/Renderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids2/Viewer/Renderer.cs -------------------------------------------------------------------------------- /dev/old/drawing/boids2/Viewer/Viewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids2/Viewer/Viewer.csproj -------------------------------------------------------------------------------- /dev/old/drawing/boids2/Viewer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids2/Viewer/packages.config -------------------------------------------------------------------------------- /dev/old/drawing/boids2/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/boids2/screenshot.png -------------------------------------------------------------------------------- /dev/old/drawing/bounce/Mystify.Model/Corner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/bounce/Mystify.Model/Corner.cs -------------------------------------------------------------------------------- /dev/old/drawing/bounce/Mystify.Model/Mystify.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/bounce/Mystify.Model/Mystify.Model.csproj -------------------------------------------------------------------------------- /dev/old/drawing/bounce/Mystify.Model/PointF.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/bounce/Mystify.Model/PointF.cs -------------------------------------------------------------------------------- /dev/old/drawing/bounce/Mystify.Model/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/bounce/Mystify.Model/Polygon.cs -------------------------------------------------------------------------------- /dev/old/drawing/bounce/Mystify.Viewer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/bounce/Mystify.Viewer/App.config -------------------------------------------------------------------------------- /dev/old/drawing/bounce/Mystify.Viewer/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/bounce/Mystify.Viewer/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/drawing/bounce/Mystify.Viewer/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/bounce/Mystify.Viewer/Form1.cs -------------------------------------------------------------------------------- /dev/old/drawing/bounce/Mystify.Viewer/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/bounce/Mystify.Viewer/Form1.resx -------------------------------------------------------------------------------- /dev/old/drawing/bounce/Mystify.Viewer/Mystify.Viewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/bounce/Mystify.Viewer/Mystify.Viewer.csproj -------------------------------------------------------------------------------- /dev/old/drawing/bounce/Mystify.Viewer/OpenTK.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/bounce/Mystify.Viewer/OpenTK.dll.config -------------------------------------------------------------------------------- /dev/old/drawing/bounce/Mystify.Viewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/bounce/Mystify.Viewer/Program.cs -------------------------------------------------------------------------------- /dev/old/drawing/bounce/Mystify.Viewer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/bounce/Mystify.Viewer/packages.config -------------------------------------------------------------------------------- /dev/old/drawing/bounce/Mystify.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/bounce/Mystify.sln -------------------------------------------------------------------------------- /dev/old/drawing/constellation/injected/Viewer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/injected/Viewer/App.config -------------------------------------------------------------------------------- /dev/old/drawing/constellation/injected/Viewer/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/injected/Viewer/Form1.cs -------------------------------------------------------------------------------- /dev/old/drawing/constellation/injected/Viewer/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/injected/Viewer/Form1.resx -------------------------------------------------------------------------------- /dev/old/drawing/constellation/injected/Viewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/injected/Viewer/Program.cs -------------------------------------------------------------------------------- /dev/old/drawing/constellation/injected/Viewer/Viewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/injected/Viewer/Viewer.csproj -------------------------------------------------------------------------------- /dev/old/drawing/constellation/injected/ViewerGL/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/injected/ViewerGL/App.config -------------------------------------------------------------------------------- /dev/old/drawing/constellation/injected/ViewerGL/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/injected/ViewerGL/Form1.cs -------------------------------------------------------------------------------- /dev/old/drawing/constellation/injected/ViewerGL/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/injected/ViewerGL/Form1.resx -------------------------------------------------------------------------------- /dev/old/drawing/constellation/injected/ViewerGL/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/injected/ViewerGL/Program.cs -------------------------------------------------------------------------------- /dev/old/drawing/constellation/isolated/Viewer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/isolated/Viewer/App.config -------------------------------------------------------------------------------- /dev/old/drawing/constellation/isolated/Viewer/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/isolated/Viewer/Form1.cs -------------------------------------------------------------------------------- /dev/old/drawing/constellation/isolated/Viewer/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/isolated/Viewer/Form1.resx -------------------------------------------------------------------------------- /dev/old/drawing/constellation/isolated/Viewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/isolated/Viewer/Program.cs -------------------------------------------------------------------------------- /dev/old/drawing/constellation/isolated/Viewer/Viewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/isolated/Viewer/Viewer.csproj -------------------------------------------------------------------------------- /dev/old/drawing/constellation/isolated/ViewerWPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/isolated/ViewerWPF/App.xaml -------------------------------------------------------------------------------- /dev/old/drawing/constellation/simple/GraphicsModel/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/simple/GraphicsModel/Field.cs -------------------------------------------------------------------------------- /dev/old/drawing/constellation/simple/GraphicsModel/Star.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/simple/GraphicsModel/Star.cs -------------------------------------------------------------------------------- /dev/old/drawing/constellation/simple/Viewer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/simple/Viewer/App.config -------------------------------------------------------------------------------- /dev/old/drawing/constellation/simple/Viewer/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/simple/Viewer/Form1.cs -------------------------------------------------------------------------------- /dev/old/drawing/constellation/simple/Viewer/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/simple/Viewer/Form1.resx -------------------------------------------------------------------------------- /dev/old/drawing/constellation/simple/Viewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/simple/Viewer/Program.cs -------------------------------------------------------------------------------- /dev/old/drawing/constellation/simple/Viewer/Viewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/simple/Viewer/Viewer.csproj -------------------------------------------------------------------------------- /dev/old/drawing/constellation/simple/ViewerGL/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/simple/ViewerGL/App.config -------------------------------------------------------------------------------- /dev/old/drawing/constellation/simple/ViewerGL/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/simple/ViewerGL/Form1.cs -------------------------------------------------------------------------------- /dev/old/drawing/constellation/simple/ViewerGL/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/simple/ViewerGL/Form1.resx -------------------------------------------------------------------------------- /dev/old/drawing/constellation/simple/ViewerGL/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/constellation/simple/ViewerGL/Program.cs -------------------------------------------------------------------------------- /dev/old/drawing/game-of-life/GameOfLife.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/game-of-life/GameOfLife.sln -------------------------------------------------------------------------------- /dev/old/drawing/game-of-life/GameOfLife/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/game-of-life/GameOfLife/App.config -------------------------------------------------------------------------------- /dev/old/drawing/game-of-life/GameOfLife/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/game-of-life/GameOfLife/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/drawing/game-of-life/GameOfLife/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/game-of-life/GameOfLife/Form1.cs -------------------------------------------------------------------------------- /dev/old/drawing/game-of-life/GameOfLife/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/game-of-life/GameOfLife/Form1.resx -------------------------------------------------------------------------------- /dev/old/drawing/game-of-life/GameOfLife/GameOfLife.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/game-of-life/GameOfLife/GameOfLife.csproj -------------------------------------------------------------------------------- /dev/old/drawing/game-of-life/GameOfLife/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/game-of-life/GameOfLife/Program.cs -------------------------------------------------------------------------------- /dev/old/drawing/game-of-life/LifeModel/Board.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/game-of-life/LifeModel/Board.cs -------------------------------------------------------------------------------- /dev/old/drawing/game-of-life/LifeModel/Cell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/game-of-life/LifeModel/Cell.cs -------------------------------------------------------------------------------- /dev/old/drawing/game-of-life/LifeModel/LifeModel.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/game-of-life/LifeModel/LifeModel.csproj -------------------------------------------------------------------------------- /dev/old/drawing/game-of-life/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/game-of-life/screenshot.gif -------------------------------------------------------------------------------- /dev/old/drawing/mystify/Mystify.Model/Color.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/mystify/Mystify.Model/Color.cs -------------------------------------------------------------------------------- /dev/old/drawing/mystify/Mystify.Model/Colors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/mystify/Mystify.Model/Colors.cs -------------------------------------------------------------------------------- /dev/old/drawing/mystify/Mystify.Model/Corner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/mystify/Mystify.Model/Corner.cs -------------------------------------------------------------------------------- /dev/old/drawing/mystify/Mystify.Model/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/mystify/Mystify.Model/Field.cs -------------------------------------------------------------------------------- /dev/old/drawing/mystify/Mystify.Model/IRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/mystify/Mystify.Model/IRenderer.cs -------------------------------------------------------------------------------- /dev/old/drawing/mystify/Mystify.Model/Mystify.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/mystify/Mystify.Model/Mystify.Model.csproj -------------------------------------------------------------------------------- /dev/old/drawing/mystify/Mystify.Model/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/mystify/Mystify.Model/Point.cs -------------------------------------------------------------------------------- /dev/old/drawing/mystify/Mystify.Model/Polygon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/mystify/Mystify.Model/Polygon.cs -------------------------------------------------------------------------------- /dev/old/drawing/mystify/Mystify.Viewer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/mystify/Mystify.Viewer/App.config -------------------------------------------------------------------------------- /dev/old/drawing/mystify/Mystify.Viewer/DrawingRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/mystify/Mystify.Viewer/DrawingRenderer.cs -------------------------------------------------------------------------------- /dev/old/drawing/mystify/Mystify.Viewer/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/mystify/Mystify.Viewer/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/drawing/mystify/Mystify.Viewer/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/mystify/Mystify.Viewer/Form1.cs -------------------------------------------------------------------------------- /dev/old/drawing/mystify/Mystify.Viewer/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/mystify/Mystify.Viewer/Form1.resx -------------------------------------------------------------------------------- /dev/old/drawing/mystify/Mystify.Viewer/OpenTK.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/mystify/Mystify.Viewer/OpenTK.dll.config -------------------------------------------------------------------------------- /dev/old/drawing/mystify/Mystify.Viewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/mystify/Mystify.Viewer/Program.cs -------------------------------------------------------------------------------- /dev/old/drawing/mystify/Mystify.Viewer/SkiaRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/mystify/Mystify.Viewer/SkiaRenderer.cs -------------------------------------------------------------------------------- /dev/old/drawing/mystify/Mystify.Viewer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/mystify/Mystify.Viewer/packages.config -------------------------------------------------------------------------------- /dev/old/drawing/mystify/Mystify.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/mystify/Mystify.sln -------------------------------------------------------------------------------- /dev/old/drawing/mystify/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/mystify/screenshot.gif -------------------------------------------------------------------------------- /dev/old/drawing/quickstart-console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/quickstart-console/Program.cs -------------------------------------------------------------------------------- /dev/old/drawing/quickstart-winforms/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/quickstart-winforms/App.config -------------------------------------------------------------------------------- /dev/old/drawing/quickstart-winforms/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/quickstart-winforms/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/drawing/quickstart-winforms/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/quickstart-winforms/Form1.cs -------------------------------------------------------------------------------- /dev/old/drawing/quickstart-winforms/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/quickstart-winforms/Form1.resx -------------------------------------------------------------------------------- /dev/old/drawing/quickstart-winforms/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/quickstart-winforms/Program.cs -------------------------------------------------------------------------------- /dev/old/drawing/quickstart-wpf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/quickstart-wpf/App.xaml -------------------------------------------------------------------------------- /dev/old/drawing/quickstart-wpf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/quickstart-wpf/App.xaml.cs -------------------------------------------------------------------------------- /dev/old/drawing/quickstart-wpf/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/quickstart-wpf/AssemblyInfo.cs -------------------------------------------------------------------------------- /dev/old/drawing/quickstart-wpf/DrawingQuickstartWPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/quickstart-wpf/DrawingQuickstartWPF.csproj -------------------------------------------------------------------------------- /dev/old/drawing/quickstart-wpf/DrawingQuickstartWPF.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/quickstart-wpf/DrawingQuickstartWPF.sln -------------------------------------------------------------------------------- /dev/old/drawing/quickstart-wpf/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/quickstart-wpf/MainWindow.xaml -------------------------------------------------------------------------------- /dev/old/drawing/quickstart-wpf/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/quickstart-wpf/MainWindow.xaml.cs -------------------------------------------------------------------------------- /dev/old/drawing/quickstart-wpf/drawing-in-wpf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/quickstart-wpf/drawing-in-wpf.png -------------------------------------------------------------------------------- /dev/old/drawing/simple-paint/SimplePaint.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/simple-paint/SimplePaint.sln -------------------------------------------------------------------------------- /dev/old/drawing/simple-paint/SimplePaint/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/simple-paint/SimplePaint/App.config -------------------------------------------------------------------------------- /dev/old/drawing/simple-paint/SimplePaint/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/simple-paint/SimplePaint/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/drawing/simple-paint/SimplePaint/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/simple-paint/SimplePaint/Form1.cs -------------------------------------------------------------------------------- /dev/old/drawing/simple-paint/SimplePaint/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/simple-paint/SimplePaint/Form1.resx -------------------------------------------------------------------------------- /dev/old/drawing/simple-paint/SimplePaint/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/simple-paint/SimplePaint/Program.cs -------------------------------------------------------------------------------- /dev/old/drawing/simple-paint/SimplePaint/SimplePaint.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/simple-paint/SimplePaint/SimplePaint.csproj -------------------------------------------------------------------------------- /dev/old/drawing/starfield/Starfield.Tests/RenderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/starfield/Starfield.Tests/RenderTests.cs -------------------------------------------------------------------------------- /dev/old/drawing/starfield/Starfield.WPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/starfield/Starfield.WPF/App.xaml -------------------------------------------------------------------------------- /dev/old/drawing/starfield/Starfield.WPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/starfield/Starfield.WPF/App.xaml.cs -------------------------------------------------------------------------------- /dev/old/drawing/starfield/Starfield.WPF/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/starfield/Starfield.WPF/AssemblyInfo.cs -------------------------------------------------------------------------------- /dev/old/drawing/starfield/Starfield.WPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/starfield/Starfield.WPF/MainWindow.xaml -------------------------------------------------------------------------------- /dev/old/drawing/starfield/Starfield.WPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/starfield/Starfield.WPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /dev/old/drawing/starfield/Starfield.WinForms/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/starfield/Starfield.WinForms/App.config -------------------------------------------------------------------------------- /dev/old/drawing/starfield/Starfield.WinForms/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/starfield/Starfield.WinForms/Form1.cs -------------------------------------------------------------------------------- /dev/old/drawing/starfield/Starfield.WinForms/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/starfield/Starfield.WinForms/Form1.resx -------------------------------------------------------------------------------- /dev/old/drawing/starfield/Starfield.WinForms/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/starfield/Starfield.WinForms/Program.cs -------------------------------------------------------------------------------- /dev/old/drawing/starfield/Starfield.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/starfield/Starfield.sln -------------------------------------------------------------------------------- /dev/old/drawing/starfield/Starfield/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/starfield/Starfield/Field.cs -------------------------------------------------------------------------------- /dev/old/drawing/starfield/Starfield/Starfield.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/starfield/Starfield/Starfield.csproj -------------------------------------------------------------------------------- /dev/old/drawing/starfield/Starfield/field_basic.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/starfield/Starfield/field_basic.bmp -------------------------------------------------------------------------------- /dev/old/drawing/starfield/Starfield/field_basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/drawing/starfield/Starfield/field_basic.png -------------------------------------------------------------------------------- /dev/old/plotting/interactive-data-display/IIDQuickstart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/interactive-data-display/IIDQuickstart.sln -------------------------------------------------------------------------------- /dev/old/plotting/livecharts/LiveChartsQuickstart/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/livecharts/LiveChartsQuickstart/App.config -------------------------------------------------------------------------------- /dev/old/plotting/livecharts/LiveChartsQuickstart/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/livecharts/LiveChartsQuickstart/Form1.cs -------------------------------------------------------------------------------- /dev/old/plotting/livecharts/LiveChartsQuickstart/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/livecharts/LiveChartsQuickstart/Form1.resx -------------------------------------------------------------------------------- /dev/old/plotting/livecharts/LiveChartsQuickstart/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/livecharts/LiveChartsQuickstart/Program.cs -------------------------------------------------------------------------------- /dev/old/plotting/nplot/NPlotQuickstart/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/nplot/NPlotQuickstart/App.config -------------------------------------------------------------------------------- /dev/old/plotting/nplot/NPlotQuickstart/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/nplot/NPlotQuickstart/Form1.Designer.cs -------------------------------------------------------------------------------- /dev/old/plotting/nplot/NPlotQuickstart/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/nplot/NPlotQuickstart/Form1.cs -------------------------------------------------------------------------------- /dev/old/plotting/nplot/NPlotQuickstart/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/nplot/NPlotQuickstart/Form1.resx -------------------------------------------------------------------------------- /dev/old/plotting/nplot/NPlotQuickstart/NPlotQuickstart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/nplot/NPlotQuickstart/NPlotQuickstart.sln -------------------------------------------------------------------------------- /dev/old/plotting/nplot/NPlotQuickstart/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/nplot/NPlotQuickstart/Program.cs -------------------------------------------------------------------------------- /dev/old/plotting/nplot/NPlotQuickstart/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/nplot/NPlotQuickstart/packages.config -------------------------------------------------------------------------------- /dev/old/plotting/oxyplot/OxyPlotQuickstart/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/oxyplot/OxyPlotQuickstart/App.config -------------------------------------------------------------------------------- /dev/old/plotting/oxyplot/OxyPlotQuickstart/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/oxyplot/OxyPlotQuickstart/Form1.cs -------------------------------------------------------------------------------- /dev/old/plotting/oxyplot/OxyPlotQuickstart/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/oxyplot/OxyPlotQuickstart/Form1.resx -------------------------------------------------------------------------------- /dev/old/plotting/oxyplot/OxyPlotQuickstart/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/oxyplot/OxyPlotQuickstart/Program.cs -------------------------------------------------------------------------------- /dev/old/plotting/oxyplot/OxyPlotQuickstart/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/oxyplot/OxyPlotQuickstart/packages.config -------------------------------------------------------------------------------- /dev/old/plotting/scottplot/ScottPlotQuickstart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/scottplot/ScottPlotQuickstart.sln -------------------------------------------------------------------------------- /dev/old/plotting/scottplot/ScottPlotQuickstart/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/scottplot/ScottPlotQuickstart/App.config -------------------------------------------------------------------------------- /dev/old/plotting/scottplot/ScottPlotQuickstart/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/scottplot/ScottPlotQuickstart/Form1.cs -------------------------------------------------------------------------------- /dev/old/plotting/scottplot/ScottPlotQuickstart/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/scottplot/ScottPlotQuickstart/Form1.resx -------------------------------------------------------------------------------- /dev/old/plotting/scottplot/ScottPlotQuickstart/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/scottplot/ScottPlotQuickstart/Program.cs -------------------------------------------------------------------------------- /dev/old/plotting/zedgraph/ZedGraphQuickstart/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/zedgraph/ZedGraphQuickstart/App.config -------------------------------------------------------------------------------- /dev/old/plotting/zedgraph/ZedGraphQuickstart/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/zedgraph/ZedGraphQuickstart/Form1.cs -------------------------------------------------------------------------------- /dev/old/plotting/zedgraph/ZedGraphQuickstart/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/zedgraph/ZedGraphQuickstart/Form1.resx -------------------------------------------------------------------------------- /dev/old/plotting/zedgraph/ZedGraphQuickstart/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/old/plotting/zedgraph/ZedGraphQuickstart/Program.cs -------------------------------------------------------------------------------- /dev/site-mockups/bs5sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/site-mockups/bs5sidebar.js -------------------------------------------------------------------------------- /dev/site-mockups/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/site-mockups/header.html -------------------------------------------------------------------------------- /dev/site-mockups/mockup1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/site-mockups/mockup1.html -------------------------------------------------------------------------------- /dev/site-mockups/mockup2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/site-mockups/mockup2.html -------------------------------------------------------------------------------- /dev/site-mockups/starfield.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/site-mockups/starfield.js -------------------------------------------------------------------------------- /dev/site-mockups/wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/dev/site-mockups/wave.svg -------------------------------------------------------------------------------- /projects/array-to-image/ArrayToImage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/array-to-image/ArrayToImage.csproj -------------------------------------------------------------------------------- /projects/array-to-image/ArrayToImage.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/array-to-image/ArrayToImage.sln -------------------------------------------------------------------------------- /projects/array-to-image/Demonstrate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/array-to-image/Demonstrate.cs -------------------------------------------------------------------------------- /projects/array-to-image/ImageMakers/IGraphicsPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/array-to-image/ImageMakers/IGraphicsPlatform.cs -------------------------------------------------------------------------------- /projects/array-to-image/ImageMakers/SkiaSharpImageMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/array-to-image/ImageMakers/SkiaSharpImageMaker.cs -------------------------------------------------------------------------------- /projects/array-to-image/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/array-to-image/Program.cs -------------------------------------------------------------------------------- /projects/array-to-image/TestImages/bird.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/array-to-image/TestImages/bird.jpg -------------------------------------------------------------------------------- /projects/array-to-image/TestPatterns/ColorStrips.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/array-to-image/TestPatterns/ColorStrips.cs -------------------------------------------------------------------------------- /projects/array-to-image/TestPatterns/DiagnalGradients.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/array-to-image/TestPatterns/DiagnalGradients.cs -------------------------------------------------------------------------------- /projects/array-to-image/TestPatterns/HorizontalGradients.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/array-to-image/TestPatterns/HorizontalGradients.cs -------------------------------------------------------------------------------- /projects/array-to-image/TestPatterns/ITestPattern.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/array-to-image/TestPatterns/ITestPattern.cs -------------------------------------------------------------------------------- /projects/array-to-image/TestPatterns/VerticalGradients.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/array-to-image/TestPatterns/VerticalGradients.cs -------------------------------------------------------------------------------- /projects/audio/AudioMonitor/AudioMonitor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/audio/AudioMonitor/AudioMonitor.csproj -------------------------------------------------------------------------------- /projects/audio/AudioMonitor/AudioMonitor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/audio/AudioMonitor/AudioMonitor.sln -------------------------------------------------------------------------------- /projects/audio/AudioMonitor/AudioMonitorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/audio/AudioMonitor/AudioMonitorForm.Designer.cs -------------------------------------------------------------------------------- /projects/audio/AudioMonitor/AudioMonitorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/audio/AudioMonitor/AudioMonitorForm.cs -------------------------------------------------------------------------------- /projects/audio/AudioMonitor/AudioMonitorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/audio/AudioMonitor/AudioMonitorForm.resx -------------------------------------------------------------------------------- /projects/audio/AudioMonitor/FftMonitorForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/audio/AudioMonitor/FftMonitorForm.Designer.cs -------------------------------------------------------------------------------- /projects/audio/AudioMonitor/FftMonitorForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/audio/AudioMonitor/FftMonitorForm.cs -------------------------------------------------------------------------------- /projects/audio/AudioMonitor/FftMonitorForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/audio/AudioMonitor/FftMonitorForm.resx -------------------------------------------------------------------------------- /projects/audio/AudioMonitor/MenuForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/audio/AudioMonitor/MenuForm.Designer.cs -------------------------------------------------------------------------------- /projects/audio/AudioMonitor/MenuForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/audio/AudioMonitor/MenuForm.cs -------------------------------------------------------------------------------- /projects/audio/AudioMonitor/MenuForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/audio/AudioMonitor/MenuForm.resx -------------------------------------------------------------------------------- /projects/audio/AudioMonitor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/audio/AudioMonitor/Program.cs -------------------------------------------------------------------------------- /projects/audio/AudioMonitor/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/audio/AudioMonitor/screenshot.gif -------------------------------------------------------------------------------- /projects/audio/AudioMonitor/screenshot2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/audio/AudioMonitor/screenshot2.gif -------------------------------------------------------------------------------- /projects/audio/ConsoleLevelMonitor/ConsoleLevelMonitor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/audio/ConsoleLevelMonitor/ConsoleLevelMonitor.sln -------------------------------------------------------------------------------- /projects/audio/ConsoleLevelMonitor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/audio/ConsoleLevelMonitor/Program.cs -------------------------------------------------------------------------------- /projects/bitmap-raw/BitmapGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/bitmap-raw/BitmapGenerator.cs -------------------------------------------------------------------------------- /projects/bitmap-raw/BitmapMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/bitmap-raw/BitmapMaker.cs -------------------------------------------------------------------------------- /projects/bitmap-raw/BitmapRaw.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/bitmap-raw/BitmapRaw.csproj -------------------------------------------------------------------------------- /projects/bitmap-raw/BitmapRaw.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/bitmap-raw/BitmapRaw.sln -------------------------------------------------------------------------------- /projects/bitmap-raw/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/bitmap-raw/Program.cs -------------------------------------------------------------------------------- /projects/bitmap-raw/RawBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/bitmap-raw/RawBitmap.cs -------------------------------------------------------------------------------- /projects/bitmap-raw/RawColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/bitmap-raw/RawColor.cs -------------------------------------------------------------------------------- /projects/dataframe/DataFrameDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/dataframe/DataFrameDemo.csproj -------------------------------------------------------------------------------- /projects/dataframe/DataFrameDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/dataframe/DataFrameDemo.sln -------------------------------------------------------------------------------- /projects/dataframe/PrettyPrinters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/dataframe/PrettyPrinters.cs -------------------------------------------------------------------------------- /projects/dataframe/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/dataframe/Program.cs -------------------------------------------------------------------------------- /projects/dataframe/demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/dataframe/demo.ipynb -------------------------------------------------------------------------------- /projects/maui-audio-monitor/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-audio-monitor/Form1.Designer.cs -------------------------------------------------------------------------------- /projects/maui-audio-monitor/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-audio-monitor/Form1.cs -------------------------------------------------------------------------------- /projects/maui-audio-monitor/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-audio-monitor/Form1.resx -------------------------------------------------------------------------------- /projects/maui-audio-monitor/MauiAudioMon.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-audio-monitor/MauiAudioMon.csproj -------------------------------------------------------------------------------- /projects/maui-audio-monitor/MauiAudioMon.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-audio-monitor/MauiAudioMon.sln -------------------------------------------------------------------------------- /projects/maui-audio-monitor/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-audio-monitor/Program.cs -------------------------------------------------------------------------------- /projects/maui-audio-monitor/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-audio-monitor/screenshot.gif -------------------------------------------------------------------------------- /projects/maui-fft/FftProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-fft/FftProcessor.cs -------------------------------------------------------------------------------- /projects/maui-fft/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-fft/Form1.Designer.cs -------------------------------------------------------------------------------- /projects/maui-fft/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-fft/Form1.cs -------------------------------------------------------------------------------- /projects/maui-fft/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-fft/Form1.resx -------------------------------------------------------------------------------- /projects/maui-fft/MauiFft.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-fft/MauiFft.csproj -------------------------------------------------------------------------------- /projects/maui-fft/MauiFft.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-fft/MauiFft.sln -------------------------------------------------------------------------------- /projects/maui-fft/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-fft/Program.cs -------------------------------------------------------------------------------- /projects/maui-fft/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-fft/screenshot.gif -------------------------------------------------------------------------------- /projects/maui-forms-gl/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-forms-gl/Form1.Designer.cs -------------------------------------------------------------------------------- /projects/maui-forms-gl/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-forms-gl/Form1.cs -------------------------------------------------------------------------------- /projects/maui-forms-gl/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-forms-gl/Form1.resx -------------------------------------------------------------------------------- /projects/maui-forms-gl/Form2.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-forms-gl/Form2.Designer.cs -------------------------------------------------------------------------------- /projects/maui-forms-gl/Form2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-forms-gl/Form2.cs -------------------------------------------------------------------------------- /projects/maui-forms-gl/Form2.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-forms-gl/Form2.resx -------------------------------------------------------------------------------- /projects/maui-forms-gl/FormMenu.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-forms-gl/FormMenu.Designer.cs -------------------------------------------------------------------------------- /projects/maui-forms-gl/FormMenu.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-forms-gl/FormMenu.cs -------------------------------------------------------------------------------- /projects/maui-forms-gl/FormMenu.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-forms-gl/FormMenu.resx -------------------------------------------------------------------------------- /projects/maui-forms-gl/Graphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-forms-gl/Graphics.cs -------------------------------------------------------------------------------- /projects/maui-forms-gl/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-forms-gl/Program.cs -------------------------------------------------------------------------------- /projects/maui-forms-gl/SkiaCompareGL.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-forms-gl/SkiaCompareGL.csproj -------------------------------------------------------------------------------- /projects/maui-forms-gl/SkiaCompareGL.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-forms-gl/SkiaCompareGL.sln -------------------------------------------------------------------------------- /projects/maui-forms-gl/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-forms-gl/screenshot.png -------------------------------------------------------------------------------- /projects/maui-graphics/GraphicsModels/GraphicsModels.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-graphics/GraphicsModels/GraphicsModels.csproj -------------------------------------------------------------------------------- /projects/maui-graphics/GraphicsModels/RandomCircles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-graphics/GraphicsModels/RandomCircles.cs -------------------------------------------------------------------------------- /projects/maui-graphics/MauiGraphicsProjects.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-graphics/MauiGraphicsProjects.sln -------------------------------------------------------------------------------- /projects/maui-graphics/QuickstartConsole/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-graphics/QuickstartConsole/Program.cs -------------------------------------------------------------------------------- /projects/maui-graphics/QuickstartWinForms/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-graphics/QuickstartWinForms/Form1.Designer.cs -------------------------------------------------------------------------------- /projects/maui-graphics/QuickstartWinForms/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-graphics/QuickstartWinForms/Form1.cs -------------------------------------------------------------------------------- /projects/maui-graphics/QuickstartWinForms/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-graphics/QuickstartWinForms/Form1.resx -------------------------------------------------------------------------------- /projects/maui-graphics/QuickstartWinForms/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-graphics/QuickstartWinForms/Program.cs -------------------------------------------------------------------------------- /projects/maui-graphics/QuickstartWpf/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-graphics/QuickstartWpf/App.xaml -------------------------------------------------------------------------------- /projects/maui-graphics/QuickstartWpf/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-graphics/QuickstartWpf/App.xaml.cs -------------------------------------------------------------------------------- /projects/maui-graphics/QuickstartWpf/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-graphics/QuickstartWpf/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/maui-graphics/QuickstartWpf/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-graphics/QuickstartWpf/MainWindow.xaml -------------------------------------------------------------------------------- /projects/maui-graphics/QuickstartWpf/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-graphics/QuickstartWpf/MainWindow.xaml.cs -------------------------------------------------------------------------------- /projects/maui-graphics/QuickstartWpf/QuickstartWpf.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-graphics/QuickstartWpf/QuickstartWpf.csproj -------------------------------------------------------------------------------- /projects/maui-life/FormsLife/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-life/FormsLife/Form1.Designer.cs -------------------------------------------------------------------------------- /projects/maui-life/FormsLife/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-life/FormsLife/Form1.cs -------------------------------------------------------------------------------- /projects/maui-life/FormsLife/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-life/FormsLife/Form1.resx -------------------------------------------------------------------------------- /projects/maui-life/FormsLife/FormsLife.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-life/FormsLife/FormsLife.csproj -------------------------------------------------------------------------------- /projects/maui-life/FormsLife/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-life/FormsLife/Program.cs -------------------------------------------------------------------------------- /projects/maui-life/Life/Board.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-life/Life/Board.cs -------------------------------------------------------------------------------- /projects/maui-life/Life/Life.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-life/Life/Life.csproj -------------------------------------------------------------------------------- /projects/maui-life/Life/Render.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-life/Life/Render.cs -------------------------------------------------------------------------------- /projects/maui-life/LifeInMaui.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-life/LifeInMaui.sln -------------------------------------------------------------------------------- /projects/maui-life/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/maui-life/screenshot.gif -------------------------------------------------------------------------------- /projects/model-viewer/FormsViewer/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/model-viewer/FormsViewer/Form1.Designer.cs -------------------------------------------------------------------------------- /projects/model-viewer/FormsViewer/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/model-viewer/FormsViewer/Form1.cs -------------------------------------------------------------------------------- /projects/model-viewer/FormsViewer/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/model-viewer/FormsViewer/Form1.resx -------------------------------------------------------------------------------- /projects/model-viewer/FormsViewer/FormsViewer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/model-viewer/FormsViewer/FormsViewer.csproj -------------------------------------------------------------------------------- /projects/model-viewer/FormsViewer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/model-viewer/FormsViewer/Program.cs -------------------------------------------------------------------------------- /projects/model-viewer/GraphicsModelLibrary/BallPit/Ball.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/model-viewer/GraphicsModelLibrary/BallPit/Ball.cs -------------------------------------------------------------------------------- /projects/model-viewer/ModelViewer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/model-viewer/ModelViewer.sln -------------------------------------------------------------------------------- /projects/model-viewer/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/model-viewer/screenshot.jpg -------------------------------------------------------------------------------- /projects/multi-target/ConsoleApp/ConsoleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/ConsoleApp/ConsoleApp.csproj -------------------------------------------------------------------------------- /projects/multi-target/ConsoleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/ConsoleApp/Program.cs -------------------------------------------------------------------------------- /projects/multi-target/MauiGraphicsApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/MauiGraphicsApp/App.xaml -------------------------------------------------------------------------------- /projects/multi-target/MauiGraphicsApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/MauiGraphicsApp/App.xaml.cs -------------------------------------------------------------------------------- /projects/multi-target/MauiGraphicsApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/MauiGraphicsApp/MainPage.xaml -------------------------------------------------------------------------------- /projects/multi-target/MauiGraphicsApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/MauiGraphicsApp/MainPage.xaml.cs -------------------------------------------------------------------------------- /projects/multi-target/MauiGraphicsApp/MauiProgram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/MauiGraphicsApp/MauiProgram.cs -------------------------------------------------------------------------------- /projects/multi-target/MauiGraphicsApp/Resources/appicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/MauiGraphicsApp/Resources/appicon.svg -------------------------------------------------------------------------------- /projects/multi-target/MauiGraphicsApp/TestDrawable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/MauiGraphicsApp/TestDrawable.cs -------------------------------------------------------------------------------- /projects/multi-target/MultiTargetApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/MultiTargetApp.sln -------------------------------------------------------------------------------- /projects/multi-target/StandardGraphics/Render.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/StandardGraphics/Render.cs -------------------------------------------------------------------------------- /projects/multi-target/WinFormsFrameworkApp/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WinFormsFrameworkApp/App.config -------------------------------------------------------------------------------- /projects/multi-target/WinFormsFrameworkApp/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WinFormsFrameworkApp/Form1.cs -------------------------------------------------------------------------------- /projects/multi-target/WinFormsFrameworkApp/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WinFormsFrameworkApp/Form1.resx -------------------------------------------------------------------------------- /projects/multi-target/WinFormsFrameworkApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WinFormsFrameworkApp/Program.cs -------------------------------------------------------------------------------- /projects/multi-target/WinFormsNetApp/FormBitmap.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WinFormsNetApp/FormBitmap.Designer.cs -------------------------------------------------------------------------------- /projects/multi-target/WinFormsNetApp/FormBitmap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WinFormsNetApp/FormBitmap.cs -------------------------------------------------------------------------------- /projects/multi-target/WinFormsNetApp/FormBitmap.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WinFormsNetApp/FormBitmap.resx -------------------------------------------------------------------------------- /projects/multi-target/WinFormsNetApp/FormGL.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WinFormsNetApp/FormGL.Designer.cs -------------------------------------------------------------------------------- /projects/multi-target/WinFormsNetApp/FormGL.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WinFormsNetApp/FormGL.cs -------------------------------------------------------------------------------- /projects/multi-target/WinFormsNetApp/FormGL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WinFormsNetApp/FormGL.resx -------------------------------------------------------------------------------- /projects/multi-target/WinFormsNetApp/MenuForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WinFormsNetApp/MenuForm.Designer.cs -------------------------------------------------------------------------------- /projects/multi-target/WinFormsNetApp/MenuForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WinFormsNetApp/MenuForm.cs -------------------------------------------------------------------------------- /projects/multi-target/WinFormsNetApp/MenuForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WinFormsNetApp/MenuForm.resx -------------------------------------------------------------------------------- /projects/multi-target/WinFormsNetApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WinFormsNetApp/Program.cs -------------------------------------------------------------------------------- /projects/multi-target/WinFormsNetApp/WinFormsNetApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WinFormsNetApp/WinFormsNetApp.csproj -------------------------------------------------------------------------------- /projects/multi-target/WpfApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WpfApp/App.xaml -------------------------------------------------------------------------------- /projects/multi-target/WpfApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WpfApp/App.xaml.cs -------------------------------------------------------------------------------- /projects/multi-target/WpfApp/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WpfApp/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/multi-target/WpfApp/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WpfApp/MainWindow.xaml -------------------------------------------------------------------------------- /projects/multi-target/WpfApp/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WpfApp/MainWindow.xaml.cs -------------------------------------------------------------------------------- /projects/multi-target/WpfApp/WpfApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/WpfApp/WpfApp.csproj -------------------------------------------------------------------------------- /projects/multi-target/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/readme.md -------------------------------------------------------------------------------- /projects/multi-target/screenshot-maui.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/screenshot-maui.gif -------------------------------------------------------------------------------- /projects/multi-target/screenshot-winforms.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/screenshot-winforms.gif -------------------------------------------------------------------------------- /projects/multi-target/screenshot-wpf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/multi-target/screenshot-wpf.gif -------------------------------------------------------------------------------- /projects/plotting/interactive-data-display/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/plotting/interactive-data-display/App.xaml -------------------------------------------------------------------------------- /projects/plotting/interactive-data-display/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/plotting/interactive-data-display/App.xaml.cs -------------------------------------------------------------------------------- /projects/plotting/interactive-data-display/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/plotting/interactive-data-display/AssemblyInfo.cs -------------------------------------------------------------------------------- /projects/plotting/interactive-data-display/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/plotting/interactive-data-display/MainWindow.xaml -------------------------------------------------------------------------------- /projects/rotated-rectangle-intersection/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/rotated-rectangle-intersection/Form1.Designer.cs -------------------------------------------------------------------------------- /projects/rotated-rectangle-intersection/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/rotated-rectangle-intersection/Form1.cs -------------------------------------------------------------------------------- /projects/rotated-rectangle-intersection/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/rotated-rectangle-intersection/Form1.resx -------------------------------------------------------------------------------- /projects/rotated-rectangle-intersection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/rotated-rectangle-intersection/Program.cs -------------------------------------------------------------------------------- /projects/sandbox/ConsoleMauiGraphics/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/sandbox/ConsoleMauiGraphics/Program.cs -------------------------------------------------------------------------------- /projects/skiasharp-quickstart/SkiaSharpQuickstart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp-quickstart/SkiaSharpQuickstart.sln -------------------------------------------------------------------------------- /projects/skiasharp/drawtext-rectangle/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/drawtext-rectangle/Form1.Designer.cs -------------------------------------------------------------------------------- /projects/skiasharp/drawtext-rectangle/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/drawtext-rectangle/Form1.cs -------------------------------------------------------------------------------- /projects/skiasharp/drawtext-rectangle/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/drawtext-rectangle/Form1.resx -------------------------------------------------------------------------------- /projects/skiasharp/drawtext-rectangle/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/drawtext-rectangle/Program.cs -------------------------------------------------------------------------------- /projects/skiasharp/drawtext-rectangle/SampleData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/drawtext-rectangle/SampleData.cs -------------------------------------------------------------------------------- /projects/skiasharp/drawtext-rectangle/skiasharp-wrap.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/drawtext-rectangle/skiasharp-wrap.csproj -------------------------------------------------------------------------------- /projects/skiasharp/drawtext-rectangle/skiasharp-wrap.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/drawtext-rectangle/skiasharp-wrap.sln -------------------------------------------------------------------------------- /projects/skiasharp/skiasharp-text/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/skiasharp-text/Program.cs -------------------------------------------------------------------------------- /projects/skiasharp/skiasharp-text/skiasharp-text.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/skiasharp-text/skiasharp-text.csproj -------------------------------------------------------------------------------- /projects/skiasharp/video/GraphicsToVideo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/video/GraphicsToVideo.sln -------------------------------------------------------------------------------- /projects/skiasharp/video/GraphicsToVideo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/video/GraphicsToVideo/Program.cs -------------------------------------------------------------------------------- /projects/skiasharp/video/GraphicsToVideo/SKBitmapFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/video/GraphicsToVideo/SKBitmapFrame.cs -------------------------------------------------------------------------------- /projects/skiasharp/video/VideoMaker/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/video/VideoMaker/Form1.Designer.cs -------------------------------------------------------------------------------- /projects/skiasharp/video/VideoMaker/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/video/VideoMaker/Form1.cs -------------------------------------------------------------------------------- /projects/skiasharp/video/VideoMaker/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/video/VideoMaker/Form1.resx -------------------------------------------------------------------------------- /projects/skiasharp/video/VideoMaker/GraphicsModels/Ball.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/video/VideoMaker/GraphicsModels/Ball.cs -------------------------------------------------------------------------------- /projects/skiasharp/video/VideoMaker/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/video/VideoMaker/Program.cs -------------------------------------------------------------------------------- /projects/skiasharp/video/VideoMaker/SKBitmapFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/video/VideoMaker/SKBitmapFrame.cs -------------------------------------------------------------------------------- /projects/skiasharp/video/VideoMaker/VideoFileMaker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/video/VideoMaker/VideoFileMaker.cs -------------------------------------------------------------------------------- /projects/skiasharp/video/VideoMaker/VideoMaker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/skiasharp/video/VideoMaker/VideoMaker.csproj -------------------------------------------------------------------------------- /projects/spline-interpolation/Interpolation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/spline-interpolation/Interpolation.sln -------------------------------------------------------------------------------- /projects/spline-interpolation/Interpolation/Cubic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/spline-interpolation/Interpolation/Cubic.cs -------------------------------------------------------------------------------- /projects/spline-interpolation/InterpolationViewer/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/spline-interpolation/InterpolationViewer/Form1.cs -------------------------------------------------------------------------------- /projects/spline-interpolation/interpolation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/spline-interpolation/interpolation.png -------------------------------------------------------------------------------- /projects/spline-interpolation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/spline-interpolation/readme.md -------------------------------------------------------------------------------- /projects/spline-interpolation/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/spline-interpolation/screenshot.gif -------------------------------------------------------------------------------- /projects/spline-interpolation/screenshot.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/spline-interpolation/screenshot.mp4 -------------------------------------------------------------------------------- /projects/system-drawing/quickstart-console/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/system-drawing/quickstart-console/Program.cs -------------------------------------------------------------------------------- /projects/system-drawing/video/GraphicsToVideo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/system-drawing/video/GraphicsToVideo.sln -------------------------------------------------------------------------------- /projects/system-drawing/video/GraphicsToVideo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/projects/system-drawing/video/GraphicsToVideo/Program.cs -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/build.sh -------------------------------------------------------------------------------- /website/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/config.toml -------------------------------------------------------------------------------- /website/content/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/404.md -------------------------------------------------------------------------------- /website/content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/_index.md -------------------------------------------------------------------------------- /website/content/audio/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Audio Analysis and Visualization 3 | --- -------------------------------------------------------------------------------- /website/content/audio/fft/fft-csharp-audio-microphone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/audio/fft/fft-csharp-audio-microphone.gif -------------------------------------------------------------------------------- /website/content/audio/fft/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/audio/fft/index.md -------------------------------------------------------------------------------- /website/content/audio/level/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/audio/level/index.md -------------------------------------------------------------------------------- /website/content/audio/level/winforms-audio-level-meter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/audio/level/winforms-audio-level-meter.gif -------------------------------------------------------------------------------- /website/content/audio/naudio/console-audio-level-meter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/audio/naudio/console-audio-level-meter.gif -------------------------------------------------------------------------------- /website/content/audio/naudio/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/audio/naudio/index.md -------------------------------------------------------------------------------- /website/content/dev/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Developer Test Pages" 3 | --- -------------------------------------------------------------------------------- /website/content/dev/changelog/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/dev/changelog/index.md -------------------------------------------------------------------------------- /website/content/dev/headings/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/dev/headings/index.md -------------------------------------------------------------------------------- /website/content/dev/ljpcalc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/dev/ljpcalc/index.md -------------------------------------------------------------------------------- /website/content/dev/ljpcalc/ljp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/dev/ljpcalc/ljp.png -------------------------------------------------------------------------------- /website/content/dev/pyabf/action-potentials-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/dev/pyabf/action-potentials-small.png -------------------------------------------------------------------------------- /website/content/dev/pyabf/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/dev/pyabf/index.md -------------------------------------------------------------------------------- /website/content/dev/pyabf/pyabfv2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/dev/pyabf/pyabfv2.png -------------------------------------------------------------------------------- /website/content/maui.graphics/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Microsoft.Maui.Graphics 3 | --- -------------------------------------------------------------------------------- /website/content/maui.graphics/quickstart-console/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/maui.graphics/quickstart-console/index.md -------------------------------------------------------------------------------- /website/content/maui.graphics/quickstart-maui/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/maui.graphics/quickstart-maui/index.md -------------------------------------------------------------------------------- /website/content/maui.graphics/quickstart-winforms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/maui.graphics/quickstart-winforms/index.md -------------------------------------------------------------------------------- /website/content/maui.graphics/quickstart-wpf/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/maui.graphics/quickstart-wpf/index.md -------------------------------------------------------------------------------- /website/content/platforms/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Additional Graphics Platforms 3 | --- -------------------------------------------------------------------------------- /website/content/platforms/compare/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/platforms/compare/index.md -------------------------------------------------------------------------------- /website/content/platforms/compare/system.drawing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/platforms/compare/system.drawing.png -------------------------------------------------------------------------------- /website/content/platforms/imagesharp/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/platforms/imagesharp/index.md -------------------------------------------------------------------------------- /website/content/platforms/wpf-primitives/drawingvisual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/platforms/wpf-primitives/drawingvisual.png -------------------------------------------------------------------------------- /website/content/platforms/wpf-primitives/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/platforms/wpf-primitives/index.md -------------------------------------------------------------------------------- /website/content/plotting-commercial/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Commercial Plotting Libraries 3 | --- -------------------------------------------------------------------------------- /website/content/plotting-commercial/lightningchart/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/plotting-commercial/lightningchart/index.md -------------------------------------------------------------------------------- /website/content/plotting-commercial/scichart/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/plotting-commercial/scichart/index.md -------------------------------------------------------------------------------- /website/content/plotting-free/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | Title: Free Plotting Libraries 3 | --- -------------------------------------------------------------------------------- /website/content/plotting-free/livecharts/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/plotting-free/livecharts/index.md -------------------------------------------------------------------------------- /website/content/plotting-free/microsoft-charting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/plotting-free/microsoft-charting/index.md -------------------------------------------------------------------------------- /website/content/plotting-free/nplot/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/plotting-free/nplot/index.md -------------------------------------------------------------------------------- /website/content/plotting-free/nplot/nplot-quickstart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/plotting-free/nplot/nplot-quickstart.gif -------------------------------------------------------------------------------- /website/content/plotting-free/oxyplot/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/plotting-free/oxyplot/index.md -------------------------------------------------------------------------------- /website/content/plotting-free/scottplot/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/plotting-free/scottplot/index.md -------------------------------------------------------------------------------- /website/content/plotting-free/zedgraph/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/plotting-free/zedgraph/index.md -------------------------------------------------------------------------------- /website/content/simulations/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Simulations 3 | --- -------------------------------------------------------------------------------- /website/content/simulations/boids/Boids-Csharp-OpenGL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/simulations/boids/Boids-Csharp-OpenGL.png -------------------------------------------------------------------------------- /website/content/simulations/boids/boids.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/simulations/boids/boids.zip -------------------------------------------------------------------------------- /website/content/simulations/boids/csharp-boids.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/simulations/boids/csharp-boids.gif -------------------------------------------------------------------------------- /website/content/simulations/boids/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/simulations/boids/index.md -------------------------------------------------------------------------------- /website/content/simulations/life/game-of-life-csharp.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/simulations/life/game-of-life-csharp.gif -------------------------------------------------------------------------------- /website/content/simulations/life/glider-gun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/simulations/life/glider-gun.png -------------------------------------------------------------------------------- /website/content/simulations/life/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/simulations/life/index.md -------------------------------------------------------------------------------- /website/content/simulations/mystify/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/simulations/mystify/index.md -------------------------------------------------------------------------------- /website/content/simulations/mystify/mystify.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/simulations/mystify/mystify.gif -------------------------------------------------------------------------------- /website/content/skiasharp/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: SkiaSharp 3 | --- -------------------------------------------------------------------------------- /website/content/skiasharp/array-to-image/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/skiasharp/array-to-image/index.md -------------------------------------------------------------------------------- /website/content/skiasharp/array-to-image/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/skiasharp/array-to-image/output.png -------------------------------------------------------------------------------- /website/content/skiasharp/drawtext-rectangle/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/skiasharp/drawtext-rectangle/index.md -------------------------------------------------------------------------------- /website/content/skiasharp/quickstart-console/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/skiasharp/quickstart-console/index.md -------------------------------------------------------------------------------- /website/content/skiasharp/quickstart-console/quickstart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/skiasharp/quickstart-console/quickstart.jpg -------------------------------------------------------------------------------- /website/content/skiasharp/skiasharp-opengl/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/skiasharp/skiasharp-opengl/index.md -------------------------------------------------------------------------------- /website/content/skiasharp/skiasharp/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/skiasharp/skiasharp/index.md -------------------------------------------------------------------------------- /website/content/skiasharp/text/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/skiasharp/text/index.md -------------------------------------------------------------------------------- /website/content/skiasharp/text/measure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/skiasharp/text/measure.png -------------------------------------------------------------------------------- /website/content/skiasharp/text/options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/skiasharp/text/options.png -------------------------------------------------------------------------------- /website/content/skiasharp/text/quickstart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/skiasharp/text/quickstart.png -------------------------------------------------------------------------------- /website/content/skiasharp/text/rotation-artifact-fixed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/skiasharp/text/rotation-artifact-fixed.png -------------------------------------------------------------------------------- /website/content/skiasharp/text/rotation-artifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/skiasharp/text/rotation-artifact.png -------------------------------------------------------------------------------- /website/content/skiasharp/text/rotation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/skiasharp/text/rotation.png -------------------------------------------------------------------------------- /website/content/skiasharp/video/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/skiasharp/video/index.md -------------------------------------------------------------------------------- /website/content/skiasharp/video/output.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/skiasharp/video/output.webm -------------------------------------------------------------------------------- /website/content/system.drawing/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: System.Drawing 3 | --- -------------------------------------------------------------------------------- /website/content/system.drawing/animate-starfield/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/system.drawing/animate-starfield/index.md -------------------------------------------------------------------------------- /website/content/system.drawing/animate-winforms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/system.drawing/animate-winforms/index.md -------------------------------------------------------------------------------- /website/content/system.drawing/animate-wpf/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/system.drawing/animate-wpf/index.md -------------------------------------------------------------------------------- /website/content/system.drawing/array-to-image/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/system.drawing/array-to-image/index.md -------------------------------------------------------------------------------- /website/content/system.drawing/array-to-image/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/system.drawing/array-to-image/output.png -------------------------------------------------------------------------------- /website/content/system.drawing/benchmark/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/system.drawing/benchmark/index.md -------------------------------------------------------------------------------- /website/content/system.drawing/cross-platform/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/system.drawing/cross-platform/index.md -------------------------------------------------------------------------------- /website/content/system.drawing/double-buffer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/system.drawing/double-buffer/index.md -------------------------------------------------------------------------------- /website/content/system.drawing/quickstart-console/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/system.drawing/quickstart-console/index.md -------------------------------------------------------------------------------- /website/content/system.drawing/quickstart-winforms/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/system.drawing/quickstart-winforms/index.md -------------------------------------------------------------------------------- /website/content/system.drawing/quickstart-wpf/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/system.drawing/quickstart-wpf/index.md -------------------------------------------------------------------------------- /website/content/system.drawing/threading/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/system.drawing/threading/index.md -------------------------------------------------------------------------------- /website/content/system.drawing/video/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/system.drawing/video/index.md -------------------------------------------------------------------------------- /website/content/system.drawing/video/output.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/content/system.drawing/video/output.webm -------------------------------------------------------------------------------- /website/dev/animation/constellation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/dev/animation/constellation.js -------------------------------------------------------------------------------- /website/dev/banner/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/dev/banner/banner.jpg -------------------------------------------------------------------------------- /website/dev/banner/banner.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/dev/banner/banner.psd -------------------------------------------------------------------------------- /website/dev/icon/favicon.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/dev/icon/favicon.bat -------------------------------------------------------------------------------- /website/dev/icon/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/dev/icon/favicon.svg -------------------------------------------------------------------------------- /website/layouts/_default/baseof.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/layouts/_default/baseof.html -------------------------------------------------------------------------------- /website/layouts/_default/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/layouts/_default/home.html -------------------------------------------------------------------------------- /website/layouts/_default/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/layouts/_default/section.html -------------------------------------------------------------------------------- /website/layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/layouts/_default/single.html -------------------------------------------------------------------------------- /website/layouts/partials/section-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/layouts/partials/section-links.html -------------------------------------------------------------------------------- /website/layouts/shortcodes/toc.html: -------------------------------------------------------------------------------- 1 | {{ .Page.TableOfContents }} -------------------------------------------------------------------------------- /website/serve.sh: -------------------------------------------------------------------------------- 1 | hugo serve -------------------------------------------------------------------------------- /website/static/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/static/.htaccess -------------------------------------------------------------------------------- /website/static/css/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/static/css/github.css -------------------------------------------------------------------------------- /website/static/css/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/static/css/page.css -------------------------------------------------------------------------------- /website/static/favicon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/static/favicon-180.png -------------------------------------------------------------------------------- /website/static/favicon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/static/favicon-192.png -------------------------------------------------------------------------------- /website/static/favicon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/static/favicon-512.png -------------------------------------------------------------------------------- /website/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/static/favicon.ico -------------------------------------------------------------------------------- /website/static/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/static/favicon.svg -------------------------------------------------------------------------------- /website/static/feed/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/static/feed/.htaccess -------------------------------------------------------------------------------- /website/static/feed/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/static/feed/index.html -------------------------------------------------------------------------------- /website/static/img/banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/static/img/banner.jpg -------------------------------------------------------------------------------- /website/static/img/highlights/boids.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/static/img/highlights/boids.gif -------------------------------------------------------------------------------- /website/static/img/highlights/life.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/static/img/highlights/life.gif -------------------------------------------------------------------------------- /website/static/img/highlights/mystify.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/static/img/highlights/mystify.gif -------------------------------------------------------------------------------- /website/static/manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swharden/Csharp-Data-Visualization/HEAD/website/static/manifest.webmanifest --------------------------------------------------------------------------------