├── .gitignore
├── Bash
├── Arithmetic
│ └── Arithmetic.sh
├── Basics
│ ├── Compare.sh
│ ├── Concatenate.sh
│ ├── DisplayCommands.sh
│ ├── ForEachLoop.sh
│ ├── ForLoop.sh
│ ├── If.sh
│ ├── ParameterList.sh
│ ├── Parameters.sh
│ ├── Parse.sh
│ ├── Quotes.sh
│ ├── UserInput.sh
│ ├── Variables.sh
│ └── ZeroPad.sh
├── Flicker
│ ├── Flicker.sh
│ ├── anim0.jpg
│ ├── anim1.jpg
│ ├── anim2.jpg
│ ├── anim3.jpg
│ └── animated.gif
├── Sort
│ ├── input.txt
│ ├── medium
│ │ ├── input.txt
│ │ └── output.txt
│ ├── output.txt
│ └── simple
│ │ ├── input.txt
│ │ ├── output.txt
│ │ └── sort.sh
├── Timer.sh
├── WhitespaceRemoval
│ ├── orig.txt
│ ├── output.txt
│ ├── remove.sh
│ └── test.txt
└── test.txt
├── CMake
├── AddTargetDefinitions
│ ├── AddTargetDefinitions.cxx
│ └── CMakeLists.txt
├── Boost
│ ├── BoostProgram.cpp
│ └── CMakeLists.txt
├── CompilerFlags
│ ├── CMakeLists.txt
│ ├── CompilerFlags.cxx
│ └── build
│ │ ├── CMakeCache.txt
│ │ ├── CMakeFiles
│ │ ├── CMakeCCompiler.cmake
│ │ ├── CMakeCXXCompiler.cmake
│ │ ├── CMakeDetermineCompilerABI_C.bin
│ │ ├── CMakeDetermineCompilerABI_CXX.bin
│ │ ├── CMakeDirectoryInformation.cmake
│ │ ├── CMakeSystem.cmake
│ │ ├── CompilerFlags.dir
│ │ │ ├── CXX.includecache
│ │ │ ├── CompilerFlags.cxx.o
│ │ │ ├── DependInfo.cmake
│ │ │ ├── build.make
│ │ │ ├── cmake_clean.cmake
│ │ │ ├── depend.internal
│ │ │ ├── depend.make
│ │ │ ├── flags.make
│ │ │ ├── link.txt
│ │ │ └── progress.make
│ │ ├── CompilerIdC
│ │ │ └── CMakeCCompilerId.c
│ │ ├── CompilerIdCXX
│ │ │ └── CMakeCXXCompilerId.cpp
│ │ ├── Makefile.cmake
│ │ ├── Makefile2
│ │ ├── TargetDirectories.txt
│ │ ├── cmake.check_cache
│ │ └── progress.marks
│ │ ├── CompilerFlags
│ │ ├── Makefile
│ │ └── cmake_install.cmake
├── FindPackageHandleStandardArgs
│ ├── CMakeLists.txt
│ ├── FindFFTW.cmake
│ └── Test.cxx
├── Install
│ ├── CMakeLists.txt
│ └── InstallTest.cxx
├── Library
│ ├── CMakeLists.txt
│ └── TestLibrary.cxx
├── QtSubdirectory.tar.gz
├── SetTargetProperties
│ ├── CMakeLists.txt
│ └── SetTargetProperties.cxx
├── Subdirectories
│ ├── CMakeLists.txt
│ ├── Directory1
│ │ ├── CMakeLists.txt
│ │ └── Project1.cxx
│ └── Directory2
│ │ ├── CMakeLists.txt
│ │ └── Project2.cxx
├── VariableCaching
│ ├── CMakeLists.txt
│ ├── VariableCaching.cxx
│ └── build
│ │ ├── CMakeCache.txt
│ │ ├── CMakeFiles
│ │ ├── CMakeCCompiler.cmake
│ │ ├── CMakeCXXCompiler.cmake
│ │ ├── CMakeDetermineCompilerABI_C.bin
│ │ ├── CMakeDetermineCompilerABI_CXX.bin
│ │ ├── CMakeDirectoryInformation.cmake
│ │ ├── CMakeSystem.cmake
│ │ ├── CompilerIdC
│ │ │ └── CMakeCCompilerId.c
│ │ ├── CompilerIdCXX
│ │ │ └── CMakeCXXCompilerId.cpp
│ │ ├── Executable1.dir
│ │ │ ├── CXX.includecache
│ │ │ ├── DependInfo.cmake
│ │ │ ├── build.make
│ │ │ ├── cmake_clean.cmake
│ │ │ ├── depend.internal
│ │ │ ├── depend.make
│ │ │ ├── flags.make
│ │ │ ├── link.txt
│ │ │ └── progress.make
│ │ ├── Executable2.dir
│ │ │ ├── DependInfo.cmake
│ │ │ ├── build.make
│ │ │ ├── cmake_clean.cmake
│ │ │ ├── depend.make
│ │ │ ├── flags.make
│ │ │ ├── link.txt
│ │ │ └── progress.make
│ │ ├── Makefile.cmake
│ │ ├── Makefile2
│ │ ├── Progress
│ │ │ ├── 1
│ │ │ └── count.txt
│ │ ├── TargetDirectories.txt
│ │ ├── cmake.check_cache
│ │ └── progress.marks
│ │ ├── Makefile
│ │ └── cmake_install.cmake
├── Variables
│ ├── CMakeLists.txt
│ └── Variables.cxx
└── mex
│ └── mex.txt
├── CSharp
└── HelloWorld
│ ├── HelloWorld.cs
│ └── HelloWorld.exe
├── CTest
├── Coverage
│ ├── CMakeLists.txt
│ └── coverage.cpp
└── Simple
│ ├── CMakeLists.txt
│ └── simple.cpp
├── Doxygen
├── link
│ ├── Class1.h
│ ├── Doxyfile
│ ├── html
│ │ ├── Class1_8h_source.html
│ │ ├── annotated.html
│ │ ├── bc_s.png
│ │ ├── classClass1.html
│ │ ├── classes.html
│ │ ├── closed.png
│ │ ├── doxygen.css
│ │ ├── doxygen.png
│ │ ├── files.html
│ │ ├── index.html
│ │ ├── installdox
│ │ ├── jquery.js
│ │ ├── nav_f.png
│ │ ├── nav_h.png
│ │ ├── open.png
│ │ ├── search
│ │ │ ├── all_63.html
│ │ │ ├── classes_63.html
│ │ │ ├── close.png
│ │ │ ├── mag_sel.png
│ │ │ ├── nomatches.html
│ │ │ ├── search.css
│ │ │ ├── search.js
│ │ │ ├── search_l.png
│ │ │ ├── search_m.png
│ │ │ └── search_r.png
│ │ ├── tab_a.png
│ │ ├── tab_b.png
│ │ ├── tab_h.png
│ │ ├── tab_s.png
│ │ └── tabs.css
│ ├── latex
│ │ ├── Makefile
│ │ ├── annotated.tex
│ │ ├── classClass1.tex
│ │ ├── classMyClass.tex
│ │ ├── classMyClass2.tex
│ │ └── refman.tex
│ └── readme.txt
└── readme.txt
├── ImageMagick
├── ApproximateSizeImages
│ └── ApproximateSizeImages
├── Borders
│ ├── 1.jpg
│ ├── Borders.sh
│ └── border.jpg
├── ConcatenateImages
│ ├── 001.jpg
│ ├── 002.jpg
│ ├── 003.jpg
│ ├── 004.jpg
│ ├── 005.jpg
│ ├── ConcatenateImages.sh
│ ├── append.jpg
│ ├── horizontal.jpg
│ ├── nozeropad
│ │ ├── 1.jpg
│ │ ├── 2.jpg
│ │ ├── 3.jpg
│ │ ├── 4.jpg
│ │ └── 5.jpg
│ ├── test.jpg
│ └── vertical.jpg
├── DrawSquare
│ ├── DrawSquare.py
│ └── square.png
├── ImageBottomRight
│ ├── BottomRight.png
│ ├── ImageBottomRight.py
│ ├── bkgd.png
│ ├── output1.png
│ ├── output2.png
│ └── output3.png
├── MakeImagesSameSize
│ ├── 1.jpg
│ ├── 2.jpg
│ ├── 3.jpg
│ ├── 4.jpg
│ ├── 5.jpg
│ ├── MakeImagesSameSize.sh
│ └── bak
│ │ ├── 1.jpg
│ │ ├── 2.jpg
│ │ ├── 3.jpg
│ │ ├── 4.jpg
│ │ └── 5.jpg
├── OverlayImages.sh
├── PositionImages
│ ├── 1.jpg
│ ├── 2.jpg
│ ├── 3.jpg
│ ├── 4.jpg
│ ├── 5.jpg
│ ├── PositionImages.sh
│ ├── bak
│ │ ├── 1.jpg
│ │ ├── 2.jpg
│ │ ├── 3.jpg
│ │ ├── 4.jpg
│ │ └── 5.jpg
│ └── test.jpg
├── Text
│ ├── 1.jpg
│ ├── Text.py
│ ├── orig.jpg
│ ├── output.jpg
│ ├── test.png
│ └── text.jpg
└── VectorDrawing
│ ├── VectorDrawing.py
│ ├── arc.pdf
│ ├── arc.png
│ ├── arc.svg
│ ├── car.jpg
│ ├── output.pdf
│ ├── output.png
│ ├── output.svg
│ └── output2.pdf
├── Java
├── HelloWorldApp.class
├── VTK
│ ├── cone.java
│ ├── sphere.class
│ └── sphere.java
└── helloworld.java
├── Latex
├── Algorithm
│ ├── Algorithm.aux
│ ├── Algorithm.log
│ ├── Algorithm.pdf
│ ├── Algorithm.tex
│ └── Algorithm.tex.backup
├── AnimatedImages
│ ├── 1.jpg
│ ├── 2.jpg
│ ├── 3.jpg
│ ├── 4.jpg
│ ├── 5.jpg
│ ├── AnimatedImages.aux
│ ├── AnimatedImages.log
│ ├── AnimatedImages.nav
│ ├── AnimatedImages.out
│ ├── AnimatedImages.pdf
│ ├── AnimatedImages.snm
│ ├── AnimatedImages.tex
│ ├── AnimatedImages.toc
│ ├── iter000.jpg
│ ├── iter001.jpg
│ ├── iter002.jpg
│ ├── iter003.jpg
│ ├── iter004.jpg
│ ├── iter005.jpg
│ ├── iter006.jpg
│ ├── iter007.jpg
│ ├── small1.jpg
│ ├── small2.jpg
│ ├── small3.jpg
│ ├── small4.jpg
│ ├── small5.jpg
│ ├── test1.jpg
│ ├── test2.jpg
│ ├── test3.jpg
│ ├── test4.jpg
│ └── test5.jpg
├── BackgroundColor
│ ├── BackgroundColor.aux
│ ├── BackgroundColor.log
│ ├── BackgroundColor.pdf
│ ├── BackgroundColor.tex
│ ├── rpi_transparent.pdf
│ ├── rpi_white.pdf
│ ├── rpi_white.svg
│ └── rpilogo_transparent.svg
├── BeamerOverlay
│ ├── 1.png
│ ├── 2.png
│ ├── 3.png
│ ├── 4.png
│ ├── 5.png
│ ├── 6.png
│ ├── 7.png
│ ├── BeamerOverlay.aux
│ ├── BeamerOverlay.log
│ ├── BeamerOverlay.nav
│ ├── BeamerOverlay.out
│ ├── BeamerOverlay.pdf
│ ├── BeamerOverlay.snm
│ ├── BeamerOverlay.tex
│ ├── BeamerOverlay.toc
│ ├── PictureReplacement.aux
│ ├── PictureReplacement.log
│ ├── PictureReplacement.nav
│ ├── PictureReplacement.out
│ ├── PictureReplacement.pdf
│ ├── PictureReplacement.snm
│ ├── PictureReplacement.tex
│ └── PictureReplacement.toc
├── BeamerSubcaption
│ ├── BeamerSubcaption.aux
│ ├── BeamerSubcaption.log
│ ├── BeamerSubcaption.nav
│ ├── BeamerSubcaption.out
│ ├── BeamerSubcaption.pdf
│ ├── BeamerSubcaption.snm
│ ├── BeamerSubcaption.tex
│ ├── BeamerSubcaption.tex.backup
│ ├── BeamerSubcaption.toc
│ ├── BeamerSubcaption.zip
│ ├── ground_truth_2d.png
│ ├── ground_truth_3d.png
│ ├── p_err_plot_pert_test.png
│ ├── p_err_plot_pert_train.png
│ ├── perturb_test.png
│ ├── perturb_train.png
│ ├── r_3d_linear.png
│ └── r_3d_nonlinear.png
├── Beamerposter
│ ├── Columns.aux
│ ├── Columns.log
│ ├── Columns.nav
│ ├── Columns.out
│ ├── Columns.pdf
│ ├── Columns.snm
│ ├── Columns.tex
│ ├── Columns.toc
│ ├── Columns_good.aux
│ ├── Columns_good.log
│ ├── Columns_good.nav
│ ├── Columns_good.out
│ ├── Columns_good.snm
│ ├── Columns_good.tex
│ ├── Columns_good.toc
│ ├── PosterTest.aux
│ ├── PosterTest.log
│ ├── PosterTest.nav
│ ├── PosterTest.out
│ ├── PosterTest.pdf
│ ├── PosterTest.snm
│ ├── PosterTest.tex
│ ├── PosterTest.toc
│ ├── beamerposter-example
│ │ ├── beamerposter.sty
│ │ ├── beamerthemeDreuw.sty
│ │ ├── beamerthemeI6dv.sty
│ │ ├── dreuw07-interspeech.aux
│ │ ├── dreuw07-interspeech.log
│ │ ├── dreuw07-interspeech.nav
│ │ ├── dreuw07-interspeech.out
│ │ ├── dreuw07-interspeech.pdf
│ │ ├── dreuw07-interspeech.snm
│ │ ├── dreuw07-interspeech.tex
│ │ ├── dreuw07-interspeech.toc
│ │ ├── example.aux
│ │ ├── example.log
│ │ ├── example.nav
│ │ ├── example.out
│ │ ├── example.pdf
│ │ ├── example.snm
│ │ ├── example.tex
│ │ ├── example.toc
│ │ ├── keyval.tex
│ │ ├── pst-xkey.sty
│ │ ├── pst-xkey.tex
│ │ ├── rwthaachenuniversity-whitegray.eps
│ │ ├── rwthaachenuniversity-whitegray.pdf
│ │ ├── tangocolors.sty
│ │ ├── xkeyval.sty
│ │ ├── xkeyval.tex
│ │ ├── xkvesa.sty
│ │ ├── xkvesb.sty
│ │ ├── xkvesc.sty
│ │ ├── xkvex1.tex
│ │ ├── xkvex2.tex
│ │ ├── xkvex3.tex
│ │ ├── xkvex4.tex
│ │ ├── xkvltxp.sty
│ │ ├── xkvtxhdr.tex
│ │ └── xkvview.sty
│ ├── beamerthemeI6pd2.sty
│ ├── example-huge-math-with-type1cm+(2).aux
│ ├── example-huge-math-with-type1cm+(2).log
│ ├── example-huge-math-with-type1cm+(2).nav
│ ├── example-huge-math-with-type1cm+(2).out
│ ├── example-huge-math-with-type1cm+(2).pdf
│ ├── example-huge-math-with-type1cm+(2).snm
│ ├── example-huge-math-with-type1cm+(2).tex
│ ├── example-huge-math-with-type1cm+(2).toc
│ ├── missfont.log
│ └── tangocolors.sty
├── Bibtex
│ ├── Apacite
│ │ ├── Screencasts.aux
│ │ ├── Screencasts.bbl
│ │ ├── Screencasts.bib
│ │ ├── Screencasts.bib.bak
│ │ ├── Screencasts.blg
│ │ ├── Screencasts.log
│ │ ├── Screencasts.out
│ │ ├── Screencasts.pdf
│ │ ├── Screencasts.tex
│ │ └── Screencasts.tex.bak
│ ├── Test.aux
│ ├── Test.bbl
│ ├── Test.bib
│ ├── Test.blg
│ ├── Test.log
│ ├── Test.pdf
│ └── Test.tex
├── BibtexNoBib
│ ├── Test.aux
│ ├── Test.bbl
│ ├── Test.blg
│ ├── Test.log
│ ├── Test.pdf
│ ├── Test.tex
│ └── Test.tex.backup
├── Bold
│ ├── Bold.aux
│ ├── Bold.log
│ ├── Bold.pdf
│ └── Bold.tex
├── Cancel
│ ├── Cancel.aux
│ ├── Cancel.log
│ ├── Cancel.pdf
│ └── Cancel.tex
├── Cases
│ ├── Cases.aux
│ ├── Cases.log
│ ├── Cases.pdf
│ └── Cases.tex
├── ChangeEnumerateCharacters
│ ├── ChangeEnumerateCharacters.aux
│ ├── ChangeEnumerateCharacters.log
│ ├── ChangeEnumerateCharacters.pdf
│ └── ChangeEnumerateCharacters.tex
├── Choose
│ ├── Choose.aux
│ ├── Choose.log
│ ├── Choose.pdf
│ ├── Choose.tex
│ └── Choose.tex.backup
├── Columns
│ ├── Columns.aux
│ ├── Columns.log
│ ├── Columns.pdf
│ └── Columns.tex
├── Command
│ ├── Command.aux
│ ├── Command.log
│ ├── Command.pdf
│ └── Command.tex
├── Documentation
│ ├── Animate.pdf
│ ├── ColorStuff.pdf
│ ├── array.pdf
│ ├── caption.pdf
│ ├── float.pdf
│ ├── graphics.pdf
│ ├── lipsum.pdf
│ ├── multicol.pdf
│ ├── sciposter.pdf
│ ├── sectsty.pdf
│ ├── subfig.pdf
│ ├── textpos.pdf
│ └── titlesec.pdf
├── ExtractEquations
│ ├── ExtractEquations-crop.pdf
│ ├── ExtractEquations.pdf
│ └── ExtractEquations.tex
├── FakeFigure
│ ├── FakeFigure.aux
│ ├── FakeFigure.log
│ ├── FakeFigure.pdf
│ └── FakeFigure.tex
├── Figure
│ ├── Figure.aux
│ ├── Figure.log
│ ├── Figure.pdf
│ ├── Figure.tex
│ └── Soldier.jpg
├── FillerText
│ ├── FillerText.aux
│ ├── FillerText.log
│ ├── FillerText.pdf
│ └── FillerText.tex
├── Footnote
│ ├── Footnote.aux
│ ├── Footnote.log
│ ├── Footnote.pdf
│ └── Footnote.tex
├── FrameCounter
│ ├── FrameCounter.aux
│ ├── FrameCounter.log
│ ├── FrameCounter.nav
│ ├── FrameCounter.out
│ ├── FrameCounter.pdf
│ ├── FrameCounter.snm
│ ├── FrameCounter.tex
│ └── FrameCounter.toc
├── Graphics
│ ├── Graphics.aux
│ ├── Graphics.log
│ ├── Graphics.pdf
│ ├── Graphics.tex
│ ├── Graphics.tex.backup
│ ├── ImageAndCaption.aux
│ ├── ImageAndCaption.log
│ ├── ImageAndCaption.pdf
│ ├── ImageAndCaption.tex
│ ├── Images
│ │ ├── 1.png
│ │ ├── 2.png
│ │ ├── 3.png
│ │ └── 4.png
│ ├── ProbFunction.pdf
│ ├── SideBySide.aux
│ ├── SideBySide.log
│ ├── SideBySide.pdf
│ ├── SideBySide.tex
│ ├── SingleImage.aux
│ ├── SingleImage.log
│ ├── SingleImage.pdf
│ ├── SingleImage.tex
│ ├── TableWithFigures.aux
│ ├── TableWithFigures.log
│ ├── TableWithFigures.pdf
│ └── TableWithFigures.tex
├── Indentation
│ ├── IdentationEnumeration.aux
│ ├── IdentationEnumeration.log
│ ├── IdentationEnumeration.pdf
│ ├── Indentation.aux
│ ├── Indentation.log
│ ├── Indentation.pdf
│ ├── Indentation.tex
│ ├── IndentationEnumeration.aux
│ ├── IndentationEnumeration.log
│ ├── IndentationEnumeration.pdf
│ └── IndentationEnumeration.tex
├── Itemize
│ ├── Itemize.aux
│ ├── Itemize.log
│ ├── Itemize.pdf
│ └── Itemize.tex
├── Margins
│ └── Margins.tex
├── Matrix
│ ├── Matrix.aux
│ ├── Matrix.log
│ ├── Matrix.pdf
│ └── Matrix.tex
├── Minipage
│ ├── Minipage.aux
│ ├── Minipage.log
│ ├── Minipage.pdf
│ ├── Minipage.tex
│ └── Minipage.tex.backup
├── OffsetImage
│ ├── Scanner.png
│ ├── Test.aux
│ ├── Test.log
│ ├── Test.nav
│ ├── Test.out
│ ├── Test.pdf
│ ├── Test.snm
│ ├── Test.tex
│ ├── Test.tex.backup
│ └── Test.toc
├── Quotes
│ ├── Quotes.aux
│ ├── Quotes.log
│ ├── Quotes.pdf
│ └── Quotes.tex
├── ReferenceASection
│ ├── ReferenceASection.aux
│ ├── ReferenceASection.log
│ ├── ReferenceASection.pdf
│ └── ReferenceASection.tex
├── References
│ ├── References.aux
│ ├── References.log
│ ├── References.pdf
│ ├── References.tex
│ ├── References2.aux
│ ├── References2.bbl
│ ├── References2.blg
│ ├── References2.log
│ ├── References2.pdf
│ ├── References2.tex
│ └── shortbib.bib
├── Slides
│ ├── Basic.aux
│ ├── Basic.log
│ ├── Basic.nav
│ ├── Basic.out
│ ├── Basic.pdf
│ ├── Basic.snm
│ ├── Basic.tex
│ ├── Basic.toc
│ ├── SideOutline.aux
│ ├── SideOutline.log
│ ├── SideOutline.nav
│ ├── SideOutline.out
│ ├── SideOutline.pdf
│ ├── SideOutline.snm
│ ├── SideOutline.tex
│ └── SideOutline.toc
├── Spacing
│ ├── Spacing.aux
│ ├── Spacing.log
│ ├── Spacing.pdf
│ └── Spacing.tex
├── Subfig
│ ├── Subfig.pdf
│ └── Subfig.tex
├── Subfigure
│ ├── Subfigure.aux
│ ├── Subfigure.log
│ ├── Subfigure.pdf
│ ├── Subfigure.tex
│ └── SubfigureCaptionWrapping
│ │ ├── SubfigureCaptionWrapping.pdf
│ │ └── SubfigureCaptionWrapping.tex
├── Table
│ ├── Table.aux
│ ├── Table.log
│ ├── Table.pdf
│ ├── Table.tex
│ ├── Table.tex.bak
│ ├── wrapped.aux
│ ├── wrapped.log
│ ├── wrapped.pdf
│ └── wrapped.tex
├── TableOfContents
│ ├── TableOfContents.aux
│ ├── TableOfContents.log
│ ├── TableOfContents.pdf
│ ├── TableOfContents.tex
│ └── TableOfContents.toc
├── TableOfContentsShortTitle
│ ├── TableOfContentsShortTitle.aux
│ ├── TableOfContentsShortTitle.log
│ ├── TableOfContentsShortTitle.pdf
│ ├── TableOfContentsShortTitle.tex
│ └── TableOfContentsShortTitle.toc
├── Test
│ ├── HSV.png
│ ├── Scanner.png
│ ├── Test.aux
│ ├── Test.log
│ ├── Test.nav
│ ├── Test.out
│ ├── Test.pdf
│ ├── Test.snm
│ ├── Test.tex
│ ├── Test.tex.backup
│ ├── Test.toc
│ ├── Test_Poster.aux
│ ├── Test_Poster.log
│ ├── Test_Poster.pdf
│ ├── Test_Poster.tex
│ ├── Test_Poster.tex.backup
│ └── rpi.png
├── TextColor
│ ├── TextColor.aux
│ ├── TextColor.log
│ ├── TextColor.pdf
│ └── TextColor.tex
├── Title
│ ├── ProbFunction.pdf
│ ├── Title.aux
│ ├── Title.log
│ ├── Title.pdf
│ └── Title.tex
├── TitlePage
│ ├── TitlePage.aux
│ ├── TitlePage.log
│ ├── TitlePage.pdf
│ ├── TitlePage.tex
│ └── TitlePage.tex.backup
├── Titlepic
│ ├── Titlepic.aux
│ ├── Titlepic.log
│ ├── Titlepic.pdf
│ ├── Titlepic.tex
│ └── Titlepic.tex.backup
├── Tutorials
│ ├── latex_basics.pdf
│ ├── latex_commands.pdf
│ └── latex_notsoshort.pdf
├── URL
│ ├── URL.aux
│ ├── URL.log
│ ├── URL.pdf
│ └── URL.tex
├── Variables
│ ├── Variables.aux
│ ├── Variables.log
│ ├── Variables.pdf
│ └── Variables.tex
├── Videos
│ ├── Circle-m-increase3.mp4
│ ├── Videos.aux
│ ├── Videos.log
│ ├── Videos.nav
│ ├── Videos.out
│ ├── Videos.pdf
│ ├── Videos.snm
│ ├── Videos.tex
│ ├── Videos.toc
│ └── test.flv
├── WrapFig
│ ├── WrapFig.aux
│ ├── WrapFig.log
│ ├── WrapFig.pdf
│ ├── WrapFig.tex
│ └── WrapFig.tex.backup
└── tabularx
│ ├── tabularx.aux
│ ├── tabularx.log
│ ├── tabularx.pdf
│ ├── tabularx.tex
│ └── tabularx.tex.backup
├── Matlab
├── PassFunctionPointer
│ ├── DoSomething.m
│ ├── demo.m
│ └── f.m
└── ransac line
│ ├── .svn
│ ├── entries
│ ├── format
│ ├── prop-base
│ │ ├── points.mat.svn-base
│ │ └── ransac.tar.gz.svn-base
│ └── text-base
│ │ ├── ABC2mb.m.svn-base
│ │ ├── DistancePointToLine.m.svn-base
│ │ ├── FindLine.m.svn-base
│ │ ├── createLine.m.svn-base
│ │ ├── drawLine.m.svn-base
│ │ ├── intersectLines.m.svn-base
│ │ ├── mb2ABC.m.svn-base
│ │ ├── points.mat.svn-base
│ │ ├── ransac.m.svn-base
│ │ ├── ransac.tar.gz.svn-base
│ │ └── vectarrow.m.svn-base
│ ├── ABC2mb.m
│ ├── DistancePointToLine.m
│ ├── FindLine.m
│ ├── createLine.m
│ ├── drawLine.m
│ ├── intersectLines.m
│ ├── mb2ABC.m
│ ├── points.mat
│ ├── ransac.m
│ ├── ransac.tar.gz
│ └── vectarrow.m
├── Other
├── F00011 Print a Text File
│ ├── AssemblyInfo.vb
│ ├── DemoForm.resx
│ ├── DemoForm.vb
│ ├── F00011 Print a Text File.sln
│ ├── F00011 Print a Text File.suo
│ ├── F00011 Print a Text File.vbproj
│ ├── F00011 Print a Text File.vbproj.user
│ └── obj
│ │ └── Debug
│ │ ├── F00011 Print a Text File.exe
│ │ ├── F00011 Print a Text File.pdb
│ │ └── Open_From_Document.DemoForm.resources
├── ScreenSnapshot
│ ├── new
│ │ ├── good
│ │ │ ├── main.cpp
│ │ │ ├── screenshot.cpp
│ │ │ └── screenshot.h
│ │ ├── main.cpp
│ │ ├── old
│ │ │ ├── screenshot.cpp
│ │ │ ├── screenshot.h
│ │ │ └── snapshot.cpp.bak
│ │ ├── rubber
│ │ ├── rubber.cpp
│ │ ├── ss
│ │ └── test.png
│ ├── rubber.cpp
│ └── ss
├── Visual Studio Projects1
│ ├── Brokered Sales Markup
│ │ ├── AssemblyInfo.vb
│ │ ├── Brokered Sales Markup.sln
│ │ ├── Brokered Sales Markup.suo
│ │ ├── Brokered Sales Markup.vbproj
│ │ ├── Brokered Sales Markup.vbproj.user
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ └── obj
│ │ │ └── Debug
│ │ │ ├── Brokered Sales Markup.exe
│ │ │ ├── Brokered Sales Markup.pdb
│ │ │ └── Brokered_Sales_Markup.Form1.resources
│ ├── EarTrainingSetup
│ │ ├── EarTrainingSetup.sln
│ │ ├── EarTrainingSetup.suo
│ │ └── EarTrainingSetup.vdproj
│ ├── VSMacros
│ │ └── Samples
│ │ │ └── Samples.vsmacros
│ ├── VSMacros71
│ │ └── Samples
│ │ │ └── Samples.vsmacros
│ ├── WindowsApplication1
│ │ └── WindowsApplication1.vbproj
│ ├── WindowsApplication2
│ │ └── WindowsApplication2.vbproj
│ ├── customer
│ │ ├── Debug
│ │ │ ├── BuildLog.htm
│ │ │ ├── vc70.idb
│ │ │ └── vc70.pdb
│ │ ├── customer.cpp
│ │ ├── customer.h
│ │ ├── customer.ncb
│ │ ├── customer.sln
│ │ ├── customer.suo
│ │ ├── customer.vcproj
│ │ └── main.cpp
│ ├── databasetest
│ │ ├── AssemblyInfo.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── databasetest.sln
│ │ ├── databasetest.suo
│ │ ├── databasetest.vbproj
│ │ ├── databasetest.vbproj.user
│ │ └── obj
│ │ │ └── Debug
│ │ │ ├── databasetest.Form1.resources
│ │ │ ├── databasetest.exe
│ │ │ └── databasetest.pdb
│ ├── kris
│ │ ├── AssemblyInfo.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── Module1.vb
│ │ ├── kris.sln
│ │ ├── kris.suo
│ │ ├── kris.vbproj
│ │ ├── kris.vbproj.user
│ │ └── obj
│ │ │ └── Debug
│ │ │ ├── kris.Form1.resources
│ │ │ ├── kris.exe
│ │ │ └── kris.pdb
│ └── test 2.0 framework
│ │ ├── AssemblyInfo.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── test 2.0 framework.sln
│ │ ├── test 2.0 framework.suo
│ │ ├── test 2.0 framework.vbproj
│ │ └── test 2.0 framework.vbproj.user
├── fft7
│ ├── fft.cpp
│ ├── fft.h
│ ├── sinewave2.cpp
│ ├── sinewave2.h
│ └── testsine.cpp
└── screen.cpp
├── ParaView
├── CustomReader
│ ├── CMakeLists.txt
│ ├── MyReader.cxx
│ ├── MyReader.h
│ ├── MyReader.xml
│ └── MyReaderGUI.xml
└── EnableExistingFilter
│ ├── CMakeLists.txt
│ └── vtkCellDerivatives.xml
├── Perl
└── Output.pl
├── Plastimatch
├── bspline.txt
├── fixed.png
├── moving.png
├── translation.txt
└── warped.png
├── Python
├── Args.py
├── Arithmetic.py
├── Array.py
├── Basename.py
├── BigMatrix.py
├── CallFromBash
│ ├── Func.py
│ └── test.sh
├── Classes
│ ├── Pt.py
│ ├── Pt.pyc
│ ├── SphericalPt.pyc
│ └── Test.py
├── Commands.py
├── CountFiles.py
├── FileList
│ ├── FileList.py
│ ├── a
│ │ ├── a_file1.txt
│ │ ├── a_file2.txt
│ │ └── c
│ │ │ └── c_file1.txt
│ ├── b
│ │ ├── b_file1.txt
│ │ └── b_file2.txt
│ ├── parent1.txt
│ └── parent2.txt
├── ForEachLoop.py
├── ForLoop.py
├── Function.py
├── GUI
│ ├── Test.py
│ └── wx
├── GlobDemo.py
├── If.py
├── JoinPaths.py
├── MakeDirectory
│ └── MakeDirectory.py
├── Math.py
├── Matrix.py
├── Numpy.py
├── Options.py
├── PIL
│ ├── BottomRight.png
│ ├── CreateColoredImage.py
│ ├── DrawCircle.py
│ ├── DrawLine.py
│ ├── DrawRectangle.py
│ ├── LineGradient.py
│ ├── OverlayText.py
│ ├── PasteImage.py
│ ├── WidthHeight.py
│ ├── bkgd.png
│ ├── circle.png
│ ├── line.png
│ ├── overlay.png
│ ├── rectangle.png
│ ├── test.jpg
│ ├── test.png
│ ├── testHSV.png
│ └── text.png
├── ParameterList.py
├── Parameters.py
├── ReadFile.py
├── ReadMatrixFile.py
├── RequiredParams.py
├── StopExecution.py
├── StringLength.py
├── StringManipulation.py
├── Tags
│ ├── EqualsTags.py
│ ├── GroupBy.py
│ ├── RegExp.py
│ └── Tags.py
├── TruncateDecimal.py
├── VTK
│ ├── Arrays
│ │ ├── GetValue.py
│ │ ├── RenameArray.py
│ │ └── Test.vtp
│ ├── Cursor3D.py
│ ├── ICP.py
│ ├── InteractorStyleTrackballActor.py
│ ├── InteractorStyleTrackballCamera.py
│ ├── PointSize.py
│ ├── SubclassInteractorStyle.py
│ ├── Test.py
│ ├── Triangle.py
│ ├── Triangle.vtp
│ ├── TriangleColored.py
│ ├── TriangleColored.vtp
│ ├── TriangleColoredPoints.py
│ ├── TriangleColoredPoints.vtp
│ ├── TrianglePoints.py
│ ├── TrianglePoints.vtp
│ ├── TriangleSolidColor.py
│ ├── TriangleSolidColor.vtp
│ ├── TriangleVerts.py
│ ├── TriangleVerts.vtp
│ └── wx
│ │ ├── david.py
│ │ ├── example.py
│ │ └── simple.py
├── WhileLoop.py
├── WorkingDirectory.py
├── WriteFile.py
├── ZeroPad.py
├── functions
│ ├── MyFunc.py
│ └── MyFunc.pyc
├── images
│ ├── 1small.jpg
│ ├── 1smallbig.png
│ ├── 2small.jpg
│ ├── 2smallbig.png
│ ├── 3small.jpg
│ ├── 3smallbig.png
│ ├── 4small.jpg
│ ├── 4smallbig.png
│ ├── 5small.jpg
│ └── 5smallbig.png
├── matrix.txt
├── matrix2.txt
├── matrix3.txt
└── test.txt
├── SQLite
└── test.db
├── VB
├── Casting
│ ├── Casting.sln
│ ├── Casting.suo
│ └── Casting
│ │ ├── Casting.vbproj
│ │ ├── Casting.vbproj.user
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ └── obj
│ │ └── Debug
│ │ ├── Casting.Form1.resources
│ │ ├── Casting.Resources.resources
│ │ ├── Casting.exe
│ │ ├── Casting.pdb
│ │ ├── Casting.vbproj.FileListAbsolute.txt
│ │ ├── Casting.vbproj.GenerateResource.Cache
│ │ ├── Casting.xml
│ │ └── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
├── ClassExample
│ ├── ClassExample.sln
│ ├── ClassExample.suo
│ └── ClassExample
│ │ ├── Class1.vb
│ │ ├── ClassExample.vbproj
│ │ ├── ClassExample.vbproj.user
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.vb
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ └── obj
│ │ └── Debug
│ │ └── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
├── CloseMessageBox
│ ├── CloseMessageBox.sln
│ ├── CloseMessageBox.suo
│ └── CloseMessageBox
│ │ ├── CloseMessageBox.vbproj
│ │ ├── CloseMessageBox.vbproj.user
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── Module1.vb
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ ├── frmMessage.Designer.vb
│ │ ├── frmMessage.resx
│ │ ├── frmMessage.vb
│ │ └── obj
│ │ └── Debug
│ │ ├── CloseMessageBox.Form1.resources
│ │ ├── CloseMessageBox.Resources.resources
│ │ ├── CloseMessageBox.exe
│ │ ├── CloseMessageBox.frmMessage.resources
│ │ ├── CloseMessageBox.pdb
│ │ ├── CloseMessageBox.vbproj.FileListAbsolute.txt
│ │ ├── CloseMessageBox.vbproj.GenerateResource.Cache
│ │ ├── CloseMessageBox.xml
│ │ └── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
├── EventLog
│ ├── EventLog.sln
│ ├── EventLog.suo
│ └── EventLog
│ │ ├── EventLog.vbproj
│ │ ├── EventLog.vbproj.user
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.vb
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ └── obj
│ │ └── Debug
│ │ └── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
├── FilesAndDirectories
│ ├── FilesAndDirectories.sln
│ ├── FilesAndDirectories.suo
│ └── FilesAndDirectories
│ │ ├── FilesAndDirectories.vbproj
│ │ ├── FilesAndDirectories.vbproj.user
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ └── obj
│ │ └── Debug
│ │ ├── FilesAndDirectories.Form1.resources
│ │ ├── FilesAndDirectories.Resources.resources
│ │ ├── FilesAndDirectories.exe
│ │ ├── FilesAndDirectories.pdb
│ │ ├── FilesAndDirectories.vbproj.FileListAbsolute.txt
│ │ ├── FilesAndDirectories.vbproj.GenerateResource.Cache
│ │ ├── FilesAndDirectories.xml
│ │ └── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
├── ForEachStringList
│ ├── ForEachStringList.sln
│ ├── ForEachStringList.suo
│ └── ForEachStringList
│ │ ├── ForEachStringList.vbproj
│ │ ├── ForEachStringList.vbproj.user
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ └── obj
│ │ └── Debug
│ │ ├── ForEachStringList.Form1.resources
│ │ ├── ForEachStringList.Resources.resources
│ │ ├── ForEachStringList.exe
│ │ ├── ForEachStringList.pdb
│ │ ├── ForEachStringList.vbproj.FileListAbsolute.txt
│ │ ├── ForEachStringList.vbproj.GenerateResource.Cache
│ │ ├── ForEachStringList.xml
│ │ └── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
├── Inheritance
│ ├── Inheritance.sln
│ ├── Inheritance.suo
│ └── Inheritance
│ │ ├── Employee.vb
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── GenericEmployee.vb
│ │ ├── Inheritance.vbproj
│ │ ├── Inheritance.vbproj.user
│ │ ├── Manager.vb
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ └── obj
│ │ └── Debug
│ │ ├── Inheritance.Form1.resources
│ │ ├── Inheritance.Resources.resources
│ │ ├── Inheritance.exe
│ │ ├── Inheritance.pdb
│ │ ├── Inheritance.vbproj.FileListAbsolute.txt
│ │ ├── Inheritance.vbproj.GenerateResource.Cache
│ │ ├── Inheritance.xml
│ │ └── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
├── KeyCapture
│ ├── KeyCapture.sln
│ ├── KeyCapture.suo
│ └── KeyCapture
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── KeyCapture.vbproj
│ │ ├── KeyCapture.vbproj.user
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ └── obj
│ │ └── Debug
│ │ ├── KeyCapture.Form1.resources
│ │ ├── KeyCapture.Resources.resources
│ │ ├── KeyCapture.exe
│ │ ├── KeyCapture.pdb
│ │ ├── KeyCapture.vbproj.FileListAbsolute.txt
│ │ ├── KeyCapture.vbproj.GenerateResource.Cache
│ │ ├── KeyCapture.xml
│ │ └── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
├── LateBinding
│ ├── LateBinding.sln
│ ├── LateBinding.suo
│ └── LateBinding
│ │ ├── Employee.vb
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── LateBinding.vbproj
│ │ ├── LateBinding.vbproj.user
│ │ ├── Manager.vb
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ ├── Salesman.vb
│ │ └── obj
│ │ └── Debug
│ │ ├── LateBinding.Form1.resources
│ │ ├── LateBinding.Resources.resources
│ │ ├── LateBinding.exe
│ │ ├── LateBinding.pdb
│ │ ├── LateBinding.vbproj.FileListAbsolute.txt
│ │ ├── LateBinding.vbproj.GenerateResource.Cache
│ │ ├── LateBinding.xml
│ │ └── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
├── ListView
│ ├── ListView.sln
│ ├── ListView.suo
│ └── ListView
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── ListView.vbproj
│ │ ├── ListView.vbproj.user
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ └── obj
│ │ └── Debug
│ │ ├── ListView.Form1.resources
│ │ ├── ListView.Resources.resources
│ │ ├── ListView.exe
│ │ ├── ListView.pdb
│ │ ├── ListView.vbproj.FileListAbsolute.txt
│ │ ├── ListView.vbproj.GenerateResource.Cache
│ │ ├── ListView.xml
│ │ └── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
├── ProgressBar
│ ├── ProgressBar.sln
│ ├── ProgressBar.suo
│ └── ProgressBar
│ │ ├── BadWay.Designer.vb
│ │ ├── BadWay.resx
│ │ ├── BadWay.vb
│ │ ├── GoodWay.Designer.vb
│ │ ├── GoodWay.resx
│ │ ├── GoodWay.vb
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ ├── ProgressBar.vbproj
│ │ ├── ProgressBar.vbproj.user
│ │ ├── frmWorking.Designer.vb
│ │ ├── frmWorking.resx
│ │ ├── frmWorking.vb
│ │ └── obj
│ │ └── Debug
│ │ ├── ProgressBar.BadWay.resources
│ │ ├── ProgressBar.GoodWay.resources
│ │ ├── ProgressBar.Resources.resources
│ │ ├── ProgressBar.exe
│ │ ├── ProgressBar.frmWorking.resources
│ │ ├── ProgressBar.pdb
│ │ ├── ProgressBar.vbproj.FileListAbsolute.txt
│ │ ├── ProgressBar.vbproj.GenerateResource.Cache
│ │ ├── ProgressBar.xml
│ │ └── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
├── ReadWriteFile
│ ├── ReadWriteFile.sln
│ ├── ReadWriteFile.suo
│ └── ReadWriteFile
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── Module1.vb
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ ├── ReadWriteFile.vbproj
│ │ ├── ReadWriteFile.vbproj.user
│ │ └── obj
│ │ └── Debug
│ │ ├── ReadWriteFile.Form1.resources
│ │ ├── ReadWriteFile.Resources.resources
│ │ ├── ReadWriteFile.exe
│ │ ├── ReadWriteFile.pdb
│ │ ├── ReadWriteFile.vbproj.FileListAbsolute.txt
│ │ ├── ReadWriteFile.vbproj.GenerateResource.Cache
│ │ ├── ReadWriteFile.xml
│ │ └── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
├── StringParsing
│ ├── StringParsing.sln
│ ├── StringParsing.suo
│ └── StringParsing
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ ├── StringParsing.vbproj
│ │ ├── StringParsing.vbproj.user
│ │ └── obj
│ │ └── Debug
│ │ ├── StringParsing.Form1.resources
│ │ ├── StringParsing.Resources.resources
│ │ ├── StringParsing.exe
│ │ ├── StringParsing.pdb
│ │ ├── StringParsing.vbproj.FileListAbsolute.txt
│ │ ├── StringParsing.vbproj.GenerateResource.Cache
│ │ ├── StringParsing.xml
│ │ └── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
├── StringReplacement
│ ├── StringReplacement.sln
│ ├── StringReplacement.suo
│ └── StringReplacement
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ ├── StringReplacement.vbproj
│ │ ├── StringReplacement.vbproj.user
│ │ └── obj
│ │ └── Debug
│ │ ├── StringReplacement.Form1.resources
│ │ ├── StringReplacement.Resources.resources
│ │ ├── StringReplacement.exe
│ │ ├── StringReplacement.pdb
│ │ ├── StringReplacement.vbproj.FileListAbsolute.txt
│ │ ├── StringReplacement.vbproj.GenerateResource.Cache
│ │ ├── StringReplacement.xml
│ │ └── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
├── TableLayoutPanel
│ ├── TableLayoutPanel.sln
│ ├── TableLayoutPanel.suo
│ └── TableLayoutPanel
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ ├── TableLayoutPanel.vbproj
│ │ ├── TableLayoutPanel.vbproj.user
│ │ └── obj
│ │ └── Debug
│ │ ├── TableLayoutPanel.Form1.resources
│ │ ├── TableLayoutPanel.Resources.resources
│ │ ├── TableLayoutPanel.exe
│ │ ├── TableLayoutPanel.pdb
│ │ ├── TableLayoutPanel.vbproj.FileListAbsolute.txt
│ │ ├── TableLayoutPanel.vbproj.GenerateResource.Cache
│ │ ├── TableLayoutPanel.xml
│ │ └── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
├── Test
│ ├── Test.sln
│ ├── Test.suo
│ └── Test
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ ├── Test.vbproj
│ │ ├── Test.vbproj.user
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
│ │ ├── Test.Form1.resources
│ │ ├── Test.Resources.resources
│ │ ├── Test.exe
│ │ ├── Test.pdb
│ │ ├── Test.vbproj.FileListAbsolute.txt
│ │ ├── Test.vbproj.GenerateResource.Cache
│ │ └── Test.xml
├── TestAddControls
│ ├── TestAddControls.sln
│ ├── TestAddControls.suo
│ └── TestAddControls
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ ├── TestAddControls.vbproj
│ │ ├── TestAddControls.vbproj.user
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
│ │ ├── TestAddControls.Form1.resources
│ │ ├── TestAddControls.Resources.resources
│ │ ├── TestAddControls.exe
│ │ ├── TestAddControls.pdb
│ │ ├── TestAddControls.vbproj.FileListAbsolute.txt
│ │ ├── TestAddControls.vbproj.GenerateResource.Cache
│ │ └── TestAddControls.xml
├── TestEmail
│ ├── TestEmail.sln
│ ├── TestEmail.suo
│ └── TestEmail
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── Module1.vb
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ ├── TestEmail.vbproj
│ │ ├── TestEmail.vbproj.user
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
│ │ ├── TestEmail.Form1.resources
│ │ ├── TestEmail.Resources.resources
│ │ ├── TestEmail.exe
│ │ ├── TestEmail.pdb
│ │ ├── TestEmail.vbproj.FileListAbsolute.txt
│ │ ├── TestEmail.vbproj.GenerateResource.Cache
│ │ └── TestEmail.xml
├── TestSystray
│ ├── TestSystray.sln
│ ├── TestSystray.suo
│ └── TestSystray
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ ├── TestSystray.vbproj
│ │ ├── TestSystray.vbproj.user
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
│ │ ├── TestSystray.Form1.resources
│ │ ├── TestSystray.Resources.resources
│ │ ├── TestSystray.exe
│ │ ├── TestSystray.pdb
│ │ ├── TestSystray.vbproj.FileListAbsolute.txt
│ │ ├── TestSystray.vbproj.GenerateResource.Cache
│ │ └── TestSystray.xml
├── Tracing
│ ├── Tracing.sln
│ ├── Tracing.suo
│ └── Tracing
│ │ ├── ApplicationEvents.vb
│ │ ├── Form1.Designer.vb
│ │ ├── Form1.resx
│ │ ├── Form1.vb
│ │ ├── My Project
│ │ ├── Application.Designer.vb
│ │ ├── Application.myapp
│ │ ├── AssemblyInfo.vb
│ │ ├── Resources.Designer.vb
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.vb
│ │ └── Settings.settings
│ │ ├── Tracing.vbproj
│ │ ├── Tracing.vbproj.user
│ │ └── obj
│ │ └── Debug
│ │ ├── TempPE
│ │ └── My Project.Resources.Designer.vb.dll
│ │ ├── Tracing.Form1.resources
│ │ ├── Tracing.Resources.resources
│ │ ├── Tracing.exe
│ │ ├── Tracing.pdb
│ │ ├── Tracing.vbproj.FileListAbsolute.txt
│ │ ├── Tracing.vbproj.GenerateResource.Cache
│ │ └── Tracing.xml
└── VersionNumber
│ ├── VersionNumber.sln
│ ├── VersionNumber.suo
│ └── VersionNumber
│ ├── Form1.Designer.vb
│ ├── Form1.resx
│ ├── Form1.vb
│ ├── Module1.vb
│ ├── My Project
│ ├── Application.Designer.vb
│ ├── Application.myapp
│ ├── AssemblyInfo.vb
│ ├── Resources.Designer.vb
│ ├── Resources.resx
│ ├── Settings.Designer.vb
│ └── Settings.settings
│ ├── VersionNumber.vbproj
│ ├── VersionNumber.vbproj.user
│ └── obj
│ └── Debug
│ ├── TempPE
│ └── My Project.Resources.Designer.vb.dll
│ ├── VersionNumber.Form1.resources
│ ├── VersionNumber.Resources.resources
│ ├── VersionNumber.exe
│ ├── VersionNumber.pdb
│ ├── VersionNumber.vbproj.FileListAbsolute.txt
│ ├── VersionNumber.vbproj.GenerateResource.Cache
│ └── VersionNumber.xml
├── Web
├── CSS
│ ├── BackgroundGradient
│ │ ├── basics.css
│ │ └── index.html
│ ├── Basics
│ │ ├── basics.css
│ │ └── index.html
│ ├── BoxLayout
│ │ ├── basics.css
│ │ └── index.html
│ ├── Centering
│ │ └── index.html
│ ├── DropDownMenu
│ │ ├── _template.html
│ │ ├── adobe.com.html
│ │ ├── advanced.html
│ │ ├── changelog.txt
│ │ ├── css
│ │ │ └── dropdown
│ │ │ │ ├── dropdown.css
│ │ │ │ ├── dropdown.limited.css
│ │ │ │ ├── dropdown.linear.columnar.css
│ │ │ │ ├── dropdown.linear.css
│ │ │ │ ├── dropdown.min.css
│ │ │ │ ├── dropdown.upward.css
│ │ │ │ ├── dropdown.vertical.css
│ │ │ │ ├── dropdown.vertical.rtl.css
│ │ │ │ └── themes
│ │ │ │ ├── _template
│ │ │ │ └── default.css
│ │ │ │ ├── adobe.com
│ │ │ │ ├── default.advanced.css
│ │ │ │ ├── default.css
│ │ │ │ ├── helper.css
│ │ │ │ └── images
│ │ │ │ │ ├── dropdown_pane.png
│ │ │ │ │ ├── dropdown_pane_8bit.png
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ ├── grad1.png
│ │ │ │ │ └── icon.png
│ │ │ │ ├── default
│ │ │ │ ├── default.advanced.css
│ │ │ │ ├── default.css
│ │ │ │ ├── default.linear.css
│ │ │ │ ├── default.ultimate.css
│ │ │ │ ├── default.ultimate.linear.css
│ │ │ │ ├── helper.css
│ │ │ │ └── images
│ │ │ │ │ ├── grad1.png
│ │ │ │ │ ├── grad2.png
│ │ │ │ │ ├── nav-arrow-down-white.png
│ │ │ │ │ ├── nav-arrow-down.png
│ │ │ │ │ ├── nav-arrow-left-white.png
│ │ │ │ │ ├── nav-arrow-left.png
│ │ │ │ │ ├── nav-arrow-right-white.png
│ │ │ │ │ ├── nav-arrow-right.png
│ │ │ │ │ ├── nav-arrow-top-white.png
│ │ │ │ │ ├── nav-arrow-top.png
│ │ │ │ │ └── pattern1.png
│ │ │ │ ├── flickr.com
│ │ │ │ ├── default.css
│ │ │ │ ├── default.ultimate.css
│ │ │ │ ├── default.ultimate.linear.css
│ │ │ │ ├── default.ultimate.upward.css
│ │ │ │ ├── helper.css
│ │ │ │ └── images
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── nav-arrow-down-on.png
│ │ │ │ │ ├── nav-arrow-down-open.png
│ │ │ │ │ ├── nav-arrow-down.png
│ │ │ │ │ ├── nav-arrow-left-on.png
│ │ │ │ │ ├── nav-arrow-left-open.png
│ │ │ │ │ ├── nav-arrow-left.png
│ │ │ │ │ ├── nav-arrow-right-on.png
│ │ │ │ │ ├── nav-arrow-right-open.png
│ │ │ │ │ ├── nav-arrow-right.png
│ │ │ │ │ ├── nav-arrow-up-on.png
│ │ │ │ │ ├── nav-arrow-up-open.png
│ │ │ │ │ ├── nav-arrow-up.png
│ │ │ │ │ ├── pattern1.png
│ │ │ │ │ ├── pattern2.png
│ │ │ │ │ └── pattern3.png
│ │ │ │ ├── lwis.celebrity
│ │ │ │ ├── default.advanced.css
│ │ │ │ ├── default.css
│ │ │ │ ├── helper.css
│ │ │ │ └── images
│ │ │ │ │ ├── grad1.png
│ │ │ │ │ ├── grad2.png
│ │ │ │ │ ├── logo_lwis.png
│ │ │ │ │ ├── nav-arrow-down-white.png
│ │ │ │ │ ├── nav-arrow-down.png
│ │ │ │ │ ├── nav-arrow-left-white.png
│ │ │ │ │ ├── nav-arrow-left.png
│ │ │ │ │ ├── nav-arrow-right-white.png
│ │ │ │ │ ├── nav-arrow-right.png
│ │ │ │ │ ├── nav-arrow-top-white.png
│ │ │ │ │ ├── nav-arrow-top.png
│ │ │ │ │ ├── pattern1.png
│ │ │ │ │ └── pattern2.png
│ │ │ │ ├── mtv.com
│ │ │ │ ├── default.advanced.css
│ │ │ │ ├── default.css
│ │ │ │ ├── default.ultimate.css
│ │ │ │ ├── helper.css
│ │ │ │ └── images
│ │ │ │ │ ├── comnav-arrowon.png
│ │ │ │ │ ├── comnav-arrowover.png
│ │ │ │ │ ├── comnav-arrowover2.png
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ ├── grad1.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── nav-arrow-right.png
│ │ │ │ │ ├── nav-arrow-right2.png
│ │ │ │ │ └── nav-sub-press.png
│ │ │ │ ├── nvidia.com
│ │ │ │ ├── default.advanced.css
│ │ │ │ ├── default.css
│ │ │ │ ├── helper.css
│ │ │ │ └── images
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ ├── grad1.png
│ │ │ │ │ └── icon.png
│ │ │ │ └── vimeo.com
│ │ │ │ ├── default.advanced.css
│ │ │ │ ├── default.css
│ │ │ │ ├── helper.css
│ │ │ │ └── images
│ │ │ │ ├── bg_search-field.png
│ │ │ │ ├── box1-bottom.png
│ │ │ │ ├── box1-bottom2.png
│ │ │ │ ├── box1-outwards-top-right.png
│ │ │ │ ├── box1-top-left.png
│ │ │ │ ├── box1-top-right.png
│ │ │ │ ├── box1-top.png
│ │ │ │ ├── btn_search.png
│ │ │ │ ├── favicon.ico
│ │ │ │ ├── icon.png
│ │ │ │ ├── logo_lwis.png
│ │ │ │ ├── nav-arrow-down-green.png
│ │ │ │ ├── nav-arrow-down.png
│ │ │ │ ├── nav-arrow-left.png
│ │ │ │ ├── nav-arrow-right-green.png
│ │ │ │ ├── nav-arrow-right.png
│ │ │ │ ├── nav-arrow-top.png
│ │ │ │ └── sun.png
│ │ ├── flickr.com.horizontal.html
│ │ ├── flickr.com.horizontal.upward.html
│ │ ├── flickr.com.linear.html
│ │ ├── flickr.com.vertical.html
│ │ ├── flickr.com.vertical.rtl.html
│ │ ├── jsbak
│ │ │ ├── csshover.htc
│ │ │ ├── jquery
│ │ │ │ ├── jquery.dropdown.js
│ │ │ │ └── jquery.js
│ │ │ ├── mootools
│ │ │ │ └── mootools.dropdown.js
│ │ │ ├── scriptaculous
│ │ │ │ └── scriptaculous.dropdown.js
│ │ │ └── swfobject.js
│ │ ├── license.txt
│ │ ├── link.txt
│ │ ├── lwis.celebrity.horizontal.html
│ │ ├── mtv.com.html
│ │ ├── nvidia.com.html
│ │ ├── nvidia.com.no-flash.html
│ │ ├── readme.txt
│ │ ├── simple.horizontal.html
│ │ ├── simple.horizontal.upward.html
│ │ ├── simple.limited.html
│ │ ├── simple.linear.html
│ │ ├── simple.vertical.html
│ │ ├── simple.vertical.rtl.html
│ │ ├── ultimate.horizontal.html
│ │ ├── ultimate.horizontal.upward.html
│ │ ├── ultimate.linear.html
│ │ ├── ultimate.vertical.html
│ │ ├── ultimate.vertical.rtl.html
│ │ └── vimeo.com.html
│ ├── FullClass
│ │ ├── default.css
│ │ ├── images
│ │ │ ├── img01.jpg
│ │ │ ├── img12.gif
│ │ │ ├── img17.gif
│ │ │ ├── img18.gif
│ │ │ ├── img19.gif
│ │ │ ├── img20.gif
│ │ │ └── spacer.gif
│ │ ├── index.html
│ │ └── license.txt
│ ├── FullId
│ │ ├── default.css
│ │ ├── images
│ │ │ ├── img01.jpg
│ │ │ ├── img12.gif
│ │ │ ├── img17.gif
│ │ │ ├── img18.gif
│ │ │ ├── img19.gif
│ │ │ ├── img20.gif
│ │ │ └── spacer.gif
│ │ ├── index.html
│ │ └── license.txt
│ ├── FullOriginal
│ │ ├── default.css
│ │ ├── images
│ │ │ ├── img01.jpg
│ │ │ ├── img12.gif
│ │ │ ├── img17.gif
│ │ │ ├── img18.gif
│ │ │ ├── img19.gif
│ │ │ ├── img20.gif
│ │ │ └── spacer.gif
│ │ ├── index.html
│ │ └── license.txt
│ ├── MultipleStyleProperties
│ │ └── MultipleStyleProperties.html
│ ├── ScrollBars
│ │ └── ScrollBars.html
│ ├── Sidebar
│ │ ├── index.html
│ │ └── table.css
│ ├── Table
│ │ ├── ColumnWidth.html
│ │ ├── ForceWidth.html
│ │ ├── index.html
│ │ └── table.css
│ ├── TextBesideImage
│ │ ├── IEEE.gif
│ │ └── TextBesideImage.html
│ ├── region
│ │ ├── default.css
│ │ ├── images
│ │ │ ├── img01.jpg
│ │ │ ├── img12.gif
│ │ │ ├── img17.gif
│ │ │ ├── img18.gif
│ │ │ ├── img19.gif
│ │ │ ├── img20.gif
│ │ │ └── spacer.gif
│ │ ├── index.html
│ │ └── license.txt
│ └── tabs
│ │ ├── class.css
│ │ ├── class.html
│ │ ├── id.css
│ │ ├── id.html
│ │ ├── images
│ │ ├── img01.jpg
│ │ ├── img12.gif
│ │ ├── img17.gif
│ │ ├── img18.gif
│ │ ├── img19.gif
│ │ ├── img20.gif
│ │ └── spacer.gif
│ │ └── license.txt
├── HTML
│ ├── DropDownBox
│ │ └── DropDownBox.html
│ ├── Footnote
│ │ └── Footnote.html
│ ├── ImageCaption
│ │ └── ImageCaption.html
│ ├── InpageLinking
│ │ └── index.html
│ ├── OpenLinkInNewWindow
│ │ └── OpenLinkInNewWindow.html
│ ├── Tables
│ │ └── Tables.html
│ ├── TextBesideImage
│ │ ├── IEEE.gif
│ │ ├── TextBesideImage.html
│ │ ├── TextBesideImageFloat.html
│ │ ├── TextBesideImageUsingTable.html
│ │ └── test.html
│ ├── Variable
│ │ └── Variable.html
│ ├── redirect
│ │ └── index.html
│ └── video
│ │ ├── movie.ogg
│ │ └── video.html
├── JavaScript
│ ├── DropDownMenu
│ │ ├── findDOM.js
│ │ ├── index.html
│ │ ├── menu.css
│ │ ├── menu.js
│ │ ├── menutext.js
│ │ └── old
│ │ │ ├── basics.css
│ │ │ ├── index.html
│ │ │ ├── menutext.js
│ │ │ └── tw.css
│ ├── YUIMenu
│ │ ├── DropDown.html
│ │ └── DropDown_files
│ │ │ ├── animation.js
│ │ │ ├── bc_2.0.5.js
│ │ │ ├── container_core.js
│ │ │ ├── menu.css
│ │ │ ├── menu.js
│ │ │ ├── reset-fonts-grids.css
│ │ │ ├── rto1_78.js
│ │ │ └── yahoo-dom-event.js
│ ├── YUIMenuNavPlugin
│ │ ├── test.html
│ │ ├── test.html.good
│ │ └── test_files
│ │ │ ├── bc_2.0.5.js
│ │ │ ├── combo
│ │ │ ├── combo(1)
│ │ │ ├── combo(2)
│ │ │ ├── loader.js
│ │ │ ├── node-menunav-examples-base.css
│ │ │ ├── rto1_78.js
│ │ │ └── yui.js
│ └── YUIMenu_Orig
│ │ ├── DropDown.html
│ │ └── DropDown_filesBAK
│ │ ├── animation.js
│ │ ├── bc_2.0.5.js
│ │ ├── container_core.js
│ │ ├── menu.css
│ │ ├── menu.js
│ │ ├── reset-fonts-grids.css
│ │ ├── rto1_78.js
│ │ └── yahoo-dom-event.js
├── Mobile
│ ├── index.php
│ ├── mobile_device_detect.php
│ └── upgrade.html
├── PHP
│ ├── AdvancedParams
│ │ ├── calling_file.php
│ │ └── receiving_file.php
│ ├── Arrays
│ │ └── Arrays.php
│ ├── DirectoryListing
│ │ └── DirectoryListing.php
│ ├── DropDown
│ │ ├── receive_form.php
│ │ └── send_form.php
│ ├── ForLoop
│ │ └── forloop.php
│ ├── Form
│ │ ├── receive_form.php
│ │ └── send_form.php
│ ├── FormHiddenValues
│ │ ├── receive_form.php
│ │ └── send_form.php
│ ├── Function
│ │ ├── main.php
│ │ └── myfunction.php
│ ├── ListSQLiteTable
│ │ ├── ListTable.php
│ │ └── Test.db
│ ├── ListSQLiteTableBasic
│ │ ├── ListTableBasic.php
│ │ └── Test.db
│ ├── MagicQuotes
│ │ └── MagicQuotes.php
│ ├── Quotes
│ │ └── Quotes.php
│ ├── Set
│ │ └── set.php
│ ├── SimpleParams
│ │ ├── calling_file.php
│ │ └── receiving_file.php
│ ├── TextBox
│ │ ├── receive_form.php
│ │ └── send_form.php
│ ├── echo.php
│ └── print.php
├── SQLite
│ ├── .htaccess
│ ├── CurrentDate
│ │ ├── CurrentDate.php
│ │ └── Test.db
│ ├── Insert
│ │ ├── Insert.txt
│ │ └── Test.db
│ ├── Join
│ │ ├── Join.txt
│ │ └── test.db
│ ├── MonthName
│ │ ├── MonthName.php
│ │ └── Test.db
│ ├── MultipleTables
│ │ ├── MultipleTables.php
│ │ └── database.db
│ ├── OrderBy
│ │ ├── OrderBy.php
│ │ └── Test.db
│ ├── PopulateDropDown
│ │ ├── receive_form.php
│ │ └── send_form.php
│ ├── Update
│ │ ├── Test.db
│ │ └── Update.txt
│ ├── Views
│ │ └── Views.php
│ ├── php.log
│ ├── test.db
│ ├── test.php
│ └── test.py
├── html5
│ ├── big_buck_bunny.mp4
│ └── test.html
└── xml
│ ├── XSL
│ ├── cdcatalog.xml
│ └── cdcatalog.xsl
│ ├── php
│ ├── cdcatalog.xml
│ ├── test.php
│ ├── test.xml
│ └── test3.xml
│ ├── phpParameters
│ ├── allbooks.php
│ ├── allbooks.php.bak
│ ├── bookdetails.php
│ └── bookstore.xml
│ ├── phpParametersBAK
│ ├── allbooks.php
│ ├── allbooks.php.bak
│ ├── bookdetails.php
│ └── bookstore.xml
│ └── xpath
│ ├── allbooks.php
│ ├── allbooks.php.bak
│ ├── bookdetails.php
│ └── bookstore.xml
├── Zenity
└── VideoFromImages.sh
├── c++
├── 2DArray
│ ├── 2DArray.cpp
│ ├── CMakeLists.txt
│ └── Doxyfile
├── AggregateTypes
│ ├── CMakeLists.txt
│ └── Initializer.cpp
├── Alphabetize
│ ├── Alphabetize.cpp
│ ├── CMakeLists.txt
│ └── Doxyfile
├── AnonymousNamespace
│ ├── AnonymousNamespace.cpp
│ ├── CMakeLists.txt
│ └── working.cpp
├── Array
│ ├── Array.cpp
│ ├── CMakeLists.txt
│ └── Doxyfile
├── Assert
│ └── SEE_OTHER
├── AssignmentOperator
│ ├── AssignmentOperator.cpp
│ ├── AssignmentWithConstMembers.cpp
│ └── CMakeLists.txt
├── BinaryIO
│ ├── BinaryIO.cpp
│ ├── CMakeLists.txt
│ └── Doxyfile
├── Boost
│ ├── Accumulator
│ │ ├── Accumulator.cpp
│ │ ├── CMakeLists.txt
│ │ ├── Density.cpp
│ │ ├── Doxyfile
│ │ ├── Legacy.cpp
│ │ ├── MeanAndSecondMoment.cpp
│ │ └── MinMax.cpp
│ ├── Any
│ │ ├── Any.cpp
│ │ └── CMakeLists.txt
│ ├── Bimap
│ │ ├── Bimap.cpp
│ │ ├── CMakeLists.txt
│ │ └── Legacy.cpp
│ ├── CMakeLists.txt
│ ├── Concept
│ │ ├── CMakeLists.txt
│ │ ├── ClassTemplate.cpp
│ │ ├── ClassTemplateItself.cpp
│ │ ├── Concept.cpp
│ │ ├── Custom.cpp
│ │ ├── FunctionTemplate.cpp
│ │ └── legacy.cpp
│ ├── DateTime
│ │ ├── CMakeLists.txt
│ │ └── DateTime.cpp
│ ├── FileSystem
│ │ ├── CMakeLists.txt
│ │ └── FileSystem.cpp
│ ├── Function
│ │ ├── CMakeLists.txt
│ │ ├── FreeFunction.cpp
│ │ ├── FunctionTemplate.cpp
│ │ ├── FunctionTemplateAuto.cpp
│ │ ├── Legacy.cpp
│ │ ├── MemberFunction.cpp
│ │ └── MemberFunctionMultipleArguments.cpp
│ ├── Functor
│ │ ├── CMakeLists.txt
│ │ ├── Functor.cpp
│ │ ├── NoArguments.cpp
│ │ ├── legacy.cpp
│ │ └── simple.cpp
│ ├── Fusion
│ │ ├── CMakeLists.txt
│ │ └── Fusion.cpp
│ ├── Geometry
│ │ ├── DistanceBetweenPoints
│ │ │ ├── CMakeLists.txt
│ │ │ └── DistanceBetweenPoints.cpp
│ │ ├── PointInPolygon
│ │ │ ├── CMakeLists.txt
│ │ │ └── PointInPolygon.cpp
│ │ └── Simplification
│ │ │ ├── CMakeLists.txt
│ │ │ └── Simplification.cpp
│ ├── Histogram
│ │ ├── CMakeLists.txt
│ │ └── Histogram.cpp
│ ├── Iterator
│ │ ├── CMakeLists.txt
│ │ ├── IndirectIterator.cpp
│ │ ├── IndirectIteratorSmartPointer.cpp
│ │ ├── IndirectIteratorSmartPointerSorting.cpp
│ │ └── Iterator.cpp
│ ├── LexicalCast
│ │ ├── CMakeLists.txt
│ │ ├── StringToValue.cxx
│ │ └── ValueToString.cxx
│ ├── MutableQueue
│ │ ├── CMakeLists.txt
│ │ └── MutableQueue.cpp
│ ├── NamedParameters
│ │ ├── CMakeLists.txt
│ │ └── NamedParameters.cpp
│ ├── Numeric
│ │ ├── Matrix
│ │ │ ├── CMakeLists.txt
│ │ │ └── Matrix.cpp
│ │ ├── MultiArray
│ │ │ ├── CMakeLists.txt
│ │ │ └── MultiArray.cpp
│ │ ├── SparseMatrix
│ │ │ ├── CMakeLists.txt
│ │ │ └── SparseMatrix.cpp
│ │ └── Vector
│ │ │ ├── CMakeLists.txt
│ │ │ └── Vector.cpp
│ ├── ProgramOptions
│ │ ├── MultipleArguments
│ │ │ ├── CMakeLists.txt
│ │ │ └── MultipleArguments.cpp
│ │ ├── MultipleLists
│ │ │ ├── CMakeLists.txt
│ │ │ └── MultipleLists.cpp
│ │ └── Simple
│ │ │ ├── BoostProgramOptions.cpp
│ │ │ └── CMakeLists.txt
│ ├── Progress
│ │ ├── BoostProgress.cpp
│ │ └── CMakeLists.txt
│ ├── PropertyMap
│ │ ├── Associative
│ │ │ ├── AssociativePropertyMap.cpp
│ │ │ └── CMakeLists.txt
│ │ ├── Dynamic
│ │ │ ├── CMakeLists.txt
│ │ │ └── DynamicProperty.cpp
│ │ ├── Iterator
│ │ │ ├── CMakeLists.txt
│ │ │ └── IteratorPropertyMap.cpp
│ │ └── Vector
│ │ │ ├── CMakeLists.txt
│ │ │ └── VectorPropertyMap.cpp
│ ├── Random
│ │ ├── CMakeLists.txt
│ │ ├── IntegersInARange
│ │ │ ├── CMakeLists.txt
│ │ │ └── IntegersInARange.cxx
│ │ ├── IntegersInARangeWithWeightedProbability
│ │ │ ├── CMakeLists.txt
│ │ │ └── IntegersInARangeWithWeightedProbability.cxx
│ │ ├── NormalDistribution
│ │ │ └── NormalDistribution.cxx
│ │ └── ReadMe.txt
│ ├── Regex
│ │ ├── CMakeLists.txt
│ │ ├── Regex.cpp
│ │ ├── legacy.cpp
│ │ └── working.cpp
│ ├── Signal
│ │ ├── Basic
│ │ │ ├── CMakeLists.txt
│ │ │ └── Signal.cpp
│ │ ├── Class
│ │ │ ├── CMakeLists.txt
│ │ │ └── Class.cpp
│ │ ├── ClassMember
│ │ │ ├── CMakeLists.txt
│ │ │ └── ClassMember.cpp
│ │ ├── ClassMemberWithParameters
│ │ │ ├── CMakeLists.txt
│ │ │ └── ClassMemberWithParameters.cpp
│ │ ├── ClassMemberWithParametersImplementationFile.zip
│ │ ├── ClassMemberWithParametersImplementationFile
│ │ │ ├── CMakeLists.txt
│ │ │ ├── ClassMemberWithParametersImplementationFile.cpp
│ │ │ ├── Form.cpp
│ │ │ ├── Form.h
│ │ │ └── InteractorStyle.h
│ │ └── SignalsWithQt
│ │ │ ├── CMakeLists.txt
│ │ │ ├── form.cpp
│ │ │ ├── form.h
│ │ │ ├── form.ui
│ │ │ └── main.cpp
│ ├── Signals2
│ │ ├── Basic
│ │ │ ├── Basic.cpp
│ │ │ └── CMakeLists.txt
│ │ ├── ClassMemberWithParameters
│ │ │ ├── CMakeLists.txt
│ │ │ └── ClassMemberWithParameters.cpp
│ │ ├── ClassMemberWithParametersImplementationFile.zip
│ │ ├── ClassMemberWithParametersImplementationFile
│ │ │ ├── CMakeLists.txt
│ │ │ ├── ClassMemberWithParametersImplementationFile.cpp
│ │ │ ├── Form.cpp
│ │ │ ├── Form.h
│ │ │ └── InteractorStyle.h
│ │ ├── MultipleParameters
│ │ │ ├── CMakeLists.txt
│ │ │ └── MultipleParameters.cpp
│ │ └── Parameters
│ │ │ ├── CMakeLists.txt
│ │ │ └── Parameters.cpp
│ ├── Spirit
│ │ ├── CMakeLists.txt
│ │ ├── Complex.cpp
│ │ ├── LongList.cpp
│ │ ├── Simple.cpp
│ │ ├── Spirit.cpp
│ │ ├── Test1.cpp
│ │ ├── phoenix.cpp
│ │ └── skipper.cpp
│ ├── Testing
│ │ ├── CMakeLists.txt
│ │ ├── Testing.cpp
│ │ └── legacy.cpp
│ ├── Threads
│ │ ├── Thread
│ │ │ ├── BoostThreads.cpp
│ │ │ ├── CMakeLists.txt
│ │ │ └── CMakeOld.txt
│ │ ├── ThreadCommunication
│ │ │ ├── CMakeLists.txt
│ │ │ ├── ThreadCommunication.cpp
│ │ │ └── legacy.cxx
│ │ └── ThreadMember
│ │ │ ├── BoostThreadsMember.cpp
│ │ │ └── CMakeLists.txt
│ ├── Timer
│ │ ├── BoostTimer.cpp
│ │ ├── CMakeLists.txt
│ │ └── Doxyfile
│ ├── Tuple
│ │ ├── CMakeLists.txt
│ │ └── Tuple.cpp
│ ├── Variant
│ │ ├── CMakeLists.txt
│ │ └── Variant.cpp
│ ├── enable_if
│ │ ├── CMakeLists.txt
│ │ └── enable_if.cpp
│ ├── ptr_vector
│ │ ├── CMakeLists.txt
│ │ └── ptr_vector.cpp
│ ├── ref
│ │ ├── CMakeLists.txt
│ │ └── ref.cpp
│ └── shared_ptr
│ │ ├── CMakeLists.txt
│ │ └── shared_ptr.cpp
├── Broken
│ ├── Classes
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── Person.cpp
│ │ ├── Person.h
│ │ ├── Pilot.cpp
│ │ ├── Pilot.h
│ │ └── Protected.cpp
│ ├── DeepCopy
│ │ ├── CMakeLists.txt
│ │ ├── DeepCopy.cpp
│ │ ├── Doxyfile
│ │ ├── ModelWithPointers.h
│ │ ├── ModelWithoutPointers.h
│ │ └── Point.h
│ ├── DoubleArrayOperator
│ │ ├── CMakeLists.txt
│ │ ├── DoubleArrayOperator.cpp
│ │ └── Doxyfile
│ ├── DownCasting
│ │ ├── CMakeLists.txt
│ │ ├── DownCasting.cpp
│ │ ├── Doxyfile
│ │ └── Test.cpp
│ ├── FileInputStream
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── Example.txt
│ │ └── FileInputStream.cpp
│ ├── GlobalOptions
│ │ ├── CMakeLists.txt
│ │ ├── GlobalOptions.cpp
│ │ └── GlobalOptions.h
│ ├── Inheritance
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── Inheritance.cpp
│ ├── InputStream
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── InputStream.cpp
│ ├── Iterator
│ │ ├── BackInsert.cpp
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── Iterators.cpp
│ ├── ListSubclass
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── ListSubclass.cpp
│ ├── MapSubclass
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── MapSubclass.cpp
│ ├── Mutable
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── Test.cpp
│ ├── NamedParameters
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── NamedParameters.cpp
│ ├── Parameters
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── Parameters.cpp
│ ├── QT
│ │ └── Button
│ │ │ ├── Button.cpp
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Direct.cpp
│ │ │ ├── Doxyfile
│ │ │ ├── main.ui
│ │ │ ├── mypush.cpp
│ │ │ └── mypush.h
│ ├── RangeLoops
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── RangeLoops.cpp
│ ├── References
│ │ ├── CMakeLists.txt
│ │ └── References.cpp
│ ├── Remainders
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── Remainders.cpp
│ └── pointers
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── PointerTest.cpp
├── CGAL
│ ├── NormalEstimation
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── NormalEstimation.cpp
│ └── SurfaceReconstruction
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── Legacy.cpp
│ │ ├── SurfaceFromPointCloud.cpp
│ │ ├── SurfaceFromPointCloudWorking.cpp
│ │ ├── SurfaceReconstruction.cpp
│ │ ├── VTK2CGAL.cpp
│ │ └── VTK2CGAL.h
├── CImg
│ ├── CMakeLists.txt
│ └── test.cpp
├── CMake
│ ├── Basic
│ │ ├── CMakeLists.txt
│ │ └── cmake.cpp
│ └── Variable
│ │ ├── CMakeLists.txt
│ │ └── Variable.cpp
├── CTest
│ ├── Standalone
│ │ ├── CMakeLists.txt
│ │ └── test.cpp
│ └── Veritas
│ │ ├── CMakeLists.txt
│ │ └── test.cpp
├── Casting
│ ├── Doxyfile
│ ├── DynamicCast
│ │ ├── CMakeLists.txt
│ │ └── DynamicCast.cpp
│ ├── ReinterpretCast
│ │ ├── CMakeLists.txt
│ │ └── ReinterpretCast.cpp
│ └── Simple
│ │ ├── CMakeLists.txt
│ │ └── Casting.cpp
├── CharacterArray
│ ├── CMakeLists.txt
│ ├── CharacterArray.cpp
│ └── Doxyfile
├── Classes
│ ├── ConstructorInheritance
│ │ ├── BlimpPilot.h
│ │ ├── CMakeLists.txt
│ │ ├── ConstructorInheritance.cpp
│ │ ├── Doxyfile
│ │ ├── Person.cpp
│ │ ├── Person.h
│ │ ├── Pilot.cpp
│ │ └── Pilot.h
│ ├── DerivedClass
│ │ ├── CMakeLists.txt
│ │ ├── DerivedClass.cpp
│ │ └── Doxyfile
│ ├── ForwardDeclaration
│ │ ├── CMakeLists.txt
│ │ └── ForwardDeclaration.cpp
│ ├── FriendClass
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── FriendClass.cpp
│ │ ├── Legacy.cxx
│ │ └── Point.h
│ ├── InitializationList
│ │ ├── CMakeLists.txt
│ │ ├── DefaultMemberInit.cpp
│ │ └── Doxyfile
│ ├── NestedClasses
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── NestedClasses.cpp
│ ├── PureVirtualFunction
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── Point.h
│ │ └── PureVirtualFunction.cpp
│ └── Singleton
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── Singleton.cpp
├── CollectionOfTemplateClasses
│ ├── CMakeLists.txt
│ └── CollectionOfTemplateClasses.cpp
├── CommandLineArguments
│ ├── CMakeLists.txt
│ ├── CommandLineArguments.cpp
│ └── Doxyfile
├── Comparison
│ ├── CMakeLists.txt
│ └── Comparison.cpp
├── ConstMemberPointer
│ ├── CMakeLists.txt
│ └── ConstMemberPointer.cpp
├── ConstParameters
│ ├── CMakeLists.txt
│ └── ConstParameters.cpp
├── ConstReference
│ ├── CMakeLists.txt
│ ├── ConstReference.cpp
│ └── Initialization.cpp
├── ConstructorInheritance
│ ├── CMakeLists.txt
│ └── ConstructorInheritance.cpp
├── ContainerOfParentPointers
│ ├── CMakeLists.txt
│ ├── ContainerOfParentPointers.cpp
│ ├── DoesntWork.cpp
│ ├── DoesntWork2.cpp
│ ├── legacy.cpp
│ ├── visitor.cpp
│ └── working.cpp
├── CopyConstructor
│ ├── CMakeLists.txt
│ ├── CopyConstructor.cpp
│ └── legacy.cpp
├── CppUnit
│ ├── CMakeLists.txt
│ └── ConstParameters.cpp
├── CxxTest
│ ├── CMakeLists.txt
│ ├── CxxTest.cpp
│ ├── Tests.h
│ └── tests.cpp
├── DVPTree
│ ├── CMakeLists.txt
│ ├── DVPTree.cpp
│ ├── metric_space_concept.hpp
│ ├── metric_space_search.hpp
│ └── notworking.cpp
├── Debugging
│ ├── Assert
│ │ ├── Assert.cpp
│ │ ├── Assert2.cpp
│ │ ├── CMakeLists.txt
│ │ ├── CMakeLists2.txt
│ │ └── Doxyfile
│ ├── LineNumber
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── LineNumber.cpp
│ └── PrettyFunction
│ │ ├── CMakeLists.txt
│ │ └── PrettyFunction.cpp
├── Decimals
│ ├── CMakeLists.txt
│ └── Decimals.cpp
├── DefaultArguments
│ ├── CMakeLists.txt
│ ├── DefaultArguments.cpp
│ └── Doxyfile
├── Define
│ ├── CMakeLists.txt
│ ├── Define.cpp
│ └── legacy.cxx
├── DegenerateVector
│ ├── CMakeLists.txt
│ ├── DegenerateVector.cpp
│ └── legacy.cpp
├── Demos
│ ├── CMakeLists.txt
│ ├── demo_vtk_3ds_importer.cpp
│ ├── demo_vtk_CADPart.cpp
│ ├── demo_vtk_Delaunay3D.cpp
│ ├── demo_vtk_PerlinTerrain.cpp
│ ├── demo_vtk_arrays.cpp
│ ├── demo_vtk_assembly.cpp
│ ├── demo_vtk_band_contour_terrain.cpp
│ ├── demo_vtk_color_iso_surf.cpp
│ ├── demo_vtk_constrainedDelaunay.cpp
│ ├── demo_vtk_contour2D.cpp
│ ├── demo_vtk_cspline.cpp
│ ├── demo_vtk_cut_combustor.cpp
│ ├── demo_vtk_deci_pro.cpp
│ ├── demo_vtk_delMesh.cpp
│ ├── demo_vtk_filter_CADPart.cpp
│ ├── demo_vtk_gen_tex_coord.cpp
│ ├── demo_vtk_hello.cpp
│ ├── demo_vtk_ice_cream.cpp
│ ├── demo_vtk_image_wrap.cpp
│ ├── demo_vtk_marching.cpp
│ ├── demo_vtk_medical_vol16.cpp
│ ├── demo_vtk_medical_vol16_2.cpp
│ ├── demo_vtk_medical_vol16_3.cpp
│ ├── demo_vtk_plane_texture.cpp
│ ├── demo_vtk_point2cell.cpp
│ ├── demo_vtk_procrustesAlignment.cpp
│ ├── demo_vtk_rainbow.cpp
│ ├── demo_vtk_render_large_image.cpp
│ ├── demo_vtk_simple_raycast.cpp
│ ├── demo_vtk_simple_texturemap2d.cpp
│ ├── demo_vtk_stl_reader.cpp
│ ├── demo_vtk_streamline.cpp
│ ├── demo_vtk_strips.cpp
│ ├── demo_vtk_subsample_grid.cpp
│ ├── demo_vtk_wrap_comb.cpp
│ ├── project_config.h
│ ├── test.cpp
│ └── vtk_minimal.cpp
├── DeriveFromVector
│ ├── CMakeLists.txt
│ └── DeriveFromVector.cpp
├── Doxygen
│ ├── namespaces
│ │ ├── Class1.h
│ │ ├── Class2.h
│ │ ├── Doxyfile
│ │ ├── html
│ │ │ ├── Class1_8h_source.html
│ │ │ ├── Class2_8h_source.html
│ │ │ ├── annotated.html
│ │ │ ├── bc_s.png
│ │ │ ├── classDavid_1_1MyClass.html
│ │ │ ├── classMyClass.html
│ │ │ ├── classMyClass2-members.html
│ │ │ ├── classMyClass2.html
│ │ │ ├── classes.html
│ │ │ ├── closed.png
│ │ │ ├── doxygen.css
│ │ │ ├── doxygen.png
│ │ │ ├── files.html
│ │ │ ├── functions.html
│ │ │ ├── functions_func.html
│ │ │ ├── index.html
│ │ │ ├── installdox
│ │ │ ├── nav_f.png
│ │ │ ├── nav_h.png
│ │ │ ├── open.png
│ │ │ ├── search
│ │ │ │ ├── all_66.html
│ │ │ │ ├── all_6d.html
│ │ │ │ ├── classes_6d.html
│ │ │ │ ├── close.png
│ │ │ │ ├── functions_66.html
│ │ │ │ ├── mag_sel.png
│ │ │ │ ├── nomatches.html
│ │ │ │ ├── search.css
│ │ │ │ ├── search.js
│ │ │ │ ├── search_l.png
│ │ │ │ ├── search_m.png
│ │ │ │ └── search_r.png
│ │ │ ├── tab_a.png
│ │ │ ├── tab_b.png
│ │ │ ├── tab_h.png
│ │ │ ├── tab_s.png
│ │ │ └── tabs.css
│ │ ├── latex
│ │ │ ├── Makefile
│ │ │ ├── annotated.tex
│ │ │ ├── classDavid_1_1MyClass.tex
│ │ │ ├── classMyClass.tex
│ │ │ ├── classMyClass2.tex
│ │ │ └── refman.tex
│ │ ├── readme.txt
│ │ ├── subdir
│ │ │ └── Class3.h
│ │ └── test.cpp
│ ├── simple
│ │ ├── Class1.h
│ │ ├── Class2.h
│ │ ├── Doxyfile
│ │ ├── html
│ │ │ ├── Class1_8h_source.html
│ │ │ ├── Class2_8h_source.html
│ │ │ ├── annotated.html
│ │ │ ├── bc_s.png
│ │ │ ├── classMyClass.html
│ │ │ ├── classMyClass2-members.html
│ │ │ ├── classMyClass2.html
│ │ │ ├── classes.html
│ │ │ ├── closed.png
│ │ │ ├── doxygen.css
│ │ │ ├── doxygen.png
│ │ │ ├── files.html
│ │ │ ├── functions.html
│ │ │ ├── functions_func.html
│ │ │ ├── index.html
│ │ │ ├── installdox
│ │ │ ├── nav_f.png
│ │ │ ├── nav_h.png
│ │ │ ├── open.png
│ │ │ ├── search
│ │ │ │ ├── all_66.html
│ │ │ │ ├── all_6d.html
│ │ │ │ ├── classes_6d.html
│ │ │ │ ├── close.png
│ │ │ │ ├── functions_66.html
│ │ │ │ ├── mag_sel.png
│ │ │ │ ├── nomatches.html
│ │ │ │ ├── search.css
│ │ │ │ ├── search.js
│ │ │ │ ├── search_l.png
│ │ │ │ ├── search_m.png
│ │ │ │ └── search_r.png
│ │ │ ├── tab_a.png
│ │ │ ├── tab_b.png
│ │ │ ├── tab_h.png
│ │ │ ├── tab_s.png
│ │ │ └── tabs.css
│ │ ├── latex
│ │ │ ├── Makefile
│ │ │ ├── annotated.tex
│ │ │ ├── classMyClass.tex
│ │ │ ├── classMyClass2.tex
│ │ │ └── refman.tex
│ │ ├── readme.txt
│ │ └── test.cpp
│ └── subdirectories
│ │ ├── Class1.h
│ │ ├── Class2.h
│ │ ├── Doxyfile
│ │ ├── html
│ │ ├── Class1_8h_source.html
│ │ ├── Class2_8h_source.html
│ │ ├── Class3_8h_source.html
│ │ ├── annotated.html
│ │ ├── bc_s.png
│ │ ├── classDavid_1_1MyClass.html
│ │ ├── classMyClass.html
│ │ ├── classMyClass2-members.html
│ │ ├── classMyClass2.html
│ │ ├── classMyClass3.html
│ │ ├── classes.html
│ │ ├── closed.png
│ │ ├── doxygen.css
│ │ ├── doxygen.png
│ │ ├── files.html
│ │ ├── functions.html
│ │ ├── functions_func.html
│ │ ├── index.html
│ │ ├── installdox
│ │ ├── nav_f.png
│ │ ├── nav_h.png
│ │ ├── open.png
│ │ ├── search
│ │ │ ├── all_66.html
│ │ │ ├── all_6d.html
│ │ │ ├── classes_6d.html
│ │ │ ├── close.png
│ │ │ ├── functions_66.html
│ │ │ ├── mag_sel.png
│ │ │ ├── nomatches.html
│ │ │ ├── search.css
│ │ │ ├── search.js
│ │ │ ├── search_l.png
│ │ │ ├── search_m.png
│ │ │ └── search_r.png
│ │ ├── tab_a.png
│ │ ├── tab_b.png
│ │ ├── tab_h.png
│ │ ├── tab_s.png
│ │ └── tabs.css
│ │ ├── latex
│ │ ├── Makefile
│ │ ├── annotated.tex
│ │ ├── classDavid_1_1MyClass.tex
│ │ ├── classMyClass.tex
│ │ ├── classMyClass2.tex
│ │ ├── classMyClass3.tex
│ │ └── refman.tex
│ │ ├── readme.txt
│ │ ├── subdir
│ │ └── Class3.h
│ │ └── test.cpp
├── Eigen
│ ├── Adjoint
│ │ ├── Adjoint.cpp
│ │ └── CMakeLists.txt
│ ├── ConvertToOpenCV
│ │ ├── CMakeLists.txt
│ │ ├── ConvertToOpenCV.cpp
│ │ └── FindEigen3.cmake
│ ├── FindingEigen2WithCMake
│ │ ├── BuiltIn.cpp
│ │ ├── CMakeLists.txt
│ │ ├── CMakeLists.txt.works
│ │ ├── FindEigen2.cmake
│ │ ├── FindUmfpack.cmake
│ │ ├── SparseLeastSquares.cpp
│ │ └── SparseMatrixSolver.cpp
│ ├── FindingEigen3WithCMake
│ │ ├── BuiltIn.cpp
│ │ ├── CMakeLists.txt
│ │ ├── CMakeLists.txt.works
│ │ ├── FindEigen3.cmake
│ │ ├── FindEigen3.cmake.bak
│ │ ├── FindUmfpack.cmake
│ │ ├── FindingEigen3WithCMake.cpp
│ │ └── SparseLeastSquares.cpp
│ ├── Homogeneous
│ │ ├── CMakeLists.txt
│ │ ├── FindEigen3.cmake
│ │ ├── Homogeneous.cpp
│ │ └── legacy.cpp
│ ├── LeastSquares
│ │ ├── CMakeLists.txt
│ │ └── LeastSquares.cpp
│ ├── LevenbergMarquardt
│ │ ├── AnalyticDerivative.cpp
│ │ ├── CMakeLists.txt
│ │ ├── CurveFitting.cpp
│ │ └── NumericalDerivative.cpp
│ ├── LinearSystem
│ │ ├── CMakeLists.txt
│ │ └── LinearSystem.cpp
│ ├── Matrix
│ │ ├── CMakeLists.txt
│ │ ├── Identity.cpp
│ │ └── Matrix.cpp
│ ├── ProjectPoint
│ │ ├── CMakeLists.txt
│ │ ├── FindEigen3.cmake
│ │ ├── ProjectPoint.cpp
│ │ └── ProjectPointHardCoded.cpp
│ ├── Rodrigues
│ │ ├── CMakeLists.txt
│ │ ├── FindEigen3.cmake
│ │ └── Rodrigues.cpp
│ ├── STLVectorOfVectors
│ │ ├── CMakeLists.txt
│ │ ├── FindEigen3.cmake
│ │ └── STLVectorOfVectors.cpp
│ ├── SVD
│ │ ├── CMakeLists.txt
│ │ └── SVD.cpp
│ ├── SparseMatrix
│ │ ├── CMakeLists.txt
│ │ └── SparseMatrix.cpp
│ ├── SparseMatrixSolver
│ │ ├── BuiltIn.cpp
│ │ ├── CMakeLists.txt
│ │ ├── CMakeLists.txt.works
│ │ ├── FindEigen3.cmake
│ │ ├── FindUmfpack.cmake
│ │ ├── SparseLeastSquares.cpp
│ │ └── SparseMatrixSolver.cpp
│ ├── TemplateFunction
│ │ ├── CMakeLists.txt
│ │ ├── FindEigen3.cmake
│ │ └── TemplateFunction.cpp
│ └── Vector
│ │ ├── CMakeLists.txt
│ │ └── Vector.cpp
├── EmptyProject
│ ├── CMakeLists.txt
│ ├── Point.h
│ └── Test.cpp
├── Enum
│ ├── CMakeLists.txt
│ └── Enum.cpp
├── Exceptions
│ ├── CustomException
│ │ └── CustomException.cpp
│ ├── Debug
│ │ ├── CMakeLists.txt
│ │ └── Debug.cpp
│ ├── Function
│ │ └── ExceptionInFunction.cpp
│ ├── General
│ │ ├── CMakeLists.txt
│ │ └── Exceptions.cpp
│ ├── RuntimeError
│ │ └── runtime_error.cpp
│ └── UncaughtException
│ │ ├── CMakeLists.txt
│ │ ├── UncaughtException.cpp
│ │ └── working.cpp
├── ExecuteLinuxCommand
│ ├── CMakeLists.txt
│ ├── CallLinuxCommands.cpp
│ └── Doxyfile
├── FBO
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ ├── FBO.cpp
│ └── FBO.cpp.bak
├── FFTWTest
│ ├── CMakeLists.txt
│ ├── FFTWTest.cpp
│ └── FindFFTW.cmake
├── Factory
│ ├── CMakeLists.txt
│ └── Factory.cpp
├── FloatVsDouble
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ └── FloatVsDouble.cpp
├── Flush
│ ├── CMakeLists.txt
│ └── Flush.cpp
├── ForwardDeclaration
│ ├── CMakeLists.txt
│ ├── ForwardDeclaration.cpp
│ ├── Point.cpp
│ └── Point.h
├── FunctionPointer
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ ├── FunctionPointer.cpp
│ └── cube.txt
├── Functor
│ ├── Basic.cpp
│ ├── CMakeLists.txt
│ └── Functor.cpp
├── GSL
│ ├── Constrained Minimization with OOL
│ │ ├── Example.cpp
│ │ └── Min.cpp
│ ├── Minimization with Gradient
│ │ └── Min.cpp
│ ├── Minimization with Numerical Gradient
│ │ └── Min.cpp
│ ├── Minimization with OOL Numerical Gradient
│ │ └── Min.cpp
│ ├── Minimization without Gradient
│ │ └── Min.cpp
│ ├── Numerical Gradient One Variable
│ │ └── Numerical.cpp
│ └── Test1
│ │ └── Test1.cpp
├── GTest
│ ├── CMakeLists.txt
│ ├── GTest.cpp
│ └── GTestWithMain.cpp
├── Gaussian
│ ├── CMakeLists.txt
│ └── Gaussian.cpp
├── Generics
│ ├── CMakeLists.txt
│ ├── Container.cpp
│ └── Generics.cpp
├── Geotiff
│ └── Read
│ │ ├── CMakeLists.txt
│ │ └── Read.cpp
├── HexToInt
│ ├── CMakeLists.txt
│ └── HexToInt.cpp
├── IO
│ ├── FileInput
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── Example.txt
│ │ ├── FileInput.cpp
│ │ └── cube.txt
│ ├── FileOutput
│ │ ├── CMakeLists.txt
│ │ └── FileOutput.cpp
│ └── Setw
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── Setw.cpp
├── Infinity
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ └── Infinity.cpp
├── Inheritance
│ ├── CMakeLists.txt
│ ├── Inheritance.cpp
│ ├── Overload.cpp
│ └── Overload2.cpp
├── InitializationList
│ ├── CMakeLists.txt
│ └── InitializationList.cpp
├── Initializer
│ ├── CMakeLists.txt
│ └── Initializer.cpp
├── InitializingBaseClassMembers
│ ├── CMakeLists.txt
│ └── InitializingBaseClassMembers.cpp
├── Interpolation
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ └── Interpolation.cpp
├── Iterator
│ ├── CMakeLists.txt
│ ├── CustomIterator.cpp
│ ├── Dereferencing.cpp
│ └── Iterator.cpp
├── IteratorFromObject
│ ├── CMakeLists.txt
│ └── IteratorFromObject.cpp
├── KeyboardInput
│ ├── CMakeLists.txt
│ ├── Cin.cpp
│ └── Doxyfile
├── Logging
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ └── Logging.cpp
├── Loops
│ └── DoWhile
│ │ ├── CMakeLists.txt
│ │ ├── DoWhile.cpp
│ │ ├── Doxyfile
│ │ ├── ReadFile.cpp
│ │ └── test.txt
├── Macros
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ └── Macros.cpp
├── Math
│ ├── AbsoluteValue
│ │ ├── AbsoluteValue.cpp
│ │ └── CMakeLists.txt
│ ├── Exponential
│ │ ├── CMakeLists.txt
│ │ └── Exponential.cpp
│ ├── Log
│ │ ├── CMakeLists.txt
│ │ └── Log.cpp
│ ├── Median
│ │ ├── CMakeLists.txt
│ │ ├── Median.cpp
│ │ └── legacy.cxx
│ ├── MinMax
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── MinMax.cpp
│ ├── Pi
│ │ ├── CMakeLists.txt
│ │ └── Pi.cpp
│ ├── Pow
│ │ ├── CMakeLists.txt
│ │ └── Pow.cpp
│ └── Trig
│ │ ├── CMakeLists.txt
│ │ └── Trig.cpp
├── MemberVariable
│ ├── CMakeLists.txt
│ └── MemberVariable.cpp
├── MemberVariableClass
│ ├── CMakeLists.txt
│ └── MemberVariableClass.cpp
├── Mixin
│ ├── CMakeLists.txt
│ └── Mixin.cpp
├── Mod
│ ├── CMakeLists.txt
│ └── Mod.cpp
├── NAN
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ └── NAN.cpp
├── Namespaces
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ ├── Namespaces.cpp
│ ├── Namespaces.h
│ └── Test.cpp
├── ObjectFiles
│ ├── CMakeLists.txt
│ ├── main
│ ├── main.cpp
│ ├── test.cpp
│ ├── test.h
│ └── test.o
├── Octave
│ ├── CMakeLists.txt
│ ├── OctaveTest.cpp
│ ├── OctaveTest.cpp.bak
│ ├── ProbNumeric.m
│ └── octave.cc.old
├── Offsetof
│ ├── CMakeLists.txt
│ └── Offsetof.cpp
├── OpenCV
│ ├── Basics
│ │ ├── Matrix
│ │ │ ├── CMakeLists.txt
│ │ │ └── Matrix.cxx
│ │ ├── Matrix3Channel
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Matrix3Channel.cxx
│ │ │ └── build
│ │ │ │ ├── CMakeCache.txt
│ │ │ │ ├── CMakeFiles
│ │ │ │ ├── CMakeCCompiler.cmake
│ │ │ │ ├── CMakeCXXCompiler.cmake
│ │ │ │ ├── CMakeDetermineCompilerABI_C.bin
│ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin
│ │ │ │ ├── CMakeDirectoryInformation.cmake
│ │ │ │ ├── CMakeSystem.cmake
│ │ │ │ ├── CompilerIdC
│ │ │ │ │ └── CMakeCCompilerId.c
│ │ │ │ ├── CompilerIdCXX
│ │ │ │ │ └── CMakeCXXCompilerId.cpp
│ │ │ │ ├── Makefile.cmake
│ │ │ │ ├── Makefile2
│ │ │ │ ├── Matrix3Channel.dir
│ │ │ │ │ ├── CXX.includecache
│ │ │ │ │ ├── DependInfo.cmake
│ │ │ │ │ ├── Matrix3Channel.cxx.o
│ │ │ │ │ ├── build.make
│ │ │ │ │ ├── cmake_clean.cmake
│ │ │ │ │ ├── depend.internal
│ │ │ │ │ ├── depend.make
│ │ │ │ │ ├── flags.make
│ │ │ │ │ ├── link.txt
│ │ │ │ │ └── progress.make
│ │ │ │ ├── TargetDirectories.txt
│ │ │ │ ├── cmake.check_cache
│ │ │ │ └── progress.marks
│ │ │ │ ├── Makefile
│ │ │ │ ├── Matrix3Channel
│ │ │ │ └── cmake_install.cmake
│ │ ├── MatrixInverse
│ │ │ ├── CMakeLists.txt
│ │ │ └── MatrixInverse.cxx
│ │ ├── MatrixMultiplication
│ │ │ ├── CMakeLists.txt
│ │ │ └── MatrixMultiplication.cxx
│ │ ├── MatrixProperties
│ │ │ ├── CMakeLists.txt
│ │ │ └── MatrixProperties.cxx
│ │ ├── Point
│ │ │ ├── CMakeLists.txt
│ │ │ └── Point.cxx
│ │ ├── PseudoInverse
│ │ │ ├── CMakeLists.txt
│ │ │ └── PseudoInverse.cxx
│ │ └── Scalar
│ │ │ ├── CMakeLists.txt
│ │ │ └── Scalar.cxx
│ ├── CalibrateCamera
│ │ ├── CMakeLists.txt
│ │ └── CalibrateCamera.cxx
│ ├── CalibrationMatrixValues
│ │ ├── CMakeLists.txt
│ │ └── CalibrationMatrixValues.cxx
│ ├── CheckerBoardCalibration
│ │ ├── CMakeLists.txt
│ │ ├── CalibrateAndDisplay.cxx
│ │ ├── CheckerBoardCalibration.cxx
│ │ ├── HasCheckerboard.cxx
│ │ ├── close.jpg
│ │ ├── close_small.jpg
│ │ ├── far.jpg
│ │ ├── far_small.jpg
│ │ ├── old
│ │ │ ├── board.jpg
│ │ │ ├── boardGray.jpg
│ │ │ ├── boardGray2.jpg
│ │ │ ├── brownBoard.jpg
│ │ │ └── brownBoard2.jpg
│ │ ├── orig.cxx
│ │ ├── realboard.png
│ │ └── small.cxx
│ ├── Convenience
│ │ ├── ComposeP
│ │ │ ├── CMakeLists.txt
│ │ │ └── ComposeP.cxx
│ │ └── ConvertMatrixType
│ │ │ ├── CMakeLists.txt
│ │ │ └── ConvertMatrixType.cxx
│ ├── ConvertPointsHomogeneous
│ │ ├── CMakeLists.txt
│ │ ├── ConvertPointsHomogeneous.cxx
│ │ └── working.cxx
│ ├── ConvertToEigen
│ │ ├── CMakeLists.txt
│ │ ├── ConvertToEigen.cxx
│ │ └── FindEigen3.cmake
│ ├── DecomposeProjectionMatrix
│ │ ├── CMakeLists.txt
│ │ └── DecomposeProjectionMatrix.cxx
│ ├── DrawChessboardCorners
│ │ ├── CMakeLists.txt
│ │ └── DrawChessboardCorners.cxx
│ ├── FaceDetection
│ │ ├── CMakeLists.txt
│ │ ├── FaceDetection.cxx
│ │ ├── RightEye.xml
│ │ ├── calleigh.jpg
│ │ ├── face.jpg
│ │ ├── girls.jpg
│ │ ├── legacy.cxx
│ │ └── working.cxx
│ ├── FindHomography
│ │ ├── CMakeLists.txt
│ │ └── FindHomography.cxx
│ ├── FundamentalMatrix
│ │ ├── CMakeLists.txt
│ │ ├── FundamentalMatrix.cxx
│ │ └── Legacy.cxx
│ ├── GrabCutDemo
│ │ ├── CMakeLists.txt
│ │ ├── GrabCutDemo.cpp
│ │ ├── bird.jpg
│ │ └── orig.cpp
│ ├── GrabFrames
│ │ ├── AnyCamera.cxx
│ │ ├── CMakeLists.txt
│ │ ├── ContinuousCaptureDisplay.cxx
│ │ ├── GrabFrames.cxx
│ │ └── SaveSingleFrame.cxx
│ ├── Homogeneous
│ │ ├── CMakeLists.txt
│ │ └── Homogeneous.cxx
│ ├── IO
│ │ ├── DisplayImage
│ │ │ ├── CMakeLists.txt
│ │ │ ├── DisplayImage.cxx
│ │ │ └── calleigh.jpg
│ │ ├── ReadImage
│ │ │ ├── CMakeLists.txt
│ │ │ ├── ReadImage.cxx
│ │ │ └── calleigh.jpg
│ │ ├── WriteImage
│ │ │ ├── CMakeLists.txt
│ │ │ ├── WriteImage.cxx
│ │ │ └── test.jpg
│ │ └── WriteMatrix
│ │ │ ├── 3D.cxx
│ │ │ ├── CMakeLists.txt
│ │ │ └── WriteMatrix.cxx
│ ├── Image
│ │ ├── CMakeLists.txt
│ │ └── Image.cxx
│ ├── Inpainting
│ │ ├── AcademyHall.jpg
│ │ ├── CMakeLists.txt
│ │ ├── Inpainting.cxx
│ │ └── fruits.jpg
│ ├── Matcher
│ │ ├── AcademyHall.jpg
│ │ ├── AcademyHall2.jpg
│ │ ├── AcademyHall3.jpg
│ │ ├── CMakeLists.txt
│ │ ├── Matcher.cxx
│ │ └── MatcherBruteForce.cxx
│ ├── Matrix
│ │ ├── CMakeLists.txt
│ │ └── Matrix.cxx
│ ├── MeanShiftSegmentation
│ │ ├── AcademyHall.jpg
│ │ ├── CMakeLists.txt
│ │ └── MeanShiftSegmentation.cxx
│ ├── ProjectPoints
│ │ ├── CMakeLists.txt
│ │ └── ProjectPoints.cxx
│ ├── Reconstruct3D
│ │ ├── CMakeLists.txt
│ │ └── Reconstruct3D.cxx
│ ├── RectifyPair
│ │ ├── 1.jpg
│ │ ├── 2.jpg
│ │ ├── CMakeLists.txt
│ │ ├── Legacy.cxx
│ │ ├── RectifyPair.cxx
│ │ ├── old.cxx
│ │ ├── output.jpg
│ │ └── test.jpg
│ ├── RemoveDistortion
│ │ ├── CMakeLists.txt
│ │ ├── RemoveDistortion.cxx
│ │ ├── build
│ │ │ ├── CMakeCache.txt
│ │ │ ├── CMakeFiles
│ │ │ │ ├── CMakeCCompiler.cmake
│ │ │ │ ├── CMakeCXXCompiler.cmake
│ │ │ │ ├── CMakeDetermineCompilerABI_C.bin
│ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin
│ │ │ │ ├── CMakeDirectoryInformation.cmake
│ │ │ │ ├── CMakeSystem.cmake
│ │ │ │ ├── CompilerIdC
│ │ │ │ │ └── CMakeCCompilerId.c
│ │ │ │ ├── CompilerIdCXX
│ │ │ │ │ └── CMakeCXXCompilerId.cpp
│ │ │ │ ├── Makefile.cmake
│ │ │ │ ├── Makefile2
│ │ │ │ ├── RemoveDistortion.dir
│ │ │ │ │ ├── CXX.includecache
│ │ │ │ │ ├── DependInfo.cmake
│ │ │ │ │ ├── RemoveDistortion.cxx.o
│ │ │ │ │ ├── build.make
│ │ │ │ │ ├── cmake_clean.cmake
│ │ │ │ │ ├── depend.internal
│ │ │ │ │ ├── depend.make
│ │ │ │ │ ├── flags.make
│ │ │ │ │ ├── link.txt
│ │ │ │ │ └── progress.make
│ │ │ │ ├── TargetDirectories.txt
│ │ │ │ ├── cmake.check_cache
│ │ │ │ └── progress.marks
│ │ │ ├── Makefile
│ │ │ ├── RemoveDistortion
│ │ │ └── cmake_install.cmake
│ │ ├── image.jpg
│ │ ├── orig.cxx
│ │ └── output.jpg
│ ├── SolvePNP
│ │ ├── CMakeLists.txt
│ │ └── SolvePNP.cxx
│ ├── SpinImages
│ │ ├── CMakeLists.txt
│ │ └── SpinImages.cxx
│ ├── StereoCalibration
│ │ ├── 1.jpg
│ │ ├── 2.jpg
│ │ ├── CMakeLists.txt
│ │ ├── StereoCalibration.cxx
│ │ ├── board1.jpg.highres
│ │ ├── board2.jpg.highres
│ │ ├── old
│ │ │ ├── board1.jpg
│ │ │ └── board2.jpg
│ │ └── orig.cxx
│ ├── StereoRectification
│ │ ├── CMakeLists.txt
│ │ ├── StereoRectification.cxx
│ │ ├── board1.jpg
│ │ ├── board2.jpg
│ │ ├── old.cxx
│ │ └── orig.cxx
│ ├── StereoRectifyUncalibrated
│ │ ├── CMakeLists.txt
│ │ └── StereoRectifyUncalibrated.cxx
│ ├── StereoRegistration
│ │ ├── CMakeLists.txt
│ │ └── StereoRegistration.cxx
│ └── WishList
│ │ └── DrawCheckerBoard
│ │ ├── CMakeLists.txt
│ │ ├── CheckerBoard.cxx
│ │ ├── cvchessboardgenerator.cpp
│ │ └── cvchessboardgenerator.h
├── OpenGL
│ ├── 3DRasterPos
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── RasterPos.cpp
│ ├── Alpha
│ │ ├── Alpha.cpp
│ │ ├── CMakeLists.txt
│ │ └── Doxyfile
│ ├── Buffers
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── OpenGLBuffers.cpp
│ ├── ColorPick
│ │ ├── CMakeLists.txt
│ │ ├── ColorPick.cpp
│ │ ├── Doxyfile
│ │ └── MouseClass.h
│ ├── DisplayLists
│ │ ├── CMakeLists.txt
│ │ ├── DisplayLists.cpp
│ │ └── Doxyfile
│ ├── DrawCube
│ │ ├── CMakeLists.txt
│ │ └── DrawCube.cpp
│ ├── ErrorChecking
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── ErrorChecking.cpp
│ ├── Lighting
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── Lighting.cpp
│ ├── Menu
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── Test.cpp
│ ├── Mouse
│ │ ├── CMakeLists.txt
│ │ ├── Mouse.cpp
│ │ └── MouseClass.h
│ ├── NoWindow
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── OpenGLNoWindow.cpp
│ ├── Pick
│ │ ├── CMakeLists.txt
│ │ ├── Display.cpp
│ │ ├── Display.h
│ │ ├── Doxyfile
│ │ ├── MouseClass.h
│ │ ├── OpenGLinit.cpp
│ │ ├── OpenGLinit.h
│ │ ├── Other.cpp
│ │ ├── Point.cpp
│ │ ├── Point.h
│ │ ├── Test.cpp
│ │ ├── Vector.cpp
│ │ ├── Vector.h
│ │ ├── WindowClass.cpp
│ │ ├── WindowClass.h
│ │ ├── zpr.c
│ │ └── zpr.h
│ ├── ScreenShot
│ │ ├── CMakeLists.txt
│ │ ├── Display.cpp
│ │ ├── Display.h
│ │ ├── Doxyfile
│ │ ├── Screenshot.cpp
│ │ ├── Screenshot.h
│ │ └── Test.cpp
│ ├── Subwindows
│ │ ├── Test.cpp
│ │ ├── zpr.c
│ │ └── zpr.h
│ ├── Test
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── Test.cpp
│ └── Text
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── Legacy.cxx
│ │ └── Text.cpp
├── OpenGM
│ ├── BigBP.cpp
│ ├── CMakeLists.txt
│ ├── CompleteGraph.cpp
│ ├── CustomVisitor.cpp
│ ├── EvaluateEnergy.cpp
│ ├── big.cpp
│ └── opengm.cpp
├── OpenMP
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ ├── openMPtest
│ │ ├── Makefile
│ │ ├── test
│ │ └── test.cpp
│ └── openmp.cpp
├── OpenNL
│ ├── CMakeLists.txt
│ └── OpenNL.cpp
├── OverloadOperator
│ ├── CMakeLists.txt
│ ├── LessThan
│ │ ├── CMakeLists.txt
│ │ ├── LessThan.cpp
│ │ └── MemberFunction.cpp
│ ├── Output
│ │ ├── CMakeLists.txt
│ │ └── Output.cpp
│ ├── OverloadOperator.cpp
│ └── Parenthesis
│ │ ├── CMakeLists.txt
│ │ └── Parenthesis.cpp
├── PCL
│ ├── Benchmarks
│ │ └── PFH
│ │ │ ├── PFHTiming.txt
│ │ │ ├── pfhbenchmark.png
│ │ │ └── pfhtiming.m
│ ├── CheckForNaN
│ │ ├── CMakeLists.txt
│ │ └── CheckForNaN.cpp
│ ├── CustomPointType
│ │ ├── .fuse_hidden000029de00000016
│ │ ├── CMakeLists.txt
│ │ ├── CustomPointType.cpp
│ │ ├── legacy.cpp
│ │ ├── test.pcd
│ │ └── works.cpp
│ ├── Descriptors
│ │ ├── ClusteredViewpointFeatureHistogram
│ │ │ ├── .fuse_hidden000012fa00000003
│ │ │ ├── CMakeLists.txt
│ │ │ ├── CVFH_Indices.cpp
│ │ │ ├── ClusteredViewpointFeatureHistogram.cpp
│ │ │ ├── bunny.pcd
│ │ │ ├── indices_legacy.cpp
│ │ │ └── test.pcd
│ │ ├── FastPointFeatureHistogram
│ │ │ ├── CMakeLists.txt
│ │ │ ├── FastPointFeatureHistogram.cpp
│ │ │ ├── bunny.pcd
│ │ │ └── test.pcd
│ │ ├── IntegralImageNormalEstimation
│ │ │ ├── CMakeLists.txt
│ │ │ └── IntegralImageNormalEstimation.cpp
│ │ ├── NARF
│ │ │ ├── .fuse_hidden000012fa00000003
│ │ │ ├── CMakeLists.txt
│ │ │ ├── NARF.cpp
│ │ │ ├── legacy.cpp
│ │ │ └── test.pcd
│ │ ├── NormalEstimation
│ │ │ ├── CMakeLists.txt
│ │ │ ├── NormalEstimation.cpp
│ │ │ ├── legacy.cpp
│ │ │ ├── test.pcd
│ │ │ └── working.cpp
│ │ ├── NormalEstimationOrganizedCloud
│ │ │ ├── CMakeLists.txt
│ │ │ └── NormalEstimationOrganizedCloud.cpp
│ │ ├── NormalEstimationWithCurvature
│ │ │ ├── CMakeLists.txt
│ │ │ └── NormalEstimationWithCurvature.cpp
│ │ ├── PFHRGBEstimation
│ │ │ ├── .fuse_hidden000012fa00000003
│ │ │ ├── CMakeLists.txt
│ │ │ └── PFHRGBEstimation.cpp
│ │ ├── PointFeatureHistogram
│ │ │ ├── .fuse_hidden000012fa00000003
│ │ │ ├── Benchmarking.cpp
│ │ │ ├── CMakeLists.txt
│ │ │ ├── PointFeatureHistogram.cpp
│ │ │ ├── SinglePoint.cpp
│ │ │ ├── bunny.pcd
│ │ │ └── test.pcd
│ │ ├── PointFeatureHistogramNormalType
│ │ │ ├── .fuse_hidden000012fa00000003
│ │ │ ├── CMakeLists.txt
│ │ │ └── PointFeatureHistogramNormalType.cpp
│ │ ├── PrincipalCurvaturesEstimation
│ │ │ ├── .fuse_hidden000012fa00000003
│ │ │ ├── CMakeLists.txt
│ │ │ ├── PrincipalCurvaturesEstimation.cpp
│ │ │ └── test.pcd
│ │ ├── SHOT
│ │ │ ├── .fuse_hidden000012fa00000003
│ │ │ ├── CMakeLists.txt
│ │ │ ├── SHOT.cpp
│ │ │ └── test.pcd
│ │ ├── ShapeContext
│ │ │ ├── .fuse_hidden000012fa00000003
│ │ │ ├── CMakeLists.txt
│ │ │ ├── ShapeContext.cpp
│ │ │ └── test.pcd
│ │ ├── SpinImages
│ │ │ ├── .fuse_hidden000012fa00000003
│ │ │ ├── CMakeLists.txt
│ │ │ ├── SpinImages.cpp
│ │ │ ├── legacy.cpp
│ │ │ └── test.pcd
│ │ └── ViewpointFeatureHistogram
│ │ │ ├── .fuse_hidden000012fa00000003
│ │ │ ├── CMakeLists.txt
│ │ │ ├── ViewpointFeatureHistogram.cpp
│ │ │ ├── bunny.pcd
│ │ │ └── test.pcd
│ ├── ExtractIndices
│ │ ├── CMakeLists.txt
│ │ ├── ExtractIndices.cpp
│ │ └── test.pcd
│ ├── Filters
│ │ ├── PassThrough
│ │ │ ├── .fuse_hidden000004d500000005
│ │ │ ├── CMakeLists.txt
│ │ │ ├── PassThrough.cpp
│ │ │ └── legacy.cpp
│ │ └── RemoveNaNFromPointCloud
│ │ │ ├── CMakeLists.txt
│ │ │ └── RemoveNaNFromPointCloud.cpp
│ ├── GreedyProjectionTriangulation
│ │ ├── CMakeLists.txt
│ │ ├── GreedyProjectionTriangulation.cpp
│ │ └── test.pcd
│ ├── IO
│ │ ├── RangeImageOutput
│ │ │ ├── CMakeLists.txt
│ │ │ └── RangeImageOutput.cpp
│ │ ├── ReadFile
│ │ │ ├── CMakeLists.txt
│ │ │ ├── ReadFile.cpp
│ │ │ ├── test.pcd
│ │ │ └── test.txt
│ │ └── ReadPCDIntoWrongType
│ │ │ ├── CMakeLists.txt
│ │ │ └── ReadPCDIntoWrongType.cpp
│ ├── KDTree
│ │ ├── CMakeLists.txt
│ │ ├── KDTree.cpp
│ │ └── legacy.cpp
│ ├── MakeShared
│ │ ├── CMakeLists.txt
│ │ └── MakeShared.cpp
│ ├── OrganizedPointCloudToRangeImage
│ │ ├── CMakeLists.txt
│ │ ├── OrganizedPointCloudToRangeImage.cpp
│ │ ├── OrganizedPointCloudToRangeImageManual.cpp
│ │ ├── legacy.cpp
│ │ └── simple.cpp
│ ├── PointCloud
│ │ ├── ColoredPointCloud
│ │ │ ├── CMakeLists.txt
│ │ │ └── ColoredPointCloud.cpp
│ │ ├── ConcatenateFields
│ │ │ ├── CMakeLists.txt
│ │ │ └── ConcatenateFields.cpp
│ │ ├── CopyPointCloud
│ │ │ ├── CMakeLists.txt
│ │ │ └── CopyPointCloud.cpp
│ │ ├── OrganizedPointCloud
│ │ │ ├── CMakeLists.txt
│ │ │ └── OrganizedPointCloud.cpp
│ │ ├── PointCloud2
│ │ │ ├── CMakeLists.txt
│ │ │ └── PointCloud2.cpp
│ │ └── UnorganizedPointCloud
│ │ │ ├── CMakeLists.txt
│ │ │ └── PointCloud.cpp
│ ├── PointIndices
│ │ ├── CMakeLists.txt
│ │ └── PointIndices.cpp
│ ├── PointTypes
│ │ ├── CMakeLists.txt
│ │ └── PointTypes.cpp
│ ├── RangeImage
│ │ ├── CMakeLists.txt
│ │ └── RangeImage.cpp
│ ├── ScopeTime
│ │ ├── CMakeLists.txt
│ │ ├── ScopeTime.cpp
│ │ └── test.pcd
│ ├── Segmentation
│ │ ├── CMakeLists.txt
│ │ ├── Segmentation.cpp
│ │ ├── Simple.cpp
│ │ └── test.pcd
│ ├── Traits
│ │ ├── CMakeLists.txt
│ │ ├── Traits.cpp
│ │ ├── compiles.cpp
│ │ └── legacy.cpp
│ └── VoxelGrid
│ │ ├── CMakeLists.txt
│ │ ├── VoxelGrid.cpp
│ │ └── test.pcd
├── PThreads
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ ├── PThreads.cpp
│ └── works.cpp
├── ParallelSort
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ ├── ParallelSort.h
│ ├── ParallelSort.hxx
│ ├── ParallelSortDemo.cpp
│ └── ParallelSortExample.cpp
├── PercentComplete
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ └── PercentCompleteExample.cpp
├── PointerToVector
│ ├── CMakeLists.txt
│ └── PointerToVector.cpp
├── Pointers
│ ├── ConstPointer
│ │ ├── CMakeLists.txt
│ │ ├── ConstPointer.cpp
│ │ └── legacy.cpp
│ ├── ReturningPointers
│ │ ├── CMakeLists.txt
│ │ └── ReturningPointers.cpp
│ └── Standard
│ │ ├── CMakeLists.txt
│ │ └── Pointers.cpp
├── PolicyClass
│ ├── CMakeLists.txt
│ └── PolicyClass.cpp
├── PolicyVsInheritanceTiming
│ ├── CMakeLists.txt
│ └── PolicyVsInheritanceTiming.cpp
├── Polymorphism
│ ├── CMakeLists.txt
│ ├── Downcasting.cpp
│ ├── Polymorphism.cpp
│ └── orig.cpp
├── Pragma
│ ├── CMakeLists.txt
│ └── Pragma.cpp
├── Preprocessor
│ ├── CMakeLists.txt
│ └── Preprocessor.cpp
├── Punctuation
│ ├── CMakeLists.txt
│ └── Punctuation.cpp
├── QT.zip
├── RPISRC
│ └── rkpl
│ │ └── Basics
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── rkpl.cpp
├── RandomNumbers
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ └── RandomNumbers.cpp
├── Recursion
│ ├── CMakeLists.txt
│ └── Recursion.cpp
├── ReferenceToVector
│ ├── CMakeLists.txt
│ ├── ReferenceToAVector.cpp
│ └── ReferenceToVector.cpp
├── ReferenceWrapper
│ ├── CMakeLists.txt
│ └── ReferenceWrapper.cpp
├── References
│ ├── PassByReference
│ │ ├── CMakeLists.txt
│ │ └── Reference.cpp
│ ├── ReferenceMembers
│ │ ├── CMakeLists.txt
│ │ └── ReferenceMembers.cpp
│ └── ReturnAReference
│ │ ├── CMakeLists.txt
│ │ ├── Legacy.cpp
│ │ ├── ReturnAReference.cpp
│ │ ├── ReturnByReference.cpp
│ │ ├── legacy2.cpp
│ │ └── legacy3.cpp
├── Round
│ ├── CMakeLists.txt
│ └── Round.cpp
├── SDL
│ ├── Basics
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── SDLTest.cpp
│ │ ├── SDL_Helper.cpp
│ │ └── SDL_Helper.h
│ ├── DrawLine
│ │ ├── CMakeLists.txt
│ │ └── DrawLine.cpp
│ ├── Events
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── SDLEvents.cpp
│ │ ├── SDL_Helper.cpp
│ │ └── SDL_Helper.h
│ ├── Picking
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── SDLPick.cpp
│ │ ├── SDL_Helper.cpp
│ │ └── SDL_Helper.h
│ ├── Test
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── Test.cpp
│ │ └── Test.cpp.bak
│ └── Threads
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── SDLThreads.cpp
│ │ └── mean_shift.cpp
├── STLAlgorithms
│ ├── Accumulate
│ │ ├── Accumulate.cpp
│ │ └── CMakeLists.txt
│ ├── Copy
│ │ ├── CMakeLists.txt
│ │ └── Copy.cpp
│ ├── ForEach
│ │ ├── CMakeLists.txt
│ │ └── ForEach.cpp
│ ├── Generate
│ │ ├── CMakeLists.txt
│ │ └── Generate.cpp
│ ├── LessFunctor
│ │ ├── CMakeLists.txt
│ │ └── LessFunctor.cpp
│ ├── RandomShuffle
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── RandomShuffle.cpp
│ ├── SetDifference
│ │ ├── CMakeLists.txt
│ │ └── SetDifference.cpp
│ ├── SetUnion
│ │ ├── CMakeLists.txt
│ │ └── SetUnion.cpp
│ ├── Sort
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── Sort.cpp
│ │ ├── SortPoint.cpp
│ │ └── SortSmartPointers.cpp
│ ├── SortFunctor
│ │ ├── CMakeLists.txt
│ │ └── SortFunctor.cpp
│ ├── SortFunctorMember
│ │ ├── CMakeLists.txt
│ │ └── SortFunctorMember.cpp
│ ├── SortFunctorSubclass
│ │ ├── CMakeLists.txt
│ │ ├── SortFunctorSubclass.cpp
│ │ └── legacy.cpp
│ ├── SortFunctorTemplate
│ │ ├── CMakeLists.txt
│ │ └── SortFunctorTemplate.cpp
│ ├── SortMap
│ │ ├── CMakeLists.txt
│ │ └── SortMap.cpp
│ ├── SortSpecifyTemplateParameters
│ │ ├── CMakeLists.txt
│ │ └── SortFunctorSubclass.cpp
│ ├── SortVectorSubclass
│ │ ├── CMakeLists.txt
│ │ └── SortVectorSubclass.cpp
│ ├── VectorFind
│ │ ├── CMakeLists.txt
│ │ └── VectorFind.cpp
│ ├── VectorMeanAndMedian
│ │ ├── CMakeLists.txt
│ │ └── VectorMeanAndMedian.cpp
│ └── VectorMinAndMax
│ │ ├── CMakeLists.txt
│ │ └── VectorMinAndMax.cpp
├── STLDataStructures
│ ├── Complex
│ │ ├── CMakeLists.txt
│ │ └── Complex.cpp
│ ├── Conversion
│ │ ├── CMakeLists.txt
│ │ └── Conversion.cpp
│ ├── HashSet
│ │ ├── CMakeLists.txt
│ │ └── HashSet.cpp
│ ├── Heap
│ │ ├── CMakeLists.txt
│ │ └── Heap.cpp
│ ├── Lists
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── Lists.cpp
│ ├── MakePair
│ │ ├── CMakeLists.txt
│ │ └── MakePair.cpp
│ ├── Maps
│ │ ├── CreateMap
│ │ │ ├── CMakeLists.txt
│ │ │ ├── ConstMap.cpp
│ │ │ ├── CreateMap.cpp
│ │ │ ├── MyClass.h
│ │ │ ├── PointerToMap.cpp
│ │ │ ├── Test.cpp
│ │ │ └── TestMyClass.cpp
│ │ ├── MapCustomType
│ │ │ ├── CMakeLists.txt
│ │ │ └── MapCustomType.cpp
│ │ └── ReverseLookup
│ │ │ ├── CMakeLists.txt
│ │ │ └── ReverseLookup.cpp
│ ├── MultiMap
│ │ ├── CMakeLists.txt
│ │ └── MultiMap.cpp
│ ├── Pair
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── Pair.cpp
│ ├── PriorityQueue
│ │ ├── Basic.cpp
│ │ ├── BuiltInSpecialComparison.cpp
│ │ ├── CMakeLists.txt
│ │ ├── CustomComparison.cpp
│ │ ├── ModifyElement.cpp
│ │ ├── RemoveElement.cpp
│ │ └── StructWithSameValueOrdering.cpp
│ ├── Queue
│ │ ├── CMakeLists.txt
│ │ └── Queue.cpp
│ ├── Set
│ │ ├── Advance
│ │ │ ├── Advance.cpp
│ │ │ └── CMakeLists.txt
│ │ ├── ComparisonInHeader
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Comparison.h
│ │ │ └── ComparisonInHeader.cpp
│ │ ├── Insert
│ │ │ ├── CMakeLists.txt
│ │ │ └── Insert.cpp
│ │ ├── MergeSets
│ │ │ ├── CMakeLists.txt
│ │ │ └── MergeSets.cpp
│ │ ├── ModifyElement
│ │ │ ├── CMakeLists.txt
│ │ │ └── ModifyElement.cpp
│ │ ├── MultiSet
│ │ │ ├── CMakeLists.txt
│ │ │ └── MultiSet.cpp
│ │ ├── RemoveElement
│ │ │ ├── CMakeLists.txt
│ │ │ ├── RemoveElement.cpp
│ │ │ └── orig.cpp
│ │ ├── SearchForElement
│ │ │ ├── CMakeLists.txt
│ │ │ └── SearchForElement.cpp
│ │ ├── Set
│ │ │ ├── CMakeLists.txt
│ │ │ ├── ConstMember.cpp
│ │ │ ├── Set.cpp
│ │ │ └── SetOfReferences.cpp
│ │ ├── SetCustomClass
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Height.h
│ │ │ └── SetCustomClass.cpp
│ │ ├── SetCustomComparison
│ │ │ ├── CMakeLists.txt
│ │ │ ├── SetCustomComparison.cpp
│ │ │ └── SortObject.cpp
│ │ ├── SetDifference
│ │ │ ├── CMakeLists.txt
│ │ │ ├── SetDifference.cpp
│ │ │ └── SymmetricDifference.cpp
│ │ └── SetPointClass
│ │ │ ├── CMakeLists.txt
│ │ │ └── SetPointClass.cpp
│ ├── Stack
│ │ ├── CMakeLists.txt
│ │ └── Stack.cpp
│ ├── Strings
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── Legacy.cxx
│ │ ├── Strings.cpp
│ │ └── test.txt
│ ├── Tuple
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── Tuple.cpp
│ └── Vector
│ │ ├── AtException
│ │ ├── AtException.cpp
│ │ └── CMakeLists.txt
│ │ ├── RemoveElement
│ │ ├── CMakeLists.txt
│ │ └── RemoveElement.cpp
│ │ ├── Reverse
│ │ ├── CMakeLists.txt
│ │ └── Reverse.cpp
│ │ └── Vector
│ │ ├── CMakeLists.txt
│ │ ├── ConstMember.cpp
│ │ ├── ObjectWithNoDefaultConstructor.cpp
│ │ ├── Simple.cpp
│ │ ├── TestClass.h
│ │ ├── VectorOfPointers.cpp
│ │ └── Vectors.cpp
├── ScreenCapture
│ ├── Debug
│ │ ├── ScreenCapture.exe
│ │ ├── ScreenCapture.ilk
│ │ └── ScreenCapture.pdb
│ ├── ScreenCapture.ncb
│ ├── ScreenCapture.sln
│ ├── ScreenCapture.suo
│ └── ScreenCapture
│ │ ├── Debug
│ │ ├── BuildLog.htm
│ │ ├── ScreenCapture.exe.embed.manifest
│ │ ├── ScreenCapture.exe.embed.manifest.res
│ │ ├── ScreenCapture.exe.intermediate.manifest
│ │ ├── mt.dep
│ │ ├── vc90.idb
│ │ └── vc90.pdb
│ │ ├── ScreenCapture.vcproj
│ │ ├── ScreenCapture.vcproj.LAB6110_MIDDLE.Dave.user
│ │ └── capture.cpp
├── Scythe
│ └── distributions
│ │ └── distributions.cpp
├── SetPrecision
│ ├── CMakeLists.txt
│ └── SetPrecision.cpp
├── Sign
│ ├── CMakeLists.txt
│ └── Sign.cpp
├── SmartPointers
│ ├── auto_ptr
│ │ ├── CMakeLists.txt
│ │ └── auto_ptr.cpp
│ └── shared_ptr
│ │ ├── Abstract.cpp
│ │ ├── CMakeLists.txt
│ │ └── shared_ptr.cpp
├── Sockets
│ ├── CMakeLists.txt
│ ├── Sockets.zip
│ ├── client.cpp
│ ├── readme.txt
│ └── server.cpp
├── Software
│ └── LBFGS
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── ap.cpp
│ │ ├── ap.english.html
│ │ ├── ap.h
│ │ ├── ap.russian.html
│ │ ├── apvt.h
│ │ ├── faq.english.html
│ │ ├── faq.russian.html
│ │ ├── lbfgs.cpp
│ │ ├── lbfgs.h
│ │ ├── license
│ │ ├── main.cpp
│ │ └── stdafx.h
├── SparseLib
│ ├── CMakeLists.txt
│ └── SparseLib.cpp
├── Sprintf
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ └── SprintfExample.cpp
├── StaticFunctions
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ ├── Point.cpp
│ ├── Point.h
│ └── StaticFunctions.cpp
├── StaticInheritance
│ ├── CMakeLists.txt
│ ├── StaticFunctionsArentPolymorphic.cpp
│ └── StaticInheritance.cpp
├── StaticMap
│ ├── CMakeLists.txt
│ └── StaticMap.cpp
├── StaticMemberVariableInsideNamespace
│ ├── CMakeLists.txt
│ ├── Point.cpp
│ ├── Point.h
│ └── StaticVariableInsideNamespace.cpp
├── StaticVariableInHeader
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ ├── Point.cpp
│ ├── Point.h
│ ├── Point.h.bak
│ └── StaticVariables.cpp
├── StaticVariableInsideNamespace
│ ├── CMakeLists.txt
│ ├── Point.cpp
│ ├── Point.h
│ └── StaticVariableInsideNamespace.cpp
├── StaticVariables
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ ├── Point.cpp
│ ├── Point.h
│ ├── Point.h.bak
│ └── StaticVariables.cpp
├── StringStream
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ ├── StringStreamExample.cpp
│ └── simple.cxx
├── Strings
│ ├── CompareStrings
│ │ ├── CMakeLists.txt
│ │ ├── CompareStrings.cpp
│ │ └── Doxyfile
│ ├── ConcatenateStrings
│ │ ├── CMakeLists.txt
│ │ └── ConcatenateStrings.cpp
│ ├── CountCharacters
│ │ ├── CMakeLists.txt
│ │ └── Count.cpp
│ ├── FindAndReplace
│ │ ├── CMakeLists.txt
│ │ └── FindAndReplace.cpp
│ ├── Split
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── SplitString.cpp
│ └── Substring
│ │ ├── CMakeLists.txt
│ │ └── Substring.cpp
├── Struct
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ └── Struct.cpp
├── Switch
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ └── Switch.cpp
├── TemplateLoop
│ ├── CMakeLists.txt
│ ├── TemplateLoop.cpp
│ └── legacy.cpp
├── Templates
│ ├── ClassTemplateDerivedFromTemplatedTemplate
│ │ ├── CMakeLists.txt
│ │ └── ClassTemplateDerivedFromTemplatedTemplate.cpp
│ ├── ClassTemplateExplicitInstantiation
│ │ ├── CMakeLists.txt
│ │ ├── ClassTemplateExplicitInstantiation.cpp
│ │ ├── Point.cpp
│ │ └── Point.h
│ ├── ClassTemplateFunctionTemplate
│ │ ├── CMakeLists.txt
│ │ └── ClassTemplateFunctionTemplate.cpp
│ ├── ClassTemplateHeaderOnly
│ │ ├── CMakeLists.txt
│ │ ├── ClassTemplateHeaderOnly.cpp
│ │ └── Point.h
│ ├── ClassTemplateInheritance
│ │ ├── CMakeLists.txt
│ │ ├── NonTemplatedChildTemplatedParent.cpp
│ │ └── TemplatedChildTemplatedParent.cpp
│ ├── ClassTemplateInsideNamespace
│ │ ├── CMakeLists.txt
│ │ ├── ClassTemplateInsideNamespace.cpp
│ │ └── Point.h
│ ├── ClassTemplateMultipleInheritance
│ │ ├── CMakeLists.txt
│ │ ├── ClassTemplateMultipleInheritance.cpp
│ │ ├── TemplatedChildNonTemplatedParent.cpp
│ │ ├── TemplatedParentNonTemplatedChild.cpp
│ │ └── legacy.cpp
│ ├── ClassTemplateMultipleParameters
│ │ ├── CMakeLists.txt
│ │ └── ClassTemplateMultipleParameters.cpp
│ ├── ClassTemplateSpecialization
│ │ ├── CMakeLists.txt
│ │ ├── ClassTemplateSpecialization.cpp
│ │ └── Point.h
│ ├── ClassTemplateStaticFunction
│ │ ├── CMakeLists.txt
│ │ └── ClassTemplateStaticFunction.cpp
│ ├── ClassTemplateStaticMember
│ │ ├── CMakeLists.txt
│ │ └── ClassTemplateStaticMember.cpp
│ ├── ClassTemplateType
│ │ ├── CMakeLists.txt
│ │ ├── ClassTemplateType.cpp
│ │ ├── Point.h
│ │ └── old.cpp
│ ├── DefaultTemplateParamters
│ │ ├── CMakeLists.txt
│ │ └── DefaultTemplateParamters.cpp
│ ├── DependentTypeMember
│ │ ├── CMakeLists.txt
│ │ └── DependentTypeMember.cpp
│ ├── FunctionTemplate
│ │ ├── CMakeLists.txt
│ │ ├── FunctionTemplate.cpp
│ │ └── Point.h
│ ├── FunctionTemplateExplicitInstantiation
│ │ ├── CMakeLists.txt
│ │ └── FunctionTemplateExplicitInstantiation.cpp
│ ├── FunctionTemplateHeaderOnly
│ │ ├── CMakeLists.txt
│ │ ├── FunctionTemplateHeaderOnly.cpp
│ │ └── Point.h
│ ├── FunctionTemplateImplicitInstantiation
│ │ ├── CMakeLists.txt
│ │ └── FunctionTemplateImplicitInstantiation.cpp
│ ├── FunctionTemplateIncludeImplementation
│ │ ├── CMakeLists.txt
│ │ ├── FunctionTemplateIncludeImplementation.cpp
│ │ ├── Point.cpp
│ │ └── Point.h
│ ├── FunctionTemplateMultipleParameters
│ │ ├── CMakeLists.txt
│ │ └── FunctionTemplateMultipleParameters.cpp
│ ├── FunctionTemplateSpecialization
│ │ ├── CMakeLists.txt
│ │ ├── Deduction.cpp
│ │ ├── FunctionTemplateSpecialization.cpp
│ │ ├── Point.cpp
│ │ ├── Point.h
│ │ └── Point.txx
│ ├── FunctionTemplateSpecializationUsingParameter
│ │ ├── CMakeLists.txt
│ │ ├── FunctionTemplateSpecializationUsingParameter.cpp
│ │ ├── Point.cpp
│ │ ├── Point.h
│ │ └── Point.txx
│ ├── MemberFunctionPartialSpecialization
│ │ ├── CMakeLists.txt
│ │ ├── MemberFunctionPartialSpecialization.cpp
│ │ ├── Point.cpp
│ │ ├── Point.h
│ │ └── Point.h.bak
│ ├── MemberFunctionTemplate
│ │ ├── CMakeLists.txt
│ │ ├── MemberFunctionTemplate.cpp
│ │ └── Point.h
│ ├── MemberFunctionTemplateSpecialization
│ │ ├── CMakeLists.txt
│ │ ├── MemberFunctionTemplateSpecialization.cpp
│ │ └── Point.h
│ ├── OverloadClassTemplateMemberFunction
│ │ ├── CMakeLists.txt
│ │ ├── ClassDeduction.cpp
│ │ ├── Deduction.cpp
│ │ ├── Deduction2.cpp
│ │ ├── OverloadClassTemplateMemberFunction.cpp
│ │ └── legacy.cpp
│ ├── PartialClassSpecialization
│ │ ├── CMakeLists.txt
│ │ ├── PartialClassSpecialization.cpp
│ │ └── Point.h
│ ├── PartialFunctionSpecialization
│ │ ├── CMakeLists.txt
│ │ ├── PartialSpecialization.cpp
│ │ ├── Point.cpp
│ │ ├── Point.h
│ │ └── Point.txx
│ ├── PartialSpecializationNamespace
│ │ ├── CMakeLists.txt
│ │ ├── PartialSpecializationNamespace.cpp
│ │ ├── Point.cpp
│ │ ├── Point.h
│ │ └── Point.txx
│ ├── SpecializeClassTemplateMemberFunction
│ │ ├── CMakeLists.txt
│ │ ├── Point.h
│ │ └── SpecializeClassTemplateMemberFunction.cpp
│ ├── TemplateBuildTiming
│ │ ├── CMakeLists.txt
│ │ ├── Point.cpp
│ │ ├── Point.h
│ │ └── TemplateBuildTiming.cpp
│ ├── TemplateClass
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── Point.cpp
│ │ ├── Point.h
│ │ └── TemplateClass.cpp
│ ├── TemplateClassFunction
│ │ ├── CMakeLists.txt
│ │ ├── Point.cpp
│ │ ├── Point.h
│ │ └── TemplateClassFunction.cpp
│ ├── TemplateClassHeaderOnly
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── Point.cpp
│ │ ├── Point.h
│ │ └── TemplateClass.cpp
│ ├── TemplateClassInheritance
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── Point.cpp
│ │ ├── Point.h
│ │ ├── Point3D.cpp
│ │ ├── Point3D.h
│ │ └── TemplateClassInheritance.cpp
│ ├── TemplateFunctionHeaderOnly
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── Point.cpp
│ │ ├── Point.h
│ │ ├── TemplateFunction.cpp
│ │ ├── Tools.cpp
│ │ └── Tools.h
│ ├── TemplateFunctionInClass
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── Point.cpp
│ │ ├── Point.h
│ │ └── TemplateFunction.cpp
│ ├── TemplateFunctionInTemplateClass
│ │ ├── CMakeLists.txt
│ │ ├── Point.cpp
│ │ ├── Point.h
│ │ └── TemplateFunctionInTemplateClass.cpp
│ ├── TemplateFunctionOverload
│ │ ├── CMakeLists.txt
│ │ └── TemplateFunctionOverload.cpp
│ ├── TemplateFunctionValues
│ │ ├── CMakeLists.txt
│ │ ├── Point.cpp
│ │ ├── Point.h
│ │ ├── TemplateFunctionValues.cpp
│ │ ├── Tools.cpp
│ │ └── Tools.h
│ └── TemplateTemplateParameters
│ │ ├── CMakeLists.txt
│ │ └── TemplateTemplateParameters.cpp
├── Test
│ ├── CMakeLists.txt
│ ├── Camera.h
│ ├── Doxyfile
│ ├── ImageCamera.cxx
│ ├── ImageCamera.h
│ ├── Legacy.cxx
│ ├── MyClass.cpp
│ ├── MyClass.h
│ ├── Person.cpp
│ ├── Person.h
│ ├── Test.cpp
│ ├── input.txt
│ ├── outfile.txt
│ └── output.txt
├── ThisPointer
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ └── ThisPointer.cpp
├── TrapInterrupts
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ └── TrapInterrupts.cpp
├── Typedef
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ └── Typedef.cpp
├── TypedefConditional
│ ├── CMakeLists.txt
│ └── TypedefConditional.cpp
├── TypedefInClasses
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ ├── MyClass.cpp
│ ├── MyClass.h
│ └── TypedefInClasses.cpp
├── Typeid
│ ├── CMakeLists.txt
│ └── Typeid.cpp
├── Typeof
│ ├── CMakeLists.txt
│ └── Typeof.cpp
├── Union
│ ├── CMakeLists.txt
│ └── Union.cpp
├── UnitTest++
│ ├── CMakeLists.txt
│ └── UnitTest++.cpp
├── UnitTest++Find
│ ├── CMakeLists.txt
│ ├── FindUnitTest++.cmake
│ ├── SingleTest.cpp
│ └── Suite.cpp
├── UnsignedSubtraction
│ ├── CMakeLists.txt
│ ├── UnsignedSubtraction.cpp
│ └── legacy.cpp
├── VXL
│ ├── GEL
│ │ └── triangulate_points
│ │ │ ├── CMakeLists.txt
│ │ │ └── triangulate_points.cpp
│ ├── RGRL
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── RGRL.cpp
│ │ ├── RGRL_1.cpp
│ │ ├── RGRL_2.cpp
│ │ └── rigid.cpp
│ ├── RSDL_KDTree
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── KDTree.cpp
│ ├── VBLBasics
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── VBLBasics.cpp
│ ├── VCLBasics
│ │ ├── CMakeLists.txt
│ │ └── VCLBasics.cpp
│ ├── VCSLCoordinateSystems
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── VCSLCoordinateSystems.cpp
│ ├── VGL
│ │ ├── Basics
│ │ │ ├── CMakeLists.txt
│ │ │ └── VGLBasics.cpp
│ │ ├── LineIntersection
│ │ │ ├── CMakeLists.txt
│ │ │ └── LineIntersection.cpp
│ │ └── LineSegment
│ │ │ ├── CMakeLists.txt
│ │ │ └── LineSegment.cpp
│ ├── VILBasics
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── VILBasics.cpp
│ ├── VNL
│ │ ├── Adjoint
│ │ │ ├── Adjoint.cpp
│ │ │ └── CMakeLists.txt
│ │ ├── Basics
│ │ │ ├── CMakeLists.txt
│ │ │ └── VNLBasics.cpp
│ │ ├── Eigen
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Doxyfile
│ │ │ ├── Eigen.cpp
│ │ │ └── EigenValues.cpp
│ │ ├── LinearLeastSquares
│ │ │ ├── CMakeLists.txt
│ │ │ ├── Doxyfile
│ │ │ └── LinearLeastSquares.cpp
│ │ ├── LinearSystem
│ │ │ ├── CMakeLists.txt
│ │ │ └── LinearSystem.cpp
│ │ ├── Matrix
│ │ │ ├── CMakeLists.txt
│ │ │ └── Matrix.cpp
│ │ ├── MatrixTranspose
│ │ │ ├── CMakeLists.txt
│ │ │ └── VNLBasics.cpp
│ │ ├── Minimize
│ │ │ ├── CMakeLists.txt
│ │ │ ├── CostTest.cpp
│ │ │ ├── CostTest.cpp.bak
│ │ │ ├── Doxyfile
│ │ │ └── LMTest.cpp
│ │ ├── QR
│ │ │ ├── CMakeLists.txt
│ │ │ └── QR.cpp
│ │ ├── SparseLeastSquares
│ │ │ ├── CMakeLists.txt
│ │ │ └── SparseLeastSquares.cpp
│ │ ├── SparseLinearSystem
│ │ │ ├── CMakeLists.txt
│ │ │ └── SparseLinearSystem.cpp
│ │ ├── SparseMatrix
│ │ │ ├── CMakeLists.txt
│ │ │ └── SparseMatrix.cpp
│ │ └── Vector
│ │ │ ├── CMakeLists.txt
│ │ │ └── Vector.cpp
│ ├── VSLBasics
│ │ ├── CMakeLists.txt
│ │ ├── CustomClass.cpp
│ │ ├── Doxyfile
│ │ ├── TestClass.cpp
│ │ ├── TestClass.h
│ │ └── VSLBasics.cpp
│ └── VUL
│ │ ├── VULBasics
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── VULBasics.cpp
│ │ ├── VULParse
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── VULParse.cpp
│ │ └── VULTimer
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ └── Test.cpp
├── VariableNumberOfArguments
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ └── VariableNumberOfArguments.cpp
├── VectorOfArray
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ └── VectorOfArray.cpp
├── VectorOfPointers
│ ├── CMakeLists.txt
│ └── VectorOfPointers.cpp
├── VectorOfReferences
│ ├── CMakeLists.txt
│ └── VectorOfReferences.cpp
├── VectorSubclass
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ └── VectorSubclass.cpp
├── VectorVSArray
│ ├── CMakeLists.txt
│ └── Test.cpp
├── VirtualFunction
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ ├── Point.h
│ └── VirtualFunction.cpp
├── VirtualInheritance
│ ├── CMakeLists.txt
│ └── VirtualInheritance.cpp
├── Visitor
│ ├── Accumulator.cpp
│ ├── AccumulatorWithoutDoubleDispatch.cpp
│ ├── AccumulatorWorking.cpp
│ ├── CMakeLists.txt
│ ├── CompositeVisitor
│ │ ├── CMakeLists.txt
│ │ └── CompositeVisitor.cpp
│ ├── Visitor.cpp
│ ├── Working.cpp
│ └── legacy.cpp
├── VoidPointers
│ ├── CMakeLists.txt
│ └── VoidPointers.cpp
├── Volatile
│ ├── CMakeLists.txt
│ └── Volatile.cpp
├── ZeroPad
│ ├── CMakeLists.txt
│ └── ZeroPad.cpp
├── atoi
│ ├── CMakeLists.txt
│ └── atoi.cpp
├── c++0x
│ ├── Hash
│ │ ├── CMakeLists.txt
│ │ └── Hash.cpp
│ ├── Regex
│ │ ├── CMakeLists.txt
│ │ ├── Regex.cpp
│ │ └── legacy.cpp
│ ├── StaticConst
│ │ ├── CMakeLists.txt
│ │ ├── StaticConst.cpp
│ │ ├── StaticConst.h
│ │ ├── Working.cpp
│ │ └── main.cpp
│ ├── UnorderedSet
│ │ ├── CMakeLists.txt
│ │ └── UnorderedSet.cpp
│ ├── VectorInitialization
│ │ ├── CMakeLists.txt
│ │ └── VectorInitialization.cpp
│ ├── VectorMinMax
│ │ ├── CMakeLists.txt
│ │ └── VectorMinMax.cpp
│ ├── enable_if
│ │ ├── CMakeLists.txt
│ │ ├── RequireFundamental.cpp
│ │ ├── enable_if.cpp
│ │ ├── function.cpp
│ │ ├── operator.cpp
│ │ └── voidMemberFunction.cpp
│ ├── override
│ │ ├── .fuse_hidden0000055700000002
│ │ ├── CMakeLists.txt
│ │ └── override.cpp
│ └── static_assert
│ │ ├── CMakeLists.txt
│ │ └── static_assert.cpp
├── c++98
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ └── c++98Test.cpp
├── curses
│ └── main.cpp
├── daniweb
│ ├── crossroads.cpp
│ ├── global.h
│ ├── globals.h
│ ├── library.h
│ ├── player.cpp
│ ├── player.h
│ └── town.cpp
├── decltype
│ ├── CMakeLists.txt
│ └── decltype.cpp
├── ginac
│ ├── CMakeLists.txt
│ └── ginacExample.cpp
├── is_signed
│ ├── CMakeLists.txt
│ └── is_signed.cpp
├── rpisrc
│ └── keypoints
│ │ ├── CMakeLists.txt
│ │ ├── Doxyfile
│ │ ├── image.jpg
│ │ ├── keypoint.cxx
│ │ ├── keypoint.h
│ │ └── keypointExample.cxx
├── skipws
│ ├── CMakeLists.txt
│ └── skipws.cpp
├── vbo
│ ├── CMakeLists.txt
│ ├── Doxyfile
│ ├── glInfo.cpp
│ ├── glInfo.h
│ ├── glext.h
│ ├── main.cpp
│ └── vboSimple.dev
└── wxWidgets
│ ├── Basics
│ ├── Basics.cpp
│ ├── CMakeLists.txt
│ ├── CMakeLists.txt.working
│ └── Legacy.cpp
│ ├── BetterFind
│ ├── CMakeLists.txt
│ ├── FindWithVersion.cpp
│ ├── FindWithVersion.tar.gz
│ ├── FindwxWidgets.cmake
│ └── UsewxWidgets.cmake
│ ├── CommandLine
│ ├── CMakeLists.txt
│ ├── CommandLine.cpp
│ ├── CommandLineOptions.cpp
│ └── CommandLineOptions.h
│ ├── Filename
│ ├── CMakeLists.txt
│ └── Filename.cpp
│ ├── Image
│ ├── CMakeLists.txt
│ └── Image.cpp
│ ├── Initializer
│ ├── CMakeLists.txt
│ └── Initializer.cpp
│ ├── String
│ ├── CMakeLists.txt
│ └── String.cpp
│ └── Thread
│ ├── CMakeLists.txt
│ └── Thread.cpp
└── qmake
└── Project
├── Plugin
├── Plugin.pro
└── build
│ ├── Makefile
│ └── libPlugin.so
└── Project.h
/.gitignore:
--------------------------------------------------------------------------------
1 | *~
2 | CMakeLists.txt.user*
3 | *.kdev
4 | *.orig
5 | *build/
6 |
--------------------------------------------------------------------------------
/Bash/Arithmetic/Arithmetic.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Arithmetic/Arithmetic.sh
--------------------------------------------------------------------------------
/Bash/Basics/Compare.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Basics/Compare.sh
--------------------------------------------------------------------------------
/Bash/Basics/Concatenate.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Basics/Concatenate.sh
--------------------------------------------------------------------------------
/Bash/Basics/DisplayCommands.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 | set -x;
3 | doSomething;
--------------------------------------------------------------------------------
/Bash/Basics/ForEachLoop.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | for i in $*; do
4 | echo $i
5 | done;
6 |
7 |
--------------------------------------------------------------------------------
/Bash/Basics/ForLoop.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Basics/ForLoop.sh
--------------------------------------------------------------------------------
/Bash/Basics/If.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Basics/If.sh
--------------------------------------------------------------------------------
/Bash/Basics/ParameterList.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Basics/ParameterList.sh
--------------------------------------------------------------------------------
/Bash/Basics/Parameters.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Basics/Parameters.sh
--------------------------------------------------------------------------------
/Bash/Basics/Parse.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Basics/Parse.sh
--------------------------------------------------------------------------------
/Bash/Basics/Quotes.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Basics/Quotes.sh
--------------------------------------------------------------------------------
/Bash/Basics/UserInput.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Basics/UserInput.sh
--------------------------------------------------------------------------------
/Bash/Basics/Variables.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Basics/Variables.sh
--------------------------------------------------------------------------------
/Bash/Basics/ZeroPad.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Basics/ZeroPad.sh
--------------------------------------------------------------------------------
/Bash/Flicker/Flicker.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Flicker/Flicker.sh
--------------------------------------------------------------------------------
/Bash/Flicker/anim0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Flicker/anim0.jpg
--------------------------------------------------------------------------------
/Bash/Flicker/anim1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Flicker/anim1.jpg
--------------------------------------------------------------------------------
/Bash/Flicker/anim2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Flicker/anim2.jpg
--------------------------------------------------------------------------------
/Bash/Flicker/anim3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Flicker/anim3.jpg
--------------------------------------------------------------------------------
/Bash/Flicker/animated.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Flicker/animated.gif
--------------------------------------------------------------------------------
/Bash/Sort/input.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Sort/input.txt
--------------------------------------------------------------------------------
/Bash/Sort/medium/input.txt:
--------------------------------------------------------------------------------
1 | dog
2 | cat
3 | ardvark
4 | rabbit
5 | kitten
--------------------------------------------------------------------------------
/Bash/Sort/medium/output.txt:
--------------------------------------------------------------------------------
1 | ardvark
2 | cat
3 | dog
4 | kitten
5 | rabbit
6 |
--------------------------------------------------------------------------------
/Bash/Sort/output.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Sort/output.txt
--------------------------------------------------------------------------------
/Bash/Sort/simple/input.txt:
--------------------------------------------------------------------------------
1 | a
2 | c
3 | b
4 | e
5 | d
6 | f
--------------------------------------------------------------------------------
/Bash/Sort/simple/output.txt:
--------------------------------------------------------------------------------
1 | a
2 | b
3 | c
4 | d
5 | e
6 | f
7 |
--------------------------------------------------------------------------------
/Bash/Sort/simple/sort.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Sort/simple/sort.sh
--------------------------------------------------------------------------------
/Bash/Timer.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Bash/Timer.sh
--------------------------------------------------------------------------------
/Bash/test.txt:
--------------------------------------------------------------------------------
1 | hi
2 | hi
3 |
--------------------------------------------------------------------------------
/CMake/Boost/BoostProgram.cpp:
--------------------------------------------------------------------------------
1 | int TestFunction()
2 | {
3 |
4 | return 0;
5 | }
6 |
--------------------------------------------------------------------------------
/CMake/Boost/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/CMake/Boost/CMakeLists.txt
--------------------------------------------------------------------------------
/CMake/CompilerFlags/build/CMakeFiles/CompilerFlags.dir/progress.make:
--------------------------------------------------------------------------------
1 | CMAKE_PROGRESS_1 = 1
2 |
3 |
--------------------------------------------------------------------------------
/CMake/CompilerFlags/build/CMakeFiles/progress.marks:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/CMake/FindPackageHandleStandardArgs/Test.cxx:
--------------------------------------------------------------------------------
1 | int main()
2 | {
3 | return 0;
4 | }
5 |
--------------------------------------------------------------------------------
/CMake/Install/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/CMake/Install/CMakeLists.txt
--------------------------------------------------------------------------------
/CMake/Install/InstallTest.cxx:
--------------------------------------------------------------------------------
1 | int main()
2 | {
3 | return 0;
4 | }
5 |
--------------------------------------------------------------------------------
/CMake/Library/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/CMake/Library/CMakeLists.txt
--------------------------------------------------------------------------------
/CMake/Library/TestLibrary.cxx:
--------------------------------------------------------------------------------
1 | int TestFunction()
2 | {
3 | return 0;
4 | }
5 |
--------------------------------------------------------------------------------
/CMake/QtSubdirectory.tar.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/CMake/QtSubdirectory.tar.gz
--------------------------------------------------------------------------------
/CMake/Subdirectories/Directory1/Project1.cxx:
--------------------------------------------------------------------------------
1 | int main()
2 | {
3 | return 0;
4 | }
5 |
--------------------------------------------------------------------------------
/CMake/Subdirectories/Directory2/Project2.cxx:
--------------------------------------------------------------------------------
1 | int main()
2 | {
3 | return 0;
4 | }
5 |
--------------------------------------------------------------------------------
/CMake/VariableCaching/VariableCaching.cxx:
--------------------------------------------------------------------------------
1 | int main()
2 | {
3 | return 0;
4 | }
5 |
--------------------------------------------------------------------------------
/CMake/VariableCaching/build/CMakeFiles/Executable1.dir/progress.make:
--------------------------------------------------------------------------------
1 | CMAKE_PROGRESS_1 = 1
2 |
3 |
--------------------------------------------------------------------------------
/CMake/VariableCaching/build/CMakeFiles/Executable2.dir/progress.make:
--------------------------------------------------------------------------------
1 | CMAKE_PROGRESS_1 = 2
2 |
3 |
--------------------------------------------------------------------------------
/CMake/VariableCaching/build/CMakeFiles/Progress/1:
--------------------------------------------------------------------------------
1 | empty
--------------------------------------------------------------------------------
/CMake/VariableCaching/build/CMakeFiles/Progress/count.txt:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/CMake/VariableCaching/build/CMakeFiles/progress.marks:
--------------------------------------------------------------------------------
1 | 2
2 |
--------------------------------------------------------------------------------
/CMake/Variables/Variables.cxx:
--------------------------------------------------------------------------------
1 | int main()
2 | {
3 | return 0;
4 | }
5 |
--------------------------------------------------------------------------------
/CMake/mex/mex.txt:
--------------------------------------------------------------------------------
1 | http://www.vtk.org/Wiki/CMake/MatlabMex
--------------------------------------------------------------------------------
/CTest/Coverage/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/CTest/Coverage/CMakeLists.txt
--------------------------------------------------------------------------------
/CTest/Coverage/coverage.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/CTest/Coverage/coverage.cpp
--------------------------------------------------------------------------------
/CTest/Simple/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/CTest/Simple/CMakeLists.txt
--------------------------------------------------------------------------------
/CTest/Simple/simple.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/CTest/Simple/simple.cpp
--------------------------------------------------------------------------------
/Doxygen/link/Class1.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/Class1.h
--------------------------------------------------------------------------------
/Doxygen/link/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/Doxyfile
--------------------------------------------------------------------------------
/Doxygen/link/html/bc_s.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/html/bc_s.png
--------------------------------------------------------------------------------
/Doxygen/link/html/closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/html/closed.png
--------------------------------------------------------------------------------
/Doxygen/link/html/doxygen.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/html/doxygen.css
--------------------------------------------------------------------------------
/Doxygen/link/html/doxygen.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/html/doxygen.png
--------------------------------------------------------------------------------
/Doxygen/link/html/files.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/html/files.html
--------------------------------------------------------------------------------
/Doxygen/link/html/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/html/index.html
--------------------------------------------------------------------------------
/Doxygen/link/html/installdox:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/html/installdox
--------------------------------------------------------------------------------
/Doxygen/link/html/jquery.js:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/html/jquery.js
--------------------------------------------------------------------------------
/Doxygen/link/html/nav_f.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/html/nav_f.png
--------------------------------------------------------------------------------
/Doxygen/link/html/nav_h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/html/nav_h.png
--------------------------------------------------------------------------------
/Doxygen/link/html/open.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/html/open.png
--------------------------------------------------------------------------------
/Doxygen/link/html/tab_a.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/html/tab_a.png
--------------------------------------------------------------------------------
/Doxygen/link/html/tab_b.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/html/tab_b.png
--------------------------------------------------------------------------------
/Doxygen/link/html/tab_h.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/html/tab_h.png
--------------------------------------------------------------------------------
/Doxygen/link/html/tab_s.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/html/tab_s.png
--------------------------------------------------------------------------------
/Doxygen/link/html/tabs.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/html/tabs.css
--------------------------------------------------------------------------------
/Doxygen/link/latex/Makefile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/latex/Makefile
--------------------------------------------------------------------------------
/Doxygen/link/latex/refman.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/latex/refman.tex
--------------------------------------------------------------------------------
/Doxygen/link/readme.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Doxygen/link/readme.txt
--------------------------------------------------------------------------------
/Doxygen/readme.txt:
--------------------------------------------------------------------------------
1 | see c++/src/Doxygen
--------------------------------------------------------------------------------
/ImageMagick/Borders/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/ImageMagick/Borders/1.jpg
--------------------------------------------------------------------------------
/ImageMagick/OverlayImages.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/ImageMagick/OverlayImages.sh
--------------------------------------------------------------------------------
/ImageMagick/PositionImages/test.jpg:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/ImageMagick/Text/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/ImageMagick/Text/1.jpg
--------------------------------------------------------------------------------
/ImageMagick/Text/Text.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/ImageMagick/Text/Text.py
--------------------------------------------------------------------------------
/ImageMagick/Text/orig.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/ImageMagick/Text/orig.jpg
--------------------------------------------------------------------------------
/ImageMagick/Text/output.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/ImageMagick/Text/output.jpg
--------------------------------------------------------------------------------
/ImageMagick/Text/test.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/ImageMagick/Text/test.png
--------------------------------------------------------------------------------
/ImageMagick/Text/text.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/ImageMagick/Text/text.jpg
--------------------------------------------------------------------------------
/Java/HelloWorldApp.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Java/HelloWorldApp.class
--------------------------------------------------------------------------------
/Java/VTK/cone.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Java/VTK/cone.java
--------------------------------------------------------------------------------
/Java/VTK/sphere.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Java/VTK/sphere.class
--------------------------------------------------------------------------------
/Java/VTK/sphere.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Java/VTK/sphere.java
--------------------------------------------------------------------------------
/Java/helloworld.java:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Java/helloworld.java
--------------------------------------------------------------------------------
/Latex/Algorithm/Algorithm.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Algorithm/Algorithm.aux
--------------------------------------------------------------------------------
/Latex/Algorithm/Algorithm.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Algorithm/Algorithm.log
--------------------------------------------------------------------------------
/Latex/Algorithm/Algorithm.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Algorithm/Algorithm.pdf
--------------------------------------------------------------------------------
/Latex/Algorithm/Algorithm.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Algorithm/Algorithm.tex
--------------------------------------------------------------------------------
/Latex/AnimatedImages/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/AnimatedImages/1.jpg
--------------------------------------------------------------------------------
/Latex/AnimatedImages/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/AnimatedImages/2.jpg
--------------------------------------------------------------------------------
/Latex/AnimatedImages/3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/AnimatedImages/3.jpg
--------------------------------------------------------------------------------
/Latex/AnimatedImages/4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/AnimatedImages/4.jpg
--------------------------------------------------------------------------------
/Latex/AnimatedImages/5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/AnimatedImages/5.jpg
--------------------------------------------------------------------------------
/Latex/AnimatedImages/AnimatedImages.aux:
--------------------------------------------------------------------------------
1 | \relax
2 |
--------------------------------------------------------------------------------
/Latex/AnimatedImages/AnimatedImages.out:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/AnimatedImages/AnimatedImages.snm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/AnimatedImages/AnimatedImages.toc:
--------------------------------------------------------------------------------
1 | \beamer@endinputifotherversion {3.07pt}
2 |
--------------------------------------------------------------------------------
/Latex/BeamerOverlay/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/BeamerOverlay/1.png
--------------------------------------------------------------------------------
/Latex/BeamerOverlay/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/BeamerOverlay/2.png
--------------------------------------------------------------------------------
/Latex/BeamerOverlay/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/BeamerOverlay/3.png
--------------------------------------------------------------------------------
/Latex/BeamerOverlay/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/BeamerOverlay/4.png
--------------------------------------------------------------------------------
/Latex/BeamerOverlay/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/BeamerOverlay/5.png
--------------------------------------------------------------------------------
/Latex/BeamerOverlay/6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/BeamerOverlay/6.png
--------------------------------------------------------------------------------
/Latex/BeamerOverlay/7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/BeamerOverlay/7.png
--------------------------------------------------------------------------------
/Latex/BeamerOverlay/BeamerOverlay.out:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/BeamerOverlay/BeamerOverlay.snm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/BeamerOverlay/BeamerOverlay.toc:
--------------------------------------------------------------------------------
1 | \beamer@endinputifotherversion {3.06pt}
2 |
--------------------------------------------------------------------------------
/Latex/BeamerOverlay/PictureReplacement.out:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/BeamerOverlay/PictureReplacement.snm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/BeamerOverlay/PictureReplacement.toc:
--------------------------------------------------------------------------------
1 | \beamer@endinputifotherversion {3.06pt}
2 |
--------------------------------------------------------------------------------
/Latex/BeamerSubcaption/BeamerSubcaption.out:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/BeamerSubcaption/BeamerSubcaption.snm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/BeamerSubcaption/BeamerSubcaption.toc:
--------------------------------------------------------------------------------
1 | \beamer@endinputifotherversion {3.07pt}
2 |
--------------------------------------------------------------------------------
/Latex/Beamerposter/Columns.out:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/Beamerposter/Columns.snm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/Beamerposter/Columns.toc:
--------------------------------------------------------------------------------
1 | \beamer@endinputifotherversion {3.06pt}
2 | \select@language {english}
3 |
--------------------------------------------------------------------------------
/Latex/Beamerposter/Columns_good.out:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/Beamerposter/Columns_good.snm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/Beamerposter/Columns_good.toc:
--------------------------------------------------------------------------------
1 | \beamer@endinputifotherversion {3.06pt}
2 | \select@language {english}
3 |
--------------------------------------------------------------------------------
/Latex/Beamerposter/PosterTest.out:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/Beamerposter/PosterTest.snm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/Beamerposter/PosterTest.toc:
--------------------------------------------------------------------------------
1 | \beamer@endinputifotherversion {3.06pt}
2 | \select@language {english}
3 |
--------------------------------------------------------------------------------
/Latex/Beamerposter/beamerposter-example/dreuw07-interspeech.out:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/Beamerposter/beamerposter-example/dreuw07-interspeech.snm:
--------------------------------------------------------------------------------
1 | \beamer@slide {tab:baseline-results}{1}
2 |
--------------------------------------------------------------------------------
/Latex/Beamerposter/beamerposter-example/example.out:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/Beamerposter/beamerposter-example/example.snm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/Beamerposter/example-huge-math-with-type1cm+(2).out:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/Beamerposter/example-huge-math-with-type1cm+(2).snm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/Bibtex/Test.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Bibtex/Test.aux
--------------------------------------------------------------------------------
/Latex/Bibtex/Test.bbl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Bibtex/Test.bbl
--------------------------------------------------------------------------------
/Latex/Bibtex/Test.bib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Bibtex/Test.bib
--------------------------------------------------------------------------------
/Latex/Bibtex/Test.blg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Bibtex/Test.blg
--------------------------------------------------------------------------------
/Latex/Bibtex/Test.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Bibtex/Test.log
--------------------------------------------------------------------------------
/Latex/Bibtex/Test.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Bibtex/Test.pdf
--------------------------------------------------------------------------------
/Latex/Bibtex/Test.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Bibtex/Test.tex
--------------------------------------------------------------------------------
/Latex/BibtexNoBib/Test.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/BibtexNoBib/Test.aux
--------------------------------------------------------------------------------
/Latex/BibtexNoBib/Test.bbl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/BibtexNoBib/Test.bbl
--------------------------------------------------------------------------------
/Latex/BibtexNoBib/Test.blg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/BibtexNoBib/Test.blg
--------------------------------------------------------------------------------
/Latex/BibtexNoBib/Test.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/BibtexNoBib/Test.log
--------------------------------------------------------------------------------
/Latex/BibtexNoBib/Test.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/BibtexNoBib/Test.pdf
--------------------------------------------------------------------------------
/Latex/BibtexNoBib/Test.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/BibtexNoBib/Test.tex
--------------------------------------------------------------------------------
/Latex/Bold/Bold.aux:
--------------------------------------------------------------------------------
1 | \relax
2 |
--------------------------------------------------------------------------------
/Latex/Bold/Bold.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Bold/Bold.log
--------------------------------------------------------------------------------
/Latex/Bold/Bold.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Bold/Bold.pdf
--------------------------------------------------------------------------------
/Latex/Bold/Bold.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Bold/Bold.tex
--------------------------------------------------------------------------------
/Latex/Cancel/Cancel.aux:
--------------------------------------------------------------------------------
1 | \relax
2 |
--------------------------------------------------------------------------------
/Latex/Cancel/Cancel.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Cancel/Cancel.log
--------------------------------------------------------------------------------
/Latex/Cancel/Cancel.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Cancel/Cancel.pdf
--------------------------------------------------------------------------------
/Latex/Cancel/Cancel.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Cancel/Cancel.tex
--------------------------------------------------------------------------------
/Latex/Cases/Cases.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Cases/Cases.aux
--------------------------------------------------------------------------------
/Latex/Cases/Cases.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Cases/Cases.log
--------------------------------------------------------------------------------
/Latex/Cases/Cases.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Cases/Cases.pdf
--------------------------------------------------------------------------------
/Latex/Cases/Cases.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Cases/Cases.tex
--------------------------------------------------------------------------------
/Latex/ChangeEnumerateCharacters/ChangeEnumerateCharacters.aux:
--------------------------------------------------------------------------------
1 | \relax
2 |
--------------------------------------------------------------------------------
/Latex/Choose/Choose.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Choose/Choose.aux
--------------------------------------------------------------------------------
/Latex/Choose/Choose.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Choose/Choose.log
--------------------------------------------------------------------------------
/Latex/Choose/Choose.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Choose/Choose.pdf
--------------------------------------------------------------------------------
/Latex/Choose/Choose.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Choose/Choose.tex
--------------------------------------------------------------------------------
/Latex/Columns/Columns.aux:
--------------------------------------------------------------------------------
1 | \relax
2 |
--------------------------------------------------------------------------------
/Latex/Columns/Columns.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Columns/Columns.log
--------------------------------------------------------------------------------
/Latex/Columns/Columns.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Columns/Columns.pdf
--------------------------------------------------------------------------------
/Latex/Columns/Columns.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Columns/Columns.tex
--------------------------------------------------------------------------------
/Latex/Command/Command.aux:
--------------------------------------------------------------------------------
1 | \relax
2 |
--------------------------------------------------------------------------------
/Latex/Command/Command.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Command/Command.log
--------------------------------------------------------------------------------
/Latex/Command/Command.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Command/Command.pdf
--------------------------------------------------------------------------------
/Latex/Command/Command.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Command/Command.tex
--------------------------------------------------------------------------------
/Latex/Documentation/array.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Documentation/array.pdf
--------------------------------------------------------------------------------
/Latex/Documentation/float.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Documentation/float.pdf
--------------------------------------------------------------------------------
/Latex/Figure/Figure.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Figure/Figure.aux
--------------------------------------------------------------------------------
/Latex/Figure/Figure.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Figure/Figure.log
--------------------------------------------------------------------------------
/Latex/Figure/Figure.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Figure/Figure.pdf
--------------------------------------------------------------------------------
/Latex/Figure/Figure.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Figure/Figure.tex
--------------------------------------------------------------------------------
/Latex/Figure/Soldier.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Figure/Soldier.jpg
--------------------------------------------------------------------------------
/Latex/Footnote/Footnote.aux:
--------------------------------------------------------------------------------
1 | \relax
2 |
--------------------------------------------------------------------------------
/Latex/Footnote/Footnote.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Footnote/Footnote.log
--------------------------------------------------------------------------------
/Latex/Footnote/Footnote.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Footnote/Footnote.pdf
--------------------------------------------------------------------------------
/Latex/Footnote/Footnote.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Footnote/Footnote.tex
--------------------------------------------------------------------------------
/Latex/FrameCounter/FrameCounter.out:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/FrameCounter/FrameCounter.snm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/FrameCounter/FrameCounter.toc:
--------------------------------------------------------------------------------
1 | \beamer@endinputifotherversion {3.06pt}
2 |
--------------------------------------------------------------------------------
/Latex/Graphics/Graphics.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Graphics/Graphics.aux
--------------------------------------------------------------------------------
/Latex/Graphics/Graphics.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Graphics/Graphics.log
--------------------------------------------------------------------------------
/Latex/Graphics/Graphics.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Graphics/Graphics.pdf
--------------------------------------------------------------------------------
/Latex/Graphics/Graphics.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Graphics/Graphics.tex
--------------------------------------------------------------------------------
/Latex/Graphics/Images/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Graphics/Images/1.png
--------------------------------------------------------------------------------
/Latex/Graphics/Images/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Graphics/Images/2.png
--------------------------------------------------------------------------------
/Latex/Graphics/Images/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Graphics/Images/3.png
--------------------------------------------------------------------------------
/Latex/Graphics/Images/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Graphics/Images/4.png
--------------------------------------------------------------------------------
/Latex/Graphics/SideBySide.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Graphics/SideBySide.aux
--------------------------------------------------------------------------------
/Latex/Graphics/SideBySide.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Graphics/SideBySide.log
--------------------------------------------------------------------------------
/Latex/Graphics/SideBySide.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Graphics/SideBySide.pdf
--------------------------------------------------------------------------------
/Latex/Graphics/SideBySide.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Graphics/SideBySide.tex
--------------------------------------------------------------------------------
/Latex/Itemize/Itemize.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Itemize/Itemize.aux
--------------------------------------------------------------------------------
/Latex/Itemize/Itemize.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Itemize/Itemize.log
--------------------------------------------------------------------------------
/Latex/Itemize/Itemize.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Itemize/Itemize.pdf
--------------------------------------------------------------------------------
/Latex/Itemize/Itemize.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Itemize/Itemize.tex
--------------------------------------------------------------------------------
/Latex/Margins/Margins.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Margins/Margins.tex
--------------------------------------------------------------------------------
/Latex/Matrix/Matrix.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Matrix/Matrix.aux
--------------------------------------------------------------------------------
/Latex/Matrix/Matrix.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Matrix/Matrix.log
--------------------------------------------------------------------------------
/Latex/Matrix/Matrix.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Matrix/Matrix.pdf
--------------------------------------------------------------------------------
/Latex/Matrix/Matrix.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Matrix/Matrix.tex
--------------------------------------------------------------------------------
/Latex/Minipage/Minipage.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Minipage/Minipage.aux
--------------------------------------------------------------------------------
/Latex/Minipage/Minipage.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Minipage/Minipage.log
--------------------------------------------------------------------------------
/Latex/Minipage/Minipage.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Minipage/Minipage.pdf
--------------------------------------------------------------------------------
/Latex/Minipage/Minipage.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Minipage/Minipage.tex
--------------------------------------------------------------------------------
/Latex/OffsetImage/Scanner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/OffsetImage/Scanner.png
--------------------------------------------------------------------------------
/Latex/OffsetImage/Test.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/OffsetImage/Test.aux
--------------------------------------------------------------------------------
/Latex/OffsetImage/Test.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/OffsetImage/Test.log
--------------------------------------------------------------------------------
/Latex/OffsetImage/Test.nav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/OffsetImage/Test.nav
--------------------------------------------------------------------------------
/Latex/OffsetImage/Test.out:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/OffsetImage/Test.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/OffsetImage/Test.pdf
--------------------------------------------------------------------------------
/Latex/OffsetImage/Test.snm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/OffsetImage/Test.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/OffsetImage/Test.tex
--------------------------------------------------------------------------------
/Latex/OffsetImage/Test.toc:
--------------------------------------------------------------------------------
1 | \beamer@endinputifotherversion {3.06pt}
2 |
--------------------------------------------------------------------------------
/Latex/Quotes/Quotes.aux:
--------------------------------------------------------------------------------
1 | \relax
2 |
--------------------------------------------------------------------------------
/Latex/Quotes/Quotes.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Quotes/Quotes.log
--------------------------------------------------------------------------------
/Latex/Quotes/Quotes.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Quotes/Quotes.pdf
--------------------------------------------------------------------------------
/Latex/Quotes/Quotes.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Quotes/Quotes.tex
--------------------------------------------------------------------------------
/Latex/References/shortbib.bib:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/References/shortbib.bib
--------------------------------------------------------------------------------
/Latex/Slides/Basic.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Slides/Basic.aux
--------------------------------------------------------------------------------
/Latex/Slides/Basic.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Slides/Basic.log
--------------------------------------------------------------------------------
/Latex/Slides/Basic.nav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Slides/Basic.nav
--------------------------------------------------------------------------------
/Latex/Slides/Basic.out:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/Slides/Basic.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Slides/Basic.pdf
--------------------------------------------------------------------------------
/Latex/Slides/Basic.snm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/Slides/Basic.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Slides/Basic.tex
--------------------------------------------------------------------------------
/Latex/Slides/Basic.toc:
--------------------------------------------------------------------------------
1 | \beamer@endinputifotherversion {3.07pt}
2 |
--------------------------------------------------------------------------------
/Latex/Slides/SideOutline.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Slides/SideOutline.aux
--------------------------------------------------------------------------------
/Latex/Slides/SideOutline.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Slides/SideOutline.log
--------------------------------------------------------------------------------
/Latex/Slides/SideOutline.nav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Slides/SideOutline.nav
--------------------------------------------------------------------------------
/Latex/Slides/SideOutline.out:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Slides/SideOutline.out
--------------------------------------------------------------------------------
/Latex/Slides/SideOutline.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Slides/SideOutline.pdf
--------------------------------------------------------------------------------
/Latex/Slides/SideOutline.snm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/Slides/SideOutline.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Slides/SideOutline.tex
--------------------------------------------------------------------------------
/Latex/Slides/SideOutline.toc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Slides/SideOutline.toc
--------------------------------------------------------------------------------
/Latex/Spacing/Spacing.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Spacing/Spacing.aux
--------------------------------------------------------------------------------
/Latex/Spacing/Spacing.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Spacing/Spacing.log
--------------------------------------------------------------------------------
/Latex/Spacing/Spacing.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Spacing/Spacing.pdf
--------------------------------------------------------------------------------
/Latex/Spacing/Spacing.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Spacing/Spacing.tex
--------------------------------------------------------------------------------
/Latex/Subfig/Subfig.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Subfig/Subfig.pdf
--------------------------------------------------------------------------------
/Latex/Subfig/Subfig.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Subfig/Subfig.tex
--------------------------------------------------------------------------------
/Latex/Subfigure/Subfigure.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Subfigure/Subfigure.aux
--------------------------------------------------------------------------------
/Latex/Subfigure/Subfigure.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Subfigure/Subfigure.log
--------------------------------------------------------------------------------
/Latex/Subfigure/Subfigure.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Subfigure/Subfigure.pdf
--------------------------------------------------------------------------------
/Latex/Subfigure/Subfigure.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Subfigure/Subfigure.tex
--------------------------------------------------------------------------------
/Latex/Table/Table.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Table/Table.aux
--------------------------------------------------------------------------------
/Latex/Table/Table.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Table/Table.log
--------------------------------------------------------------------------------
/Latex/Table/Table.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Table/Table.pdf
--------------------------------------------------------------------------------
/Latex/Table/Table.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Table/Table.tex
--------------------------------------------------------------------------------
/Latex/Table/Table.tex.bak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Table/Table.tex.bak
--------------------------------------------------------------------------------
/Latex/Table/wrapped.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Table/wrapped.aux
--------------------------------------------------------------------------------
/Latex/Table/wrapped.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Table/wrapped.log
--------------------------------------------------------------------------------
/Latex/Table/wrapped.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Table/wrapped.pdf
--------------------------------------------------------------------------------
/Latex/Table/wrapped.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Table/wrapped.tex
--------------------------------------------------------------------------------
/Latex/Test/HSV.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Test/HSV.png
--------------------------------------------------------------------------------
/Latex/Test/Scanner.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Test/Scanner.png
--------------------------------------------------------------------------------
/Latex/Test/Test.aux:
--------------------------------------------------------------------------------
1 | \relax
2 |
--------------------------------------------------------------------------------
/Latex/Test/Test.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Test/Test.log
--------------------------------------------------------------------------------
/Latex/Test/Test.nav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Test/Test.nav
--------------------------------------------------------------------------------
/Latex/Test/Test.out:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/Test/Test.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Test/Test.pdf
--------------------------------------------------------------------------------
/Latex/Test/Test.snm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/Test/Test.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Test/Test.tex
--------------------------------------------------------------------------------
/Latex/Test/Test.tex.backup:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Test/Test.tex.backup
--------------------------------------------------------------------------------
/Latex/Test/Test.toc:
--------------------------------------------------------------------------------
1 | \beamer@endinputifotherversion {3.07pt}
2 |
--------------------------------------------------------------------------------
/Latex/Test/Test_Poster.aux:
--------------------------------------------------------------------------------
1 | \relax
2 |
--------------------------------------------------------------------------------
/Latex/Test/Test_Poster.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Test/Test_Poster.log
--------------------------------------------------------------------------------
/Latex/Test/Test_Poster.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Test/Test_Poster.pdf
--------------------------------------------------------------------------------
/Latex/Test/Test_Poster.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Test/Test_Poster.tex
--------------------------------------------------------------------------------
/Latex/Test/rpi.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Test/rpi.png
--------------------------------------------------------------------------------
/Latex/TextColor/TextColor.aux:
--------------------------------------------------------------------------------
1 | \relax
2 |
--------------------------------------------------------------------------------
/Latex/TextColor/TextColor.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/TextColor/TextColor.log
--------------------------------------------------------------------------------
/Latex/TextColor/TextColor.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/TextColor/TextColor.pdf
--------------------------------------------------------------------------------
/Latex/TextColor/TextColor.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/TextColor/TextColor.tex
--------------------------------------------------------------------------------
/Latex/Title/ProbFunction.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Title/ProbFunction.pdf
--------------------------------------------------------------------------------
/Latex/Title/Title.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Title/Title.aux
--------------------------------------------------------------------------------
/Latex/Title/Title.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Title/Title.log
--------------------------------------------------------------------------------
/Latex/Title/Title.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Title/Title.pdf
--------------------------------------------------------------------------------
/Latex/Title/Title.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Title/Title.tex
--------------------------------------------------------------------------------
/Latex/TitlePage/TitlePage.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/TitlePage/TitlePage.aux
--------------------------------------------------------------------------------
/Latex/TitlePage/TitlePage.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/TitlePage/TitlePage.log
--------------------------------------------------------------------------------
/Latex/TitlePage/TitlePage.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/TitlePage/TitlePage.pdf
--------------------------------------------------------------------------------
/Latex/TitlePage/TitlePage.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/TitlePage/TitlePage.tex
--------------------------------------------------------------------------------
/Latex/Titlepic/Titlepic.aux:
--------------------------------------------------------------------------------
1 | \relax
2 |
--------------------------------------------------------------------------------
/Latex/Titlepic/Titlepic.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Titlepic/Titlepic.log
--------------------------------------------------------------------------------
/Latex/Titlepic/Titlepic.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Titlepic/Titlepic.pdf
--------------------------------------------------------------------------------
/Latex/Titlepic/Titlepic.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Titlepic/Titlepic.tex
--------------------------------------------------------------------------------
/Latex/URL/URL.aux:
--------------------------------------------------------------------------------
1 | \relax
2 |
--------------------------------------------------------------------------------
/Latex/URL/URL.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/URL/URL.log
--------------------------------------------------------------------------------
/Latex/URL/URL.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/URL/URL.pdf
--------------------------------------------------------------------------------
/Latex/URL/URL.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/URL/URL.tex
--------------------------------------------------------------------------------
/Latex/Variables/Variables.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Variables/Variables.aux
--------------------------------------------------------------------------------
/Latex/Variables/Variables.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Variables/Variables.log
--------------------------------------------------------------------------------
/Latex/Variables/Variables.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Variables/Variables.pdf
--------------------------------------------------------------------------------
/Latex/Variables/Variables.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Variables/Variables.tex
--------------------------------------------------------------------------------
/Latex/Videos/Videos.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Videos/Videos.aux
--------------------------------------------------------------------------------
/Latex/Videos/Videos.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Videos/Videos.log
--------------------------------------------------------------------------------
/Latex/Videos/Videos.nav:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Videos/Videos.nav
--------------------------------------------------------------------------------
/Latex/Videos/Videos.out:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/Videos/Videos.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Videos/Videos.pdf
--------------------------------------------------------------------------------
/Latex/Videos/Videos.snm:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Latex/Videos/Videos.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Videos/Videos.tex
--------------------------------------------------------------------------------
/Latex/Videos/Videos.toc:
--------------------------------------------------------------------------------
1 | \beamer@endinputifotherversion {3.07pt}
2 |
--------------------------------------------------------------------------------
/Latex/Videos/test.flv:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/Videos/test.flv
--------------------------------------------------------------------------------
/Latex/WrapFig/WrapFig.aux:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/WrapFig/WrapFig.aux
--------------------------------------------------------------------------------
/Latex/WrapFig/WrapFig.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/WrapFig/WrapFig.log
--------------------------------------------------------------------------------
/Latex/WrapFig/WrapFig.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/WrapFig/WrapFig.pdf
--------------------------------------------------------------------------------
/Latex/WrapFig/WrapFig.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/WrapFig/WrapFig.tex
--------------------------------------------------------------------------------
/Latex/tabularx/tabularx.aux:
--------------------------------------------------------------------------------
1 | \relax
2 |
--------------------------------------------------------------------------------
/Latex/tabularx/tabularx.log:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/tabularx/tabularx.log
--------------------------------------------------------------------------------
/Latex/tabularx/tabularx.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/tabularx/tabularx.pdf
--------------------------------------------------------------------------------
/Latex/tabularx/tabularx.tex:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Latex/tabularx/tabularx.tex
--------------------------------------------------------------------------------
/Matlab/ransac line/.svn/format:
--------------------------------------------------------------------------------
1 | 8
2 |
--------------------------------------------------------------------------------
/Matlab/ransac line/ABC2mb.m:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Matlab/ransac line/ABC2mb.m
--------------------------------------------------------------------------------
/Matlab/ransac line/FindLine.m:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Matlab/ransac line/FindLine.m
--------------------------------------------------------------------------------
/Matlab/ransac line/drawLine.m:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Matlab/ransac line/drawLine.m
--------------------------------------------------------------------------------
/Matlab/ransac line/mb2ABC.m:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Matlab/ransac line/mb2ABC.m
--------------------------------------------------------------------------------
/Matlab/ransac line/points.mat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Matlab/ransac line/points.mat
--------------------------------------------------------------------------------
/Matlab/ransac line/ransac.m:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Matlab/ransac line/ransac.m
--------------------------------------------------------------------------------
/Other/ScreenSnapshot/new/ss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Other/ScreenSnapshot/new/ss
--------------------------------------------------------------------------------
/Other/ScreenSnapshot/ss:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Other/ScreenSnapshot/ss
--------------------------------------------------------------------------------
/Other/fft7/fft.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Other/fft7/fft.cpp
--------------------------------------------------------------------------------
/Other/fft7/fft.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Other/fft7/fft.h
--------------------------------------------------------------------------------
/Other/fft7/sinewave2.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Other/fft7/sinewave2.cpp
--------------------------------------------------------------------------------
/Other/fft7/sinewave2.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Other/fft7/sinewave2.h
--------------------------------------------------------------------------------
/Other/fft7/testsine.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Other/fft7/testsine.cpp
--------------------------------------------------------------------------------
/Other/screen.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Other/screen.cpp
--------------------------------------------------------------------------------
/Perl/Output.pl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Perl/Output.pl
--------------------------------------------------------------------------------
/Plastimatch/bspline.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Plastimatch/bspline.txt
--------------------------------------------------------------------------------
/Plastimatch/fixed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Plastimatch/fixed.png
--------------------------------------------------------------------------------
/Plastimatch/moving.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Plastimatch/moving.png
--------------------------------------------------------------------------------
/Plastimatch/translation.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Plastimatch/translation.txt
--------------------------------------------------------------------------------
/Plastimatch/warped.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Plastimatch/warped.png
--------------------------------------------------------------------------------
/Python/Args.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/Args.py
--------------------------------------------------------------------------------
/Python/Arithmetic.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/Arithmetic.py
--------------------------------------------------------------------------------
/Python/Array.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/Array.py
--------------------------------------------------------------------------------
/Python/Basename.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/Basename.py
--------------------------------------------------------------------------------
/Python/BigMatrix.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/BigMatrix.py
--------------------------------------------------------------------------------
/Python/CallFromBash/Func.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/CallFromBash/Func.py
--------------------------------------------------------------------------------
/Python/CallFromBash/test.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | ./Func.py --files='../*.py'
4 |
--------------------------------------------------------------------------------
/Python/Classes/Pt.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/Classes/Pt.py
--------------------------------------------------------------------------------
/Python/Classes/Pt.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/Classes/Pt.pyc
--------------------------------------------------------------------------------
/Python/Classes/Test.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/Classes/Test.py
--------------------------------------------------------------------------------
/Python/Commands.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/Commands.py
--------------------------------------------------------------------------------
/Python/CountFiles.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/CountFiles.py
--------------------------------------------------------------------------------
/Python/FileList/FileList.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/FileList/FileList.py
--------------------------------------------------------------------------------
/Python/FileList/a/a_file1.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Python/FileList/a/a_file2.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Python/FileList/a/c/c_file1.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Python/FileList/b/b_file1.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Python/FileList/b/b_file2.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Python/FileList/parent1.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Python/FileList/parent2.txt:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Python/ForEachLoop.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/ForEachLoop.py
--------------------------------------------------------------------------------
/Python/ForLoop.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/ForLoop.py
--------------------------------------------------------------------------------
/Python/Function.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/Function.py
--------------------------------------------------------------------------------
/Python/GUI/Test.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/GUI/Test.py
--------------------------------------------------------------------------------
/Python/GUI/wx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/GUI/wx
--------------------------------------------------------------------------------
/Python/GlobDemo.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/GlobDemo.py
--------------------------------------------------------------------------------
/Python/If.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/If.py
--------------------------------------------------------------------------------
/Python/JoinPaths.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/JoinPaths.py
--------------------------------------------------------------------------------
/Python/Math.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/Math.py
--------------------------------------------------------------------------------
/Python/Matrix.py:
--------------------------------------------------------------------------------
1 | #!/usr/bin/python
2 |
3 | from Numeric import *
4 | a = zeros([5,5], Float)
5 | a
6 |
7 |
--------------------------------------------------------------------------------
/Python/Numpy.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/Numpy.py
--------------------------------------------------------------------------------
/Python/Options.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/Options.py
--------------------------------------------------------------------------------
/Python/PIL/BottomRight.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/PIL/BottomRight.png
--------------------------------------------------------------------------------
/Python/PIL/DrawCircle.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/PIL/DrawCircle.py
--------------------------------------------------------------------------------
/Python/PIL/DrawLine.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/PIL/DrawLine.py
--------------------------------------------------------------------------------
/Python/PIL/DrawRectangle.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/PIL/DrawRectangle.py
--------------------------------------------------------------------------------
/Python/PIL/LineGradient.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/PIL/LineGradient.py
--------------------------------------------------------------------------------
/Python/PIL/OverlayText.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/PIL/OverlayText.py
--------------------------------------------------------------------------------
/Python/PIL/PasteImage.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/PIL/PasteImage.py
--------------------------------------------------------------------------------
/Python/PIL/WidthHeight.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/PIL/WidthHeight.py
--------------------------------------------------------------------------------
/Python/PIL/bkgd.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/PIL/bkgd.png
--------------------------------------------------------------------------------
/Python/PIL/circle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/PIL/circle.png
--------------------------------------------------------------------------------
/Python/PIL/line.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/PIL/line.png
--------------------------------------------------------------------------------
/Python/PIL/overlay.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/PIL/overlay.png
--------------------------------------------------------------------------------
/Python/PIL/rectangle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/PIL/rectangle.png
--------------------------------------------------------------------------------
/Python/PIL/test.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/PIL/test.jpg
--------------------------------------------------------------------------------
/Python/PIL/test.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/PIL/test.png
--------------------------------------------------------------------------------
/Python/PIL/testHSV.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/PIL/testHSV.png
--------------------------------------------------------------------------------
/Python/PIL/text.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/PIL/text.png
--------------------------------------------------------------------------------
/Python/ParameterList.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/ParameterList.py
--------------------------------------------------------------------------------
/Python/Parameters.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/Parameters.py
--------------------------------------------------------------------------------
/Python/ReadFile.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/ReadFile.py
--------------------------------------------------------------------------------
/Python/ReadMatrixFile.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/ReadMatrixFile.py
--------------------------------------------------------------------------------
/Python/RequiredParams.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/RequiredParams.py
--------------------------------------------------------------------------------
/Python/StopExecution.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/StopExecution.py
--------------------------------------------------------------------------------
/Python/StringLength.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/StringLength.py
--------------------------------------------------------------------------------
/Python/StringManipulation.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/StringManipulation.py
--------------------------------------------------------------------------------
/Python/Tags/EqualsTags.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/Tags/EqualsTags.py
--------------------------------------------------------------------------------
/Python/Tags/GroupBy.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/Tags/GroupBy.py
--------------------------------------------------------------------------------
/Python/Tags/RegExp.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/Tags/RegExp.py
--------------------------------------------------------------------------------
/Python/Tags/Tags.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/Tags/Tags.py
--------------------------------------------------------------------------------
/Python/TruncateDecimal.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/TruncateDecimal.py
--------------------------------------------------------------------------------
/Python/VTK/Arrays/GetValue.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/VTK/Arrays/GetValue.py
--------------------------------------------------------------------------------
/Python/VTK/Arrays/Test.vtp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/VTK/Arrays/Test.vtp
--------------------------------------------------------------------------------
/Python/VTK/Cursor3D.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/VTK/Cursor3D.py
--------------------------------------------------------------------------------
/Python/VTK/ICP.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/VTK/ICP.py
--------------------------------------------------------------------------------
/Python/VTK/PointSize.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/VTK/PointSize.py
--------------------------------------------------------------------------------
/Python/VTK/Test.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/VTK/Test.py
--------------------------------------------------------------------------------
/Python/VTK/Triangle.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/VTK/Triangle.py
--------------------------------------------------------------------------------
/Python/VTK/Triangle.vtp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/VTK/Triangle.vtp
--------------------------------------------------------------------------------
/Python/VTK/TriangleColored.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/VTK/TriangleColored.py
--------------------------------------------------------------------------------
/Python/VTK/TrianglePoints.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/VTK/TrianglePoints.py
--------------------------------------------------------------------------------
/Python/VTK/TrianglePoints.vtp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/VTK/TrianglePoints.vtp
--------------------------------------------------------------------------------
/Python/VTK/TriangleVerts.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/VTK/TriangleVerts.py
--------------------------------------------------------------------------------
/Python/VTK/TriangleVerts.vtp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/VTK/TriangleVerts.vtp
--------------------------------------------------------------------------------
/Python/VTK/wx/david.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/VTK/wx/david.py
--------------------------------------------------------------------------------
/Python/VTK/wx/example.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/VTK/wx/example.py
--------------------------------------------------------------------------------
/Python/VTK/wx/simple.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/VTK/wx/simple.py
--------------------------------------------------------------------------------
/Python/WhileLoop.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/WhileLoop.py
--------------------------------------------------------------------------------
/Python/WorkingDirectory.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/WorkingDirectory.py
--------------------------------------------------------------------------------
/Python/WriteFile.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/WriteFile.py
--------------------------------------------------------------------------------
/Python/ZeroPad.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/ZeroPad.py
--------------------------------------------------------------------------------
/Python/functions/MyFunc.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/functions/MyFunc.py
--------------------------------------------------------------------------------
/Python/functions/MyFunc.pyc:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/functions/MyFunc.pyc
--------------------------------------------------------------------------------
/Python/images/1small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/images/1small.jpg
--------------------------------------------------------------------------------
/Python/images/1smallbig.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/images/1smallbig.png
--------------------------------------------------------------------------------
/Python/images/2small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/images/2small.jpg
--------------------------------------------------------------------------------
/Python/images/2smallbig.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/images/2smallbig.png
--------------------------------------------------------------------------------
/Python/images/3small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/images/3small.jpg
--------------------------------------------------------------------------------
/Python/images/3smallbig.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/images/3smallbig.png
--------------------------------------------------------------------------------
/Python/images/4small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/images/4small.jpg
--------------------------------------------------------------------------------
/Python/images/4smallbig.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/images/4smallbig.png
--------------------------------------------------------------------------------
/Python/images/5small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/images/5small.jpg
--------------------------------------------------------------------------------
/Python/images/5smallbig.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/images/5smallbig.png
--------------------------------------------------------------------------------
/Python/matrix.txt:
--------------------------------------------------------------------------------
1 | 1 2 3
2 | 4 5 6
3 | 7 8 9
4 |
--------------------------------------------------------------------------------
/Python/matrix2.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/matrix2.txt
--------------------------------------------------------------------------------
/Python/matrix3.txt:
--------------------------------------------------------------------------------
1 | 4 5 6
2 | 2 4 6
3 | 3 8 1
4 |
--------------------------------------------------------------------------------
/Python/test.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Python/test.txt
--------------------------------------------------------------------------------
/SQLite/test.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/SQLite/test.db
--------------------------------------------------------------------------------
/VB/Casting/Casting.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/Casting/Casting.sln
--------------------------------------------------------------------------------
/VB/Casting/Casting.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/Casting/Casting.suo
--------------------------------------------------------------------------------
/VB/Casting/Casting/Casting.vbproj.user:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/VB/Casting/Casting/Form1.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/Casting/Casting/Form1.resx
--------------------------------------------------------------------------------
/VB/Casting/Casting/Form1.vb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/Casting/Casting/Form1.vb
--------------------------------------------------------------------------------
/VB/EventLog/EventLog.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/EventLog/EventLog.sln
--------------------------------------------------------------------------------
/VB/EventLog/EventLog.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/EventLog/EventLog.suo
--------------------------------------------------------------------------------
/VB/EventLog/EventLog/EventLog.vbproj.user:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/VB/EventLog/EventLog/Form1.vb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/EventLog/EventLog/Form1.vb
--------------------------------------------------------------------------------
/VB/KeyCapture/KeyCapture.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/KeyCapture/KeyCapture.sln
--------------------------------------------------------------------------------
/VB/KeyCapture/KeyCapture.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/KeyCapture/KeyCapture.suo
--------------------------------------------------------------------------------
/VB/ListView/ListView.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/ListView/ListView.sln
--------------------------------------------------------------------------------
/VB/ListView/ListView.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/ListView/ListView.suo
--------------------------------------------------------------------------------
/VB/ListView/ListView/Form1.vb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/ListView/ListView/Form1.vb
--------------------------------------------------------------------------------
/VB/ListView/ListView/ListView.vbproj.user:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/VB/Test/Test.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/Test/Test.sln
--------------------------------------------------------------------------------
/VB/Test/Test.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/Test/Test.suo
--------------------------------------------------------------------------------
/VB/Test/Test/Form1.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/Test/Test/Form1.resx
--------------------------------------------------------------------------------
/VB/Test/Test/Form1.vb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/Test/Test/Form1.vb
--------------------------------------------------------------------------------
/VB/Test/Test/Test.vbproj:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/Test/Test/Test.vbproj
--------------------------------------------------------------------------------
/VB/Test/Test/Test.vbproj.user:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/VB/TestEmail/TestEmail.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/TestEmail/TestEmail.sln
--------------------------------------------------------------------------------
/VB/TestEmail/TestEmail.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/TestEmail/TestEmail.suo
--------------------------------------------------------------------------------
/VB/Tracing/Tracing.sln:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/Tracing/Tracing.sln
--------------------------------------------------------------------------------
/VB/Tracing/Tracing.suo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/Tracing/Tracing.suo
--------------------------------------------------------------------------------
/VB/Tracing/Tracing/Form1.resx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/Tracing/Tracing/Form1.resx
--------------------------------------------------------------------------------
/VB/Tracing/Tracing/Form1.vb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/VB/Tracing/Tracing/Form1.vb
--------------------------------------------------------------------------------
/VB/Tracing/Tracing/Tracing.vbproj.user:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Web/CSS/Basics/basics.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/Basics/basics.css
--------------------------------------------------------------------------------
/Web/CSS/Basics/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/Basics/index.html
--------------------------------------------------------------------------------
/Web/CSS/BoxLayout/basics.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/BoxLayout/basics.css
--------------------------------------------------------------------------------
/Web/CSS/BoxLayout/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/BoxLayout/index.html
--------------------------------------------------------------------------------
/Web/CSS/Centering/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/Centering/index.html
--------------------------------------------------------------------------------
/Web/CSS/DropDownMenu/link.txt:
--------------------------------------------------------------------------------
1 | http://www.lwis.net/free-css-drop-down-menu/
--------------------------------------------------------------------------------
/Web/CSS/DropDownMenu/readme.txt:
--------------------------------------------------------------------------------
1 | http://lwis.net/free-css-drop-down-menu/
--------------------------------------------------------------------------------
/Web/CSS/FullClass/default.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/FullClass/default.css
--------------------------------------------------------------------------------
/Web/CSS/FullClass/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/FullClass/index.html
--------------------------------------------------------------------------------
/Web/CSS/FullClass/license.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/FullClass/license.txt
--------------------------------------------------------------------------------
/Web/CSS/FullId/default.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/FullId/default.css
--------------------------------------------------------------------------------
/Web/CSS/FullId/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/FullId/index.html
--------------------------------------------------------------------------------
/Web/CSS/FullId/license.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/FullId/license.txt
--------------------------------------------------------------------------------
/Web/CSS/Sidebar/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/Sidebar/index.html
--------------------------------------------------------------------------------
/Web/CSS/Sidebar/table.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/Sidebar/table.css
--------------------------------------------------------------------------------
/Web/CSS/Table/ForceWidth.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/Table/ForceWidth.html
--------------------------------------------------------------------------------
/Web/CSS/Table/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/Table/index.html
--------------------------------------------------------------------------------
/Web/CSS/Table/table.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/Table/table.css
--------------------------------------------------------------------------------
/Web/CSS/region/default.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/region/default.css
--------------------------------------------------------------------------------
/Web/CSS/region/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/region/index.html
--------------------------------------------------------------------------------
/Web/CSS/region/license.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/region/license.txt
--------------------------------------------------------------------------------
/Web/CSS/tabs/class.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/tabs/class.css
--------------------------------------------------------------------------------
/Web/CSS/tabs/class.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/tabs/class.html
--------------------------------------------------------------------------------
/Web/CSS/tabs/id.css:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/tabs/id.css
--------------------------------------------------------------------------------
/Web/CSS/tabs/id.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/tabs/id.html
--------------------------------------------------------------------------------
/Web/CSS/tabs/images/img01.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/tabs/images/img01.jpg
--------------------------------------------------------------------------------
/Web/CSS/tabs/images/img12.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/tabs/images/img12.gif
--------------------------------------------------------------------------------
/Web/CSS/tabs/images/img17.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/tabs/images/img17.gif
--------------------------------------------------------------------------------
/Web/CSS/tabs/images/img18.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/tabs/images/img18.gif
--------------------------------------------------------------------------------
/Web/CSS/tabs/images/img19.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/tabs/images/img19.gif
--------------------------------------------------------------------------------
/Web/CSS/tabs/images/img20.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/tabs/images/img20.gif
--------------------------------------------------------------------------------
/Web/CSS/tabs/license.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/CSS/tabs/license.txt
--------------------------------------------------------------------------------
/Web/HTML/Tables/Tables.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/HTML/Tables/Tables.html
--------------------------------------------------------------------------------
/Web/HTML/redirect/index.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/HTML/redirect/index.html
--------------------------------------------------------------------------------
/Web/HTML/video/movie.ogg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/HTML/video/movie.ogg
--------------------------------------------------------------------------------
/Web/HTML/video/video.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/HTML/video/video.html
--------------------------------------------------------------------------------
/Web/Mobile/index.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/Mobile/index.php
--------------------------------------------------------------------------------
/Web/Mobile/upgrade.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/Mobile/upgrade.html
--------------------------------------------------------------------------------
/Web/PHP/Arrays/Arrays.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/PHP/Arrays/Arrays.php
--------------------------------------------------------------------------------
/Web/PHP/DropDown/receive_form.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Web/PHP/ForLoop/forloop.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/PHP/ForLoop/forloop.php
--------------------------------------------------------------------------------
/Web/PHP/Form/receive_form.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Web/PHP/Form/send_form.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/PHP/Form/send_form.php
--------------------------------------------------------------------------------
/Web/PHP/FormHiddenValues/receive_form.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Web/PHP/Function/main.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/PHP/Function/main.php
--------------------------------------------------------------------------------
/Web/PHP/Quotes/Quotes.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/PHP/Quotes/Quotes.php
--------------------------------------------------------------------------------
/Web/PHP/Set/set.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/PHP/Set/set.php
--------------------------------------------------------------------------------
/Web/PHP/TextBox/receive_form.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Web/PHP/TextBox/send_form.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/PHP/TextBox/send_form.php
--------------------------------------------------------------------------------
/Web/PHP/echo.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Web/PHP/print.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Web/SQLite/.htaccess:
--------------------------------------------------------------------------------
1 | php_value error_log php.log
--------------------------------------------------------------------------------
/Web/SQLite/Insert/Insert.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/SQLite/Insert/Insert.txt
--------------------------------------------------------------------------------
/Web/SQLite/Insert/Test.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/SQLite/Insert/Test.db
--------------------------------------------------------------------------------
/Web/SQLite/Join/Join.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/SQLite/Join/Join.txt
--------------------------------------------------------------------------------
/Web/SQLite/Join/test.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/SQLite/Join/test.db
--------------------------------------------------------------------------------
/Web/SQLite/MonthName/Test.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/SQLite/MonthName/Test.db
--------------------------------------------------------------------------------
/Web/SQLite/OrderBy/Test.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/SQLite/OrderBy/Test.db
--------------------------------------------------------------------------------
/Web/SQLite/PopulateDropDown/receive_form.php:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Web/SQLite/Update/Test.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/SQLite/Update/Test.db
--------------------------------------------------------------------------------
/Web/SQLite/Update/Update.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/SQLite/Update/Update.txt
--------------------------------------------------------------------------------
/Web/SQLite/Views/Views.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/SQLite/Views/Views.php
--------------------------------------------------------------------------------
/Web/SQLite/php.log:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/Web/SQLite/test.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/SQLite/test.db
--------------------------------------------------------------------------------
/Web/SQLite/test.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/SQLite/test.php
--------------------------------------------------------------------------------
/Web/SQLite/test.py:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/SQLite/test.py
--------------------------------------------------------------------------------
/Web/html5/big_buck_bunny.mp4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/html5/big_buck_bunny.mp4
--------------------------------------------------------------------------------
/Web/html5/test.html:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/html5/test.html
--------------------------------------------------------------------------------
/Web/xml/XSL/cdcatalog.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/xml/XSL/cdcatalog.xml
--------------------------------------------------------------------------------
/Web/xml/XSL/cdcatalog.xsl:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/xml/XSL/cdcatalog.xsl
--------------------------------------------------------------------------------
/Web/xml/php/cdcatalog.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/xml/php/cdcatalog.xml
--------------------------------------------------------------------------------
/Web/xml/php/test.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/xml/php/test.php
--------------------------------------------------------------------------------
/Web/xml/php/test.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/xml/php/test.xml
--------------------------------------------------------------------------------
/Web/xml/php/test3.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/xml/php/test3.xml
--------------------------------------------------------------------------------
/Web/xml/xpath/allbooks.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/xml/xpath/allbooks.php
--------------------------------------------------------------------------------
/Web/xml/xpath/bookdetails.php:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/xml/xpath/bookdetails.php
--------------------------------------------------------------------------------
/Web/xml/xpath/bookstore.xml:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Web/xml/xpath/bookstore.xml
--------------------------------------------------------------------------------
/Zenity/VideoFromImages.sh:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/Zenity/VideoFromImages.sh
--------------------------------------------------------------------------------
/c++/2DArray/2DArray.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/2DArray/2DArray.cpp
--------------------------------------------------------------------------------
/c++/2DArray/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/2DArray/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/2DArray/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/2DArray/Doxyfile
--------------------------------------------------------------------------------
/c++/Alphabetize/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Alphabetize/Doxyfile
--------------------------------------------------------------------------------
/c++/Array/Array.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Array/Array.cpp
--------------------------------------------------------------------------------
/c++/Array/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Array/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Array/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Array/Doxyfile
--------------------------------------------------------------------------------
/c++/Assert/SEE_OTHER:
--------------------------------------------------------------------------------
1 | Debugging/Assert
2 |
--------------------------------------------------------------------------------
/c++/BinaryIO/BinaryIO.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/BinaryIO/BinaryIO.cpp
--------------------------------------------------------------------------------
/c++/BinaryIO/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/BinaryIO/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/BinaryIO/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/BinaryIO/Doxyfile
--------------------------------------------------------------------------------
/c++/Boost/Any/Any.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Any/Any.cpp
--------------------------------------------------------------------------------
/c++/Boost/Any/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Any/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Boost/Bimap/Bimap.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Bimap/Bimap.cpp
--------------------------------------------------------------------------------
/c++/Boost/Bimap/Legacy.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Bimap/Legacy.cpp
--------------------------------------------------------------------------------
/c++/Boost/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Boost/Concept/Concept.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Concept/Concept.cpp
--------------------------------------------------------------------------------
/c++/Boost/Concept/Custom.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Concept/Custom.cpp
--------------------------------------------------------------------------------
/c++/Boost/Concept/legacy.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Concept/legacy.cpp
--------------------------------------------------------------------------------
/c++/Boost/Function/Legacy.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Function/Legacy.cpp
--------------------------------------------------------------------------------
/c++/Boost/Functor/Functor.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Functor/Functor.cpp
--------------------------------------------------------------------------------
/c++/Boost/Functor/legacy.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Functor/legacy.cpp
--------------------------------------------------------------------------------
/c++/Boost/Functor/simple.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Functor/simple.cpp
--------------------------------------------------------------------------------
/c++/Boost/Fusion/Fusion.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Fusion/Fusion.cpp
--------------------------------------------------------------------------------
/c++/Boost/Random/ReadMe.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Random/ReadMe.txt
--------------------------------------------------------------------------------
/c++/Boost/Regex/Regex.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Regex/Regex.cpp
--------------------------------------------------------------------------------
/c++/Boost/Regex/legacy.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Regex/legacy.cpp
--------------------------------------------------------------------------------
/c++/Boost/Regex/working.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Regex/working.cpp
--------------------------------------------------------------------------------
/c++/Boost/Spirit/Complex.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Spirit/Complex.cpp
--------------------------------------------------------------------------------
/c++/Boost/Spirit/LongList.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Spirit/LongList.cpp
--------------------------------------------------------------------------------
/c++/Boost/Spirit/Simple.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Spirit/Simple.cpp
--------------------------------------------------------------------------------
/c++/Boost/Spirit/Spirit.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Spirit/Spirit.cpp
--------------------------------------------------------------------------------
/c++/Boost/Spirit/Test1.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Spirit/Test1.cpp
--------------------------------------------------------------------------------
/c++/Boost/Spirit/phoenix.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Spirit/phoenix.cpp
--------------------------------------------------------------------------------
/c++/Boost/Spirit/skipper.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Spirit/skipper.cpp
--------------------------------------------------------------------------------
/c++/Boost/Testing/Testing.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Testing/Testing.cpp
--------------------------------------------------------------------------------
/c++/Boost/Testing/legacy.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Testing/legacy.cpp
--------------------------------------------------------------------------------
/c++/Boost/Timer/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Timer/Doxyfile
--------------------------------------------------------------------------------
/c++/Boost/Tuple/Tuple.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Tuple/Tuple.cpp
--------------------------------------------------------------------------------
/c++/Boost/Variant/Variant.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/Variant/Variant.cpp
--------------------------------------------------------------------------------
/c++/Boost/ref/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/ref/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Boost/ref/ref.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Boost/ref/ref.cpp
--------------------------------------------------------------------------------
/c++/Broken/Classes/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Broken/Classes/Doxyfile
--------------------------------------------------------------------------------
/c++/Broken/Classes/Person.cpp:
--------------------------------------------------------------------------------
1 | #include "Person.h"
2 |
--------------------------------------------------------------------------------
/c++/Broken/Classes/Person.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Broken/Classes/Person.h
--------------------------------------------------------------------------------
/c++/Broken/Classes/Pilot.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Broken/Classes/Pilot.cpp
--------------------------------------------------------------------------------
/c++/Broken/Classes/Pilot.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Broken/Classes/Pilot.h
--------------------------------------------------------------------------------
/c++/Broken/DeepCopy/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Broken/DeepCopy/Doxyfile
--------------------------------------------------------------------------------
/c++/Broken/DeepCopy/Point.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Broken/DeepCopy/Point.h
--------------------------------------------------------------------------------
/c++/Broken/FileInputStream/Example.txt:
--------------------------------------------------------------------------------
1 | 23
2 | 1 2 3 4
3 | 8.9 1.22
4 |
--------------------------------------------------------------------------------
/c++/Broken/Iterator/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Broken/Iterator/Doxyfile
--------------------------------------------------------------------------------
/c++/Broken/Mutable/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Broken/Mutable/Doxyfile
--------------------------------------------------------------------------------
/c++/Broken/Mutable/Test.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Broken/Mutable/Test.cpp
--------------------------------------------------------------------------------
/c++/Broken/QT/Button/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Broken/QT/Button/Doxyfile
--------------------------------------------------------------------------------
/c++/Broken/QT/Button/main.ui:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Broken/QT/Button/main.ui
--------------------------------------------------------------------------------
/c++/Broken/QT/Button/mypush.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Broken/QT/Button/mypush.h
--------------------------------------------------------------------------------
/c++/Broken/pointers/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Broken/pointers/Doxyfile
--------------------------------------------------------------------------------
/c++/CImg/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/CImg/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/CImg/test.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/CImg/test.cpp
--------------------------------------------------------------------------------
/c++/CMake/Basic/cmake.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/CMake/Basic/cmake.cpp
--------------------------------------------------------------------------------
/c++/CTest/Standalone/test.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/CTest/Standalone/test.cpp
--------------------------------------------------------------------------------
/c++/CTest/Veritas/test.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/CTest/Veritas/test.cpp
--------------------------------------------------------------------------------
/c++/Casting/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Casting/Doxyfile
--------------------------------------------------------------------------------
/c++/CharacterArray/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/CharacterArray/Doxyfile
--------------------------------------------------------------------------------
/c++/Classes/ConstructorInheritance/Person.cpp:
--------------------------------------------------------------------------------
1 | #include "Person.h"
2 |
--------------------------------------------------------------------------------
/c++/Comparison/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Comparison/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Comparison/Comparison.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Comparison/Comparison.cpp
--------------------------------------------------------------------------------
/c++/CppUnit/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/CppUnit/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/CxxTest/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/CxxTest/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/CxxTest/CxxTest.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/CxxTest/CxxTest.cpp
--------------------------------------------------------------------------------
/c++/CxxTest/Tests.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/CxxTest/Tests.h
--------------------------------------------------------------------------------
/c++/CxxTest/tests.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/CxxTest/tests.cpp
--------------------------------------------------------------------------------
/c++/DVPTree/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/DVPTree/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/DVPTree/DVPTree.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/DVPTree/DVPTree.cpp
--------------------------------------------------------------------------------
/c++/DVPTree/notworking.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/DVPTree/notworking.cpp
--------------------------------------------------------------------------------
/c++/Debugging/Assert/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Debugging/Assert/Doxyfile
--------------------------------------------------------------------------------
/c++/Decimals/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Decimals/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Decimals/Decimals.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Decimals/Decimals.cpp
--------------------------------------------------------------------------------
/c++/DefaultArguments/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/DefaultArguments/Doxyfile
--------------------------------------------------------------------------------
/c++/Define/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Define/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Define/Define.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Define/Define.cpp
--------------------------------------------------------------------------------
/c++/Define/legacy.cxx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Define/legacy.cxx
--------------------------------------------------------------------------------
/c++/Demos/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Demos/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Demos/demo_vtk_arrays.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Demos/demo_vtk_arrays.cpp
--------------------------------------------------------------------------------
/c++/Demos/demo_vtk_hello.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Demos/demo_vtk_hello.cpp
--------------------------------------------------------------------------------
/c++/Demos/demo_vtk_strips.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Demos/demo_vtk_strips.cpp
--------------------------------------------------------------------------------
/c++/Demos/project_config.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Demos/project_config.h
--------------------------------------------------------------------------------
/c++/Demos/test.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Demos/test.cpp
--------------------------------------------------------------------------------
/c++/Demos/vtk_minimal.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Demos/vtk_minimal.cpp
--------------------------------------------------------------------------------
/c++/Doxygen/simple/Class1.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Doxygen/simple/Class1.h
--------------------------------------------------------------------------------
/c++/Doxygen/simple/Class2.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Doxygen/simple/Class2.h
--------------------------------------------------------------------------------
/c++/Doxygen/simple/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Doxygen/simple/Doxyfile
--------------------------------------------------------------------------------
/c++/Doxygen/simple/readme.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Doxygen/simple/readme.txt
--------------------------------------------------------------------------------
/c++/Doxygen/simple/test.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Doxygen/simple/test.cpp
--------------------------------------------------------------------------------
/c++/Eigen/Adjoint/Adjoint.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Eigen/Adjoint/Adjoint.cpp
--------------------------------------------------------------------------------
/c++/Eigen/Matrix/Identity.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Eigen/Matrix/Identity.cpp
--------------------------------------------------------------------------------
/c++/Eigen/Matrix/Matrix.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Eigen/Matrix/Matrix.cpp
--------------------------------------------------------------------------------
/c++/Eigen/SVD/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Eigen/SVD/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Eigen/SVD/SVD.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Eigen/SVD/SVD.cpp
--------------------------------------------------------------------------------
/c++/Eigen/Vector/Vector.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Eigen/Vector/Vector.cpp
--------------------------------------------------------------------------------
/c++/EmptyProject/Point.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/EmptyProject/Point.h
--------------------------------------------------------------------------------
/c++/EmptyProject/Test.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/EmptyProject/Test.cpp
--------------------------------------------------------------------------------
/c++/Enum/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Enum/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Enum/Enum.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Enum/Enum.cpp
--------------------------------------------------------------------------------
/c++/FBO/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/FBO/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/FBO/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/FBO/Doxyfile
--------------------------------------------------------------------------------
/c++/FBO/FBO.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/FBO/FBO.cpp
--------------------------------------------------------------------------------
/c++/FBO/FBO.cpp.bak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/FBO/FBO.cpp.bak
--------------------------------------------------------------------------------
/c++/FFTWTest/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/FFTWTest/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/FFTWTest/FFTWTest.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/FFTWTest/FFTWTest.cpp
--------------------------------------------------------------------------------
/c++/FFTWTest/FindFFTW.cmake:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/FFTWTest/FindFFTW.cmake
--------------------------------------------------------------------------------
/c++/Factory/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Factory/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Factory/Factory.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Factory/Factory.cpp
--------------------------------------------------------------------------------
/c++/FloatVsDouble/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/FloatVsDouble/Doxyfile
--------------------------------------------------------------------------------
/c++/Flush/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Flush/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Flush/Flush.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Flush/Flush.cpp
--------------------------------------------------------------------------------
/c++/FunctionPointer/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/FunctionPointer/Doxyfile
--------------------------------------------------------------------------------
/c++/FunctionPointer/cube.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/FunctionPointer/cube.txt
--------------------------------------------------------------------------------
/c++/Functor/Basic.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Functor/Basic.cpp
--------------------------------------------------------------------------------
/c++/Functor/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Functor/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Functor/Functor.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Functor/Functor.cpp
--------------------------------------------------------------------------------
/c++/GSL/Constrained Minimization with OOL/Example.cpp:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/c++/GSL/Test1/Test1.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/GSL/Test1/Test1.cpp
--------------------------------------------------------------------------------
/c++/GTest/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/GTest/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/GTest/GTest.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/GTest/GTest.cpp
--------------------------------------------------------------------------------
/c++/GTest/GTestWithMain.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/GTest/GTestWithMain.cpp
--------------------------------------------------------------------------------
/c++/Gaussian/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Gaussian/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Gaussian/Gaussian.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Gaussian/Gaussian.cpp
--------------------------------------------------------------------------------
/c++/Generics/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Generics/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Generics/Container.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Generics/Container.cpp
--------------------------------------------------------------------------------
/c++/Generics/Generics.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Generics/Generics.cpp
--------------------------------------------------------------------------------
/c++/Geotiff/Read/Read.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Geotiff/Read/Read.cpp
--------------------------------------------------------------------------------
/c++/HexToInt/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/HexToInt/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/HexToInt/HexToInt.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/HexToInt/HexToInt.cpp
--------------------------------------------------------------------------------
/c++/IO/FileInput/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/IO/FileInput/Doxyfile
--------------------------------------------------------------------------------
/c++/IO/FileInput/Example.txt:
--------------------------------------------------------------------------------
1 | 23
2 | test
3 | 4.5
--------------------------------------------------------------------------------
/c++/IO/FileInput/cube.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/IO/FileInput/cube.txt
--------------------------------------------------------------------------------
/c++/IO/Setw/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/IO/Setw/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/IO/Setw/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/IO/Setw/Doxyfile
--------------------------------------------------------------------------------
/c++/IO/Setw/Setw.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/IO/Setw/Setw.cpp
--------------------------------------------------------------------------------
/c++/Infinity/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Infinity/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Infinity/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Infinity/Doxyfile
--------------------------------------------------------------------------------
/c++/Infinity/Infinity.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Infinity/Infinity.cpp
--------------------------------------------------------------------------------
/c++/Inheritance/Overload.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Inheritance/Overload.cpp
--------------------------------------------------------------------------------
/c++/Inheritance/Overload2.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Inheritance/Overload2.cpp
--------------------------------------------------------------------------------
/c++/Interpolation/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Interpolation/Doxyfile
--------------------------------------------------------------------------------
/c++/Iterator/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Iterator/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Iterator/Iterator.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Iterator/Iterator.cpp
--------------------------------------------------------------------------------
/c++/KeyboardInput/Cin.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/KeyboardInput/Cin.cpp
--------------------------------------------------------------------------------
/c++/KeyboardInput/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/KeyboardInput/Doxyfile
--------------------------------------------------------------------------------
/c++/Logging/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Logging/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Logging/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Logging/Doxyfile
--------------------------------------------------------------------------------
/c++/Logging/Logging.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Logging/Logging.cpp
--------------------------------------------------------------------------------
/c++/Loops/DoWhile/DoWhile.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Loops/DoWhile/DoWhile.cpp
--------------------------------------------------------------------------------
/c++/Loops/DoWhile/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Loops/DoWhile/Doxyfile
--------------------------------------------------------------------------------
/c++/Loops/DoWhile/test.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Loops/DoWhile/test.txt
--------------------------------------------------------------------------------
/c++/Macros/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Macros/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Macros/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Macros/Doxyfile
--------------------------------------------------------------------------------
/c++/Macros/Macros.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Macros/Macros.cpp
--------------------------------------------------------------------------------
/c++/Math/Log/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Math/Log/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Math/Log/Log.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Math/Log/Log.cpp
--------------------------------------------------------------------------------
/c++/Math/Median/Median.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Math/Median/Median.cpp
--------------------------------------------------------------------------------
/c++/Math/Median/legacy.cxx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Math/Median/legacy.cxx
--------------------------------------------------------------------------------
/c++/Math/MinMax/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Math/MinMax/Doxyfile
--------------------------------------------------------------------------------
/c++/Math/MinMax/MinMax.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Math/MinMax/MinMax.cpp
--------------------------------------------------------------------------------
/c++/Math/Pi/Pi.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Math/Pi/Pi.cpp
--------------------------------------------------------------------------------
/c++/Math/Pow/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Math/Pow/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Math/Pow/Pow.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Math/Pow/Pow.cpp
--------------------------------------------------------------------------------
/c++/Math/Trig/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Math/Trig/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Math/Trig/Trig.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Math/Trig/Trig.cpp
--------------------------------------------------------------------------------
/c++/Mixin/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Mixin/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Mixin/Mixin.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Mixin/Mixin.cpp
--------------------------------------------------------------------------------
/c++/Mod/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Mod/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Mod/Mod.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Mod/Mod.cpp
--------------------------------------------------------------------------------
/c++/NAN/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/NAN/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/NAN/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/NAN/Doxyfile
--------------------------------------------------------------------------------
/c++/NAN/NAN.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/NAN/NAN.cpp
--------------------------------------------------------------------------------
/c++/Namespaces/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Namespaces/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Namespaces/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Namespaces/Doxyfile
--------------------------------------------------------------------------------
/c++/Namespaces/Namespaces.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Namespaces/Namespaces.cpp
--------------------------------------------------------------------------------
/c++/Namespaces/Namespaces.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Namespaces/Namespaces.h
--------------------------------------------------------------------------------
/c++/Namespaces/Test.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Namespaces/Test.cpp
--------------------------------------------------------------------------------
/c++/ObjectFiles/main:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/ObjectFiles/main
--------------------------------------------------------------------------------
/c++/ObjectFiles/main.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/ObjectFiles/main.cpp
--------------------------------------------------------------------------------
/c++/ObjectFiles/test.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/ObjectFiles/test.cpp
--------------------------------------------------------------------------------
/c++/ObjectFiles/test.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/ObjectFiles/test.h
--------------------------------------------------------------------------------
/c++/ObjectFiles/test.o:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/ObjectFiles/test.o
--------------------------------------------------------------------------------
/c++/Octave/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Octave/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Octave/OctaveTest.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Octave/OctaveTest.cpp
--------------------------------------------------------------------------------
/c++/Octave/OctaveTest.cpp.bak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Octave/OctaveTest.cpp.bak
--------------------------------------------------------------------------------
/c++/Octave/ProbNumeric.m:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Octave/ProbNumeric.m
--------------------------------------------------------------------------------
/c++/Octave/octave.cc.old:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Octave/octave.cc.old
--------------------------------------------------------------------------------
/c++/Offsetof/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Offsetof/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Offsetof/Offsetof.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Offsetof/Offsetof.cpp
--------------------------------------------------------------------------------
/c++/OpenCV/Basics/Matrix3Channel/build/CMakeFiles/Matrix3Channel.dir/progress.make:
--------------------------------------------------------------------------------
1 | CMAKE_PROGRESS_1 = 1
2 |
3 |
--------------------------------------------------------------------------------
/c++/OpenCV/Basics/Matrix3Channel/build/CMakeFiles/progress.marks:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/c++/OpenCV/Image/Image.cxx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenCV/Image/Image.cxx
--------------------------------------------------------------------------------
/c++/OpenCV/Matrix/Matrix.cxx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenCV/Matrix/Matrix.cxx
--------------------------------------------------------------------------------
/c++/OpenCV/RectifyPair/1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenCV/RectifyPair/1.jpg
--------------------------------------------------------------------------------
/c++/OpenCV/RectifyPair/2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenCV/RectifyPair/2.jpg
--------------------------------------------------------------------------------
/c++/OpenCV/RemoveDistortion/build/CMakeFiles/RemoveDistortion.dir/progress.make:
--------------------------------------------------------------------------------
1 | CMAKE_PROGRESS_1 = 1
2 |
3 |
--------------------------------------------------------------------------------
/c++/OpenCV/RemoveDistortion/build/CMakeFiles/progress.marks:
--------------------------------------------------------------------------------
1 | 1
2 |
--------------------------------------------------------------------------------
/c++/OpenGL/Alpha/Alpha.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Alpha/Alpha.cpp
--------------------------------------------------------------------------------
/c++/OpenGL/Alpha/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Alpha/Doxyfile
--------------------------------------------------------------------------------
/c++/OpenGL/Buffers/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Buffers/Doxyfile
--------------------------------------------------------------------------------
/c++/OpenGL/ColorPick/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/ColorPick/Doxyfile
--------------------------------------------------------------------------------
/c++/OpenGL/Lighting/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Lighting/Doxyfile
--------------------------------------------------------------------------------
/c++/OpenGL/Menu/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Menu/Doxyfile
--------------------------------------------------------------------------------
/c++/OpenGL/Menu/Test.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Menu/Test.cpp
--------------------------------------------------------------------------------
/c++/OpenGL/Mouse/Mouse.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Mouse/Mouse.cpp
--------------------------------------------------------------------------------
/c++/OpenGL/Mouse/MouseClass.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Mouse/MouseClass.h
--------------------------------------------------------------------------------
/c++/OpenGL/NoWindow/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/NoWindow/Doxyfile
--------------------------------------------------------------------------------
/c++/OpenGL/Pick/Display.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Pick/Display.cpp
--------------------------------------------------------------------------------
/c++/OpenGL/Pick/Display.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Pick/Display.h
--------------------------------------------------------------------------------
/c++/OpenGL/Pick/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Pick/Doxyfile
--------------------------------------------------------------------------------
/c++/OpenGL/Pick/MouseClass.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Pick/MouseClass.h
--------------------------------------------------------------------------------
/c++/OpenGL/Pick/OpenGLinit.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Pick/OpenGLinit.h
--------------------------------------------------------------------------------
/c++/OpenGL/Pick/Other.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Pick/Other.cpp
--------------------------------------------------------------------------------
/c++/OpenGL/Pick/Point.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Pick/Point.cpp
--------------------------------------------------------------------------------
/c++/OpenGL/Pick/Point.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Pick/Point.h
--------------------------------------------------------------------------------
/c++/OpenGL/Pick/Test.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Pick/Test.cpp
--------------------------------------------------------------------------------
/c++/OpenGL/Pick/Vector.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Pick/Vector.cpp
--------------------------------------------------------------------------------
/c++/OpenGL/Pick/Vector.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Pick/Vector.h
--------------------------------------------------------------------------------
/c++/OpenGL/Pick/WindowClass.cpp:
--------------------------------------------------------------------------------
1 | #include "WindowClass.h"
2 |
3 |
--------------------------------------------------------------------------------
/c++/OpenGL/Pick/WindowClass.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Pick/WindowClass.h
--------------------------------------------------------------------------------
/c++/OpenGL/Pick/zpr.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Pick/zpr.c
--------------------------------------------------------------------------------
/c++/OpenGL/Pick/zpr.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Pick/zpr.h
--------------------------------------------------------------------------------
/c++/OpenGL/Subwindows/zpr.c:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Subwindows/zpr.c
--------------------------------------------------------------------------------
/c++/OpenGL/Subwindows/zpr.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Subwindows/zpr.h
--------------------------------------------------------------------------------
/c++/OpenGL/Test/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Test/Doxyfile
--------------------------------------------------------------------------------
/c++/OpenGL/Test/Test.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Test/Test.cpp
--------------------------------------------------------------------------------
/c++/OpenGL/Text/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Text/Doxyfile
--------------------------------------------------------------------------------
/c++/OpenGL/Text/Legacy.cxx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Text/Legacy.cxx
--------------------------------------------------------------------------------
/c++/OpenGL/Text/Text.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGL/Text/Text.cpp
--------------------------------------------------------------------------------
/c++/OpenGM/BigBP.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGM/BigBP.cpp
--------------------------------------------------------------------------------
/c++/OpenGM/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGM/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/OpenGM/CompleteGraph.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGM/CompleteGraph.cpp
--------------------------------------------------------------------------------
/c++/OpenGM/CustomVisitor.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGM/CustomVisitor.cpp
--------------------------------------------------------------------------------
/c++/OpenGM/EvaluateEnergy.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGM/EvaluateEnergy.cpp
--------------------------------------------------------------------------------
/c++/OpenGM/big.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGM/big.cpp
--------------------------------------------------------------------------------
/c++/OpenGM/opengm.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenGM/opengm.cpp
--------------------------------------------------------------------------------
/c++/OpenMP/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenMP/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/OpenMP/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenMP/Doxyfile
--------------------------------------------------------------------------------
/c++/OpenMP/openMPtest/test:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenMP/openMPtest/test
--------------------------------------------------------------------------------
/c++/OpenMP/openmp.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenMP/openmp.cpp
--------------------------------------------------------------------------------
/c++/OpenNL/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenNL/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/OpenNL/OpenNL.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/OpenNL/OpenNL.cpp
--------------------------------------------------------------------------------
/c++/PCL/Descriptors/NormalEstimation/legacy.cpp:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/c++/PCL/IO/ReadFile/test.pcd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/PCL/IO/ReadFile/test.pcd
--------------------------------------------------------------------------------
/c++/PCL/IO/ReadFile/test.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/PCL/IO/ReadFile/test.txt
--------------------------------------------------------------------------------
/c++/PCL/KDTree/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/PCL/KDTree/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/PCL/KDTree/KDTree.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/PCL/KDTree/KDTree.cpp
--------------------------------------------------------------------------------
/c++/PCL/KDTree/legacy.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/PCL/KDTree/legacy.cpp
--------------------------------------------------------------------------------
/c++/PCL/ScopeTime/test.pcd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/PCL/ScopeTime/test.pcd
--------------------------------------------------------------------------------
/c++/PCL/Traits/Traits.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/PCL/Traits/Traits.cpp
--------------------------------------------------------------------------------
/c++/PCL/Traits/legacy.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/PCL/Traits/legacy.cpp
--------------------------------------------------------------------------------
/c++/PCL/VoxelGrid/test.pcd:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/PCL/VoxelGrid/test.pcd
--------------------------------------------------------------------------------
/c++/PThreads/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/PThreads/Doxyfile
--------------------------------------------------------------------------------
/c++/PThreads/PThreads.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/PThreads/PThreads.cpp
--------------------------------------------------------------------------------
/c++/PThreads/works.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/PThreads/works.cpp
--------------------------------------------------------------------------------
/c++/ParallelSort/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/ParallelSort/Doxyfile
--------------------------------------------------------------------------------
/c++/Polymorphism/orig.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Polymorphism/orig.cpp
--------------------------------------------------------------------------------
/c++/Pragma/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Pragma/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Pragma/Pragma.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Pragma/Pragma.cpp
--------------------------------------------------------------------------------
/c++/QT.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/QT.zip
--------------------------------------------------------------------------------
/c++/RandomNumbers/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/RandomNumbers/Doxyfile
--------------------------------------------------------------------------------
/c++/References/ReturnAReference/ReturnByReference.cpp:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/c++/Round/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Round/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Round/Round.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Round/Round.cpp
--------------------------------------------------------------------------------
/c++/SDL/Basics/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/SDL/Basics/Doxyfile
--------------------------------------------------------------------------------
/c++/SDL/Basics/SDLTest.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/SDL/Basics/SDLTest.cpp
--------------------------------------------------------------------------------
/c++/SDL/Events/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/SDL/Events/Doxyfile
--------------------------------------------------------------------------------
/c++/SDL/Picking/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/SDL/Picking/Doxyfile
--------------------------------------------------------------------------------
/c++/SDL/Test/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/SDL/Test/Doxyfile
--------------------------------------------------------------------------------
/c++/SDL/Test/Test.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/SDL/Test/Test.cpp
--------------------------------------------------------------------------------
/c++/SDL/Test/Test.cpp.bak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/SDL/Test/Test.cpp.bak
--------------------------------------------------------------------------------
/c++/SDL/Threads/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/SDL/Threads/Doxyfile
--------------------------------------------------------------------------------
/c++/Sign/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Sign/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Sign/Sign.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Sign/Sign.cpp
--------------------------------------------------------------------------------
/c++/Sockets/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Sockets/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Sockets/Sockets.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Sockets/Sockets.zip
--------------------------------------------------------------------------------
/c++/Sockets/client.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Sockets/client.cpp
--------------------------------------------------------------------------------
/c++/Sockets/readme.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Sockets/readme.txt
--------------------------------------------------------------------------------
/c++/Sockets/server.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Sockets/server.cpp
--------------------------------------------------------------------------------
/c++/Software/LBFGS/ap.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Software/LBFGS/ap.cpp
--------------------------------------------------------------------------------
/c++/Software/LBFGS/ap.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Software/LBFGS/ap.h
--------------------------------------------------------------------------------
/c++/Software/LBFGS/apvt.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Software/LBFGS/apvt.h
--------------------------------------------------------------------------------
/c++/Software/LBFGS/lbfgs.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Software/LBFGS/lbfgs.h
--------------------------------------------------------------------------------
/c++/Software/LBFGS/license:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Software/LBFGS/license
--------------------------------------------------------------------------------
/c++/Software/LBFGS/stdafx.h:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/c++/Sprintf/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Sprintf/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Sprintf/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Sprintf/Doxyfile
--------------------------------------------------------------------------------
/c++/StringStream/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/StringStream/Doxyfile
--------------------------------------------------------------------------------
/c++/Strings/Split/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Strings/Split/Doxyfile
--------------------------------------------------------------------------------
/c++/Struct/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Struct/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Struct/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Struct/Doxyfile
--------------------------------------------------------------------------------
/c++/Struct/Struct.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Struct/Struct.cpp
--------------------------------------------------------------------------------
/c++/Switch/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Switch/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Switch/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Switch/Doxyfile
--------------------------------------------------------------------------------
/c++/Switch/Switch.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Switch/Switch.cpp
--------------------------------------------------------------------------------
/c++/Templates/FunctionTemplate/Point.h:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/c++/Templates/MemberFunctionPartialSpecialization/Point.cpp:
--------------------------------------------------------------------------------
1 | #include "Point.h"
2 |
3 |
--------------------------------------------------------------------------------
/c++/Templates/PartialFunctionSpecialization/Point.cpp:
--------------------------------------------------------------------------------
1 | #include "Point.h"
2 |
3 |
--------------------------------------------------------------------------------
/c++/Templates/PartialSpecializationNamespace/Point.cpp:
--------------------------------------------------------------------------------
1 | #include "Point.h"
2 |
3 |
--------------------------------------------------------------------------------
/c++/Templates/TemplateClassHeaderOnly/Point.cpp:
--------------------------------------------------------------------------------
1 | #include "Point.h"
2 |
--------------------------------------------------------------------------------
/c++/Templates/TemplateFunctionHeaderOnly/Point.cpp:
--------------------------------------------------------------------------------
1 | #include "Point.h"
2 |
3 |
--------------------------------------------------------------------------------
/c++/Templates/TemplateFunctionValues/Point.cpp:
--------------------------------------------------------------------------------
1 | #include "Point.h"
2 |
3 |
--------------------------------------------------------------------------------
/c++/Test/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Test/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Test/Camera.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Test/Camera.h
--------------------------------------------------------------------------------
/c++/Test/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Test/Doxyfile
--------------------------------------------------------------------------------
/c++/Test/ImageCamera.cxx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Test/ImageCamera.cxx
--------------------------------------------------------------------------------
/c++/Test/ImageCamera.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Test/ImageCamera.h
--------------------------------------------------------------------------------
/c++/Test/Legacy.cxx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Test/Legacy.cxx
--------------------------------------------------------------------------------
/c++/Test/MyClass.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Test/MyClass.cpp
--------------------------------------------------------------------------------
/c++/Test/MyClass.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Test/MyClass.h
--------------------------------------------------------------------------------
/c++/Test/Person.cpp:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/c++/Test/Person.h:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/c++/Test/Test.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Test/Test.cpp
--------------------------------------------------------------------------------
/c++/Test/input.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Test/input.txt
--------------------------------------------------------------------------------
/c++/Test/outfile.txt:
--------------------------------------------------------------------------------
1 | opened out.txt
2 |
--------------------------------------------------------------------------------
/c++/Test/output.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Test/output.txt
--------------------------------------------------------------------------------
/c++/ThisPointer/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/ThisPointer/Doxyfile
--------------------------------------------------------------------------------
/c++/Typedef/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Typedef/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Typedef/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Typedef/Doxyfile
--------------------------------------------------------------------------------
/c++/Typedef/Typedef.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Typedef/Typedef.cpp
--------------------------------------------------------------------------------
/c++/Typeid/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Typeid/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Typeid/Typeid.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Typeid/Typeid.cpp
--------------------------------------------------------------------------------
/c++/Typeof/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Typeof/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Typeof/Typeof.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Typeof/Typeof.cpp
--------------------------------------------------------------------------------
/c++/Union/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Union/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Union/Union.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Union/Union.cpp
--------------------------------------------------------------------------------
/c++/VXL/RGRL/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/VXL/RGRL/Doxyfile
--------------------------------------------------------------------------------
/c++/VXL/RGRL/RGRL.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/VXL/RGRL/RGRL.cpp
--------------------------------------------------------------------------------
/c++/VXL/RGRL/RGRL_1.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/VXL/RGRL/RGRL_1.cpp
--------------------------------------------------------------------------------
/c++/VXL/RGRL/RGRL_2.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/VXL/RGRL/RGRL_2.cpp
--------------------------------------------------------------------------------
/c++/VXL/RGRL/rigid.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/VXL/RGRL/rigid.cpp
--------------------------------------------------------------------------------
/c++/VXL/VBLBasics/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/VXL/VBLBasics/Doxyfile
--------------------------------------------------------------------------------
/c++/VXL/VCLBasics/VCLBasics.cpp:
--------------------------------------------------------------------------------
1 | #include
2 |
3 | int main()
4 | {
5 | return 0;
6 | }
7 |
--------------------------------------------------------------------------------
/c++/VXL/VILBasics/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/VXL/VILBasics/Doxyfile
--------------------------------------------------------------------------------
/c++/VXL/VNL/Eigen/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/VXL/VNL/Eigen/Doxyfile
--------------------------------------------------------------------------------
/c++/VXL/VNL/QR/QR.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/VXL/VNL/QR/QR.cpp
--------------------------------------------------------------------------------
/c++/VXL/VSLBasics/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/VXL/VSLBasics/Doxyfile
--------------------------------------------------------------------------------
/c++/VectorOfArray/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/VectorOfArray/Doxyfile
--------------------------------------------------------------------------------
/c++/VectorVSArray/Test.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/VectorVSArray/Test.cpp
--------------------------------------------------------------------------------
/c++/Visitor/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Visitor/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/Visitor/Visitor.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Visitor/Visitor.cpp
--------------------------------------------------------------------------------
/c++/Visitor/Working.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Visitor/Working.cpp
--------------------------------------------------------------------------------
/c++/Visitor/legacy.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Visitor/legacy.cpp
--------------------------------------------------------------------------------
/c++/Volatile/Volatile.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/Volatile/Volatile.cpp
--------------------------------------------------------------------------------
/c++/ZeroPad/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/ZeroPad/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/ZeroPad/ZeroPad.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/ZeroPad/ZeroPad.cpp
--------------------------------------------------------------------------------
/c++/atoi/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/atoi/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/atoi/atoi.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/atoi/atoi.cpp
--------------------------------------------------------------------------------
/c++/c++0x/Hash/Hash.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/c++0x/Hash/Hash.cpp
--------------------------------------------------------------------------------
/c++/c++0x/Regex/Regex.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/c++0x/Regex/Regex.cpp
--------------------------------------------------------------------------------
/c++/c++0x/Regex/legacy.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/c++0x/Regex/legacy.cpp
--------------------------------------------------------------------------------
/c++/c++98/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/c++98/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/c++98/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/c++98/Doxyfile
--------------------------------------------------------------------------------
/c++/c++98/c++98Test.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/c++98/c++98Test.cpp
--------------------------------------------------------------------------------
/c++/curses/main.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/curses/main.cpp
--------------------------------------------------------------------------------
/c++/daniweb/crossroads.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/daniweb/crossroads.cpp
--------------------------------------------------------------------------------
/c++/daniweb/global.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/daniweb/global.h
--------------------------------------------------------------------------------
/c++/daniweb/globals.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/daniweb/globals.h
--------------------------------------------------------------------------------
/c++/daniweb/library.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/daniweb/library.h
--------------------------------------------------------------------------------
/c++/daniweb/player.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/daniweb/player.cpp
--------------------------------------------------------------------------------
/c++/daniweb/player.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/daniweb/player.h
--------------------------------------------------------------------------------
/c++/daniweb/town.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/daniweb/town.cpp
--------------------------------------------------------------------------------
/c++/decltype/decltype.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/decltype/decltype.cpp
--------------------------------------------------------------------------------
/c++/ginac/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/ginac/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/ginac/ginacExample.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/ginac/ginacExample.cpp
--------------------------------------------------------------------------------
/c++/skipws/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/skipws/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/skipws/skipws.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/skipws/skipws.cpp
--------------------------------------------------------------------------------
/c++/vbo/CMakeLists.txt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/vbo/CMakeLists.txt
--------------------------------------------------------------------------------
/c++/vbo/Doxyfile:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/vbo/Doxyfile
--------------------------------------------------------------------------------
/c++/vbo/glInfo.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/vbo/glInfo.cpp
--------------------------------------------------------------------------------
/c++/vbo/glInfo.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/vbo/glInfo.h
--------------------------------------------------------------------------------
/c++/vbo/glext.h:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/vbo/glext.h
--------------------------------------------------------------------------------
/c++/vbo/main.cpp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/vbo/main.cpp
--------------------------------------------------------------------------------
/c++/vbo/vboSimple.dev:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/daviddoria/Examples/HEAD/c++/vbo/vboSimple.dev
--------------------------------------------------------------------------------
/qmake/Project/Project.h:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------