├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── biomorpher.png ├── doc ├── BiomorpherManual.lyx ├── Biomorpher_documentation.md └── images │ ├── BioIcon2_240.png │ ├── Biomorphs.png │ ├── Biomorphs2.png │ ├── Clustering3d.gif │ ├── ComponentFamily.png │ ├── Figure03.png │ ├── GenomeInput.png │ ├── LocationOfComponents.png │ ├── Logo.jpg │ ├── Lunchbox mobius.png │ ├── MeshesInput.png │ ├── Performance.png │ ├── Performance2.png │ ├── PerformanceNaming.png │ ├── Population2.jpg │ ├── Reader.png │ ├── Scatter.png │ ├── Screenshot 0.7.0.png │ ├── Window Launch.jpg │ ├── henryhistory.jpg │ ├── k-means display.png │ ├── screenshot.jpg │ ├── vase display.png │ └── vase display_low.png ├── examples ├── archive │ ├── CocoonExample.gh │ ├── K1Example_HenryMoore.gh │ ├── QuadTreeMassing.gh │ ├── Superformula.gh │ ├── Turtle.gh │ ├── WordGenerator.gh │ └── sitemassing.gh ├── private │ ├── DendroExample.gh │ ├── Fields.gh │ ├── Ishigami.gh │ ├── LandscapeTest.gh │ ├── SiteMassing.gh │ ├── The simplest optimisation you could ever wish to see.gh │ ├── TreeGrowth.gh │ ├── embryo(requiresFroebel).gh │ ├── mobius (with cluster visualisation).gh │ ├── spiderweb_adjacencygraph.gh │ └── spiderweb_nearestNeighbbours.gh └── public │ ├── 01 Untangle.gh │ ├── 02 Untangle (Reader).gh │ ├── 03 Vases.gh │ ├── 04 Biomorphs.gh │ ├── 05 Möbius Band (Wb+Lunchbox).gh │ ├── 06 Quadtree Extrusions.gh │ ├── 07 Boolean Boxes.gh │ ├── 08 Origami (K2).gh │ ├── 09 Henry Moore (Cocoon).gh │ ├── 10 Spaceframe (Karamba).gh │ ├── 11 Evolving Grasshopper (Embryo).gh │ └── 12 Vases (Pancake).gh ├── images ├── henrymoorehistory.PNG └── henrymoorehistory_small.png ├── lib ├── GalapagosComponents.dll └── PreviousBuildEvents.txt └── src ├── Biomorpher.sln └── Biomorpher ├── App.config ├── App.xaml ├── App.xaml.cs ├── Biomorpher.csproj ├── BiomorpherAttributes.cs ├── BiomorpherComponent.cs ├── BiomorpherInfo.cs ├── BiomorpherReader.cs ├── BiomorpherReaderAttributes.cs ├── BiomorpherWindow.xaml ├── BiomorpherWindow.xaml.cs ├── ClassDiagram1.cd ├── IGA ├── BioBranch.cs ├── BiomorpherData.cs ├── BiomorpherDataParam.cs ├── BiomorpherGoo.cs ├── Chromosome.cs ├── Friends.cs └── Population.cs ├── ProgressWindow.xaml ├── ProgressWindow.xaml.cs ├── Properties ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Resources ├── BioIcon3_240.png ├── BioIcon4.png ├── BiomorpherIcon2_16.png ├── BiomorpherIcon2_24.png ├── BiomorpherIcon2_240.png ├── BiomorpherIcon_24.png ├── BiomorpherIcon_264.png ├── BiomorpherReaderIcon_24.png ├── ParamIcon.png ├── ParamIcon2.png └── biomorpherIcon_16.ico ├── RoundedRectangle.cs ├── Viewport3d.xaml ├── Viewport3d.xaml.cs ├── ViewportBasic.xaml ├── ViewportBasic.xaml.cs ├── sharpdx_direct3d11_1_effects_arm.dll ├── sharpdx_direct3d11_1_effects_x64.dll └── sharpdx_direct3d11_1_effects_x86.dll /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/README.md -------------------------------------------------------------------------------- /biomorpher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/biomorpher.png -------------------------------------------------------------------------------- /doc/BiomorpherManual.lyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/BiomorpherManual.lyx -------------------------------------------------------------------------------- /doc/Biomorpher_documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/Biomorpher_documentation.md -------------------------------------------------------------------------------- /doc/images/BioIcon2_240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/BioIcon2_240.png -------------------------------------------------------------------------------- /doc/images/Biomorphs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/Biomorphs.png -------------------------------------------------------------------------------- /doc/images/Biomorphs2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/Biomorphs2.png -------------------------------------------------------------------------------- /doc/images/Clustering3d.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/Clustering3d.gif -------------------------------------------------------------------------------- /doc/images/ComponentFamily.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/ComponentFamily.png -------------------------------------------------------------------------------- /doc/images/Figure03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/Figure03.png -------------------------------------------------------------------------------- /doc/images/GenomeInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/GenomeInput.png -------------------------------------------------------------------------------- /doc/images/LocationOfComponents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/LocationOfComponents.png -------------------------------------------------------------------------------- /doc/images/Logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/Logo.jpg -------------------------------------------------------------------------------- /doc/images/Lunchbox mobius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/Lunchbox mobius.png -------------------------------------------------------------------------------- /doc/images/MeshesInput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/MeshesInput.png -------------------------------------------------------------------------------- /doc/images/Performance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/Performance.png -------------------------------------------------------------------------------- /doc/images/Performance2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/Performance2.png -------------------------------------------------------------------------------- /doc/images/PerformanceNaming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/PerformanceNaming.png -------------------------------------------------------------------------------- /doc/images/Population2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/Population2.jpg -------------------------------------------------------------------------------- /doc/images/Reader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/Reader.png -------------------------------------------------------------------------------- /doc/images/Scatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/Scatter.png -------------------------------------------------------------------------------- /doc/images/Screenshot 0.7.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/Screenshot 0.7.0.png -------------------------------------------------------------------------------- /doc/images/Window Launch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/Window Launch.jpg -------------------------------------------------------------------------------- /doc/images/henryhistory.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/henryhistory.jpg -------------------------------------------------------------------------------- /doc/images/k-means display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/k-means display.png -------------------------------------------------------------------------------- /doc/images/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/screenshot.jpg -------------------------------------------------------------------------------- /doc/images/vase display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/vase display.png -------------------------------------------------------------------------------- /doc/images/vase display_low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/doc/images/vase display_low.png -------------------------------------------------------------------------------- /examples/archive/CocoonExample.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/archive/CocoonExample.gh -------------------------------------------------------------------------------- /examples/archive/K1Example_HenryMoore.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/archive/K1Example_HenryMoore.gh -------------------------------------------------------------------------------- /examples/archive/QuadTreeMassing.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/archive/QuadTreeMassing.gh -------------------------------------------------------------------------------- /examples/archive/Superformula.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/archive/Superformula.gh -------------------------------------------------------------------------------- /examples/archive/Turtle.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/archive/Turtle.gh -------------------------------------------------------------------------------- /examples/archive/WordGenerator.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/archive/WordGenerator.gh -------------------------------------------------------------------------------- /examples/archive/sitemassing.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/archive/sitemassing.gh -------------------------------------------------------------------------------- /examples/private/DendroExample.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/private/DendroExample.gh -------------------------------------------------------------------------------- /examples/private/Fields.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/private/Fields.gh -------------------------------------------------------------------------------- /examples/private/Ishigami.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/private/Ishigami.gh -------------------------------------------------------------------------------- /examples/private/LandscapeTest.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/private/LandscapeTest.gh -------------------------------------------------------------------------------- /examples/private/SiteMassing.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/private/SiteMassing.gh -------------------------------------------------------------------------------- /examples/private/The simplest optimisation you could ever wish to see.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/private/The simplest optimisation you could ever wish to see.gh -------------------------------------------------------------------------------- /examples/private/TreeGrowth.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/private/TreeGrowth.gh -------------------------------------------------------------------------------- /examples/private/embryo(requiresFroebel).gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/private/embryo(requiresFroebel).gh -------------------------------------------------------------------------------- /examples/private/mobius (with cluster visualisation).gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/private/mobius (with cluster visualisation).gh -------------------------------------------------------------------------------- /examples/private/spiderweb_adjacencygraph.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/private/spiderweb_adjacencygraph.gh -------------------------------------------------------------------------------- /examples/private/spiderweb_nearestNeighbbours.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/private/spiderweb_nearestNeighbbours.gh -------------------------------------------------------------------------------- /examples/public/01 Untangle.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/public/01 Untangle.gh -------------------------------------------------------------------------------- /examples/public/02 Untangle (Reader).gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/public/02 Untangle (Reader).gh -------------------------------------------------------------------------------- /examples/public/03 Vases.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/public/03 Vases.gh -------------------------------------------------------------------------------- /examples/public/04 Biomorphs.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/public/04 Biomorphs.gh -------------------------------------------------------------------------------- /examples/public/05 Möbius Band (Wb+Lunchbox).gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/public/05 Möbius Band (Wb+Lunchbox).gh -------------------------------------------------------------------------------- /examples/public/06 Quadtree Extrusions.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/public/06 Quadtree Extrusions.gh -------------------------------------------------------------------------------- /examples/public/07 Boolean Boxes.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/public/07 Boolean Boxes.gh -------------------------------------------------------------------------------- /examples/public/08 Origami (K2).gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/public/08 Origami (K2).gh -------------------------------------------------------------------------------- /examples/public/09 Henry Moore (Cocoon).gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/public/09 Henry Moore (Cocoon).gh -------------------------------------------------------------------------------- /examples/public/10 Spaceframe (Karamba).gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/public/10 Spaceframe (Karamba).gh -------------------------------------------------------------------------------- /examples/public/11 Evolving Grasshopper (Embryo).gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/public/11 Evolving Grasshopper (Embryo).gh -------------------------------------------------------------------------------- /examples/public/12 Vases (Pancake).gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/examples/public/12 Vases (Pancake).gh -------------------------------------------------------------------------------- /images/henrymoorehistory.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/images/henrymoorehistory.PNG -------------------------------------------------------------------------------- /images/henrymoorehistory_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/images/henrymoorehistory_small.png -------------------------------------------------------------------------------- /lib/GalapagosComponents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/lib/GalapagosComponents.dll -------------------------------------------------------------------------------- /lib/PreviousBuildEvents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/lib/PreviousBuildEvents.txt -------------------------------------------------------------------------------- /src/Biomorpher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher.sln -------------------------------------------------------------------------------- /src/Biomorpher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/App.config -------------------------------------------------------------------------------- /src/Biomorpher/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/App.xaml -------------------------------------------------------------------------------- /src/Biomorpher/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/App.xaml.cs -------------------------------------------------------------------------------- /src/Biomorpher/Biomorpher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/Biomorpher.csproj -------------------------------------------------------------------------------- /src/Biomorpher/BiomorpherAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/BiomorpherAttributes.cs -------------------------------------------------------------------------------- /src/Biomorpher/BiomorpherComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/BiomorpherComponent.cs -------------------------------------------------------------------------------- /src/Biomorpher/BiomorpherInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/BiomorpherInfo.cs -------------------------------------------------------------------------------- /src/Biomorpher/BiomorpherReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/BiomorpherReader.cs -------------------------------------------------------------------------------- /src/Biomorpher/BiomorpherReaderAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/BiomorpherReaderAttributes.cs -------------------------------------------------------------------------------- /src/Biomorpher/BiomorpherWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/BiomorpherWindow.xaml -------------------------------------------------------------------------------- /src/Biomorpher/BiomorpherWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/BiomorpherWindow.xaml.cs -------------------------------------------------------------------------------- /src/Biomorpher/ClassDiagram1.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/ClassDiagram1.cd -------------------------------------------------------------------------------- /src/Biomorpher/IGA/BioBranch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/IGA/BioBranch.cs -------------------------------------------------------------------------------- /src/Biomorpher/IGA/BiomorpherData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/IGA/BiomorpherData.cs -------------------------------------------------------------------------------- /src/Biomorpher/IGA/BiomorpherDataParam.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/IGA/BiomorpherDataParam.cs -------------------------------------------------------------------------------- /src/Biomorpher/IGA/BiomorpherGoo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/IGA/BiomorpherGoo.cs -------------------------------------------------------------------------------- /src/Biomorpher/IGA/Chromosome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/IGA/Chromosome.cs -------------------------------------------------------------------------------- /src/Biomorpher/IGA/Friends.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/IGA/Friends.cs -------------------------------------------------------------------------------- /src/Biomorpher/IGA/Population.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/IGA/Population.cs -------------------------------------------------------------------------------- /src/Biomorpher/ProgressWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/ProgressWindow.xaml -------------------------------------------------------------------------------- /src/Biomorpher/ProgressWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/ProgressWindow.xaml.cs -------------------------------------------------------------------------------- /src/Biomorpher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Biomorpher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Biomorpher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Biomorpher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Biomorpher/Resources/BioIcon3_240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/Resources/BioIcon3_240.png -------------------------------------------------------------------------------- /src/Biomorpher/Resources/BioIcon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/Resources/BioIcon4.png -------------------------------------------------------------------------------- /src/Biomorpher/Resources/BiomorpherIcon2_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/Resources/BiomorpherIcon2_16.png -------------------------------------------------------------------------------- /src/Biomorpher/Resources/BiomorpherIcon2_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/Resources/BiomorpherIcon2_24.png -------------------------------------------------------------------------------- /src/Biomorpher/Resources/BiomorpherIcon2_240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/Resources/BiomorpherIcon2_240.png -------------------------------------------------------------------------------- /src/Biomorpher/Resources/BiomorpherIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/Resources/BiomorpherIcon_24.png -------------------------------------------------------------------------------- /src/Biomorpher/Resources/BiomorpherIcon_264.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/Resources/BiomorpherIcon_264.png -------------------------------------------------------------------------------- /src/Biomorpher/Resources/BiomorpherReaderIcon_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/Resources/BiomorpherReaderIcon_24.png -------------------------------------------------------------------------------- /src/Biomorpher/Resources/ParamIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/Resources/ParamIcon.png -------------------------------------------------------------------------------- /src/Biomorpher/Resources/ParamIcon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/Resources/ParamIcon2.png -------------------------------------------------------------------------------- /src/Biomorpher/Resources/biomorpherIcon_16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/Resources/biomorpherIcon_16.ico -------------------------------------------------------------------------------- /src/Biomorpher/RoundedRectangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/RoundedRectangle.cs -------------------------------------------------------------------------------- /src/Biomorpher/Viewport3d.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/Viewport3d.xaml -------------------------------------------------------------------------------- /src/Biomorpher/Viewport3d.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/Viewport3d.xaml.cs -------------------------------------------------------------------------------- /src/Biomorpher/ViewportBasic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/ViewportBasic.xaml -------------------------------------------------------------------------------- /src/Biomorpher/ViewportBasic.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/ViewportBasic.xaml.cs -------------------------------------------------------------------------------- /src/Biomorpher/sharpdx_direct3d11_1_effects_arm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/sharpdx_direct3d11_1_effects_arm.dll -------------------------------------------------------------------------------- /src/Biomorpher/sharpdx_direct3d11_1_effects_x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/sharpdx_direct3d11_1_effects_x64.dll -------------------------------------------------------------------------------- /src/Biomorpher/sharpdx_direct3d11_1_effects_x86.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johnharding/Biomorpher/HEAD/src/Biomorpher/sharpdx_direct3d11_1_effects_x86.dll --------------------------------------------------------------------------------