├── .gitattributes
├── .gitignore
├── DV_Json
├── .gitattributes
├── .gitignore
├── Assets
│ ├── DV.meta
│ └── DV
│ │ ├── Materials.meta
│ │ ├── Materials
│ │ ├── GroundMaterial.mat
│ │ └── GroundMaterial.mat.meta
│ │ ├── Scenes.meta
│ │ ├── Scenes
│ │ ├── DV.unity
│ │ └── DV.unity.meta
│ │ ├── Scripts.meta
│ │ └── Scripts
│ │ ├── DV_Emitter.cs
│ │ ├── DV_Emitter.cs.meta
│ │ ├── Stream.meta
│ │ ├── Stream
│ │ ├── NamedClientStream.cs
│ │ ├── NamedClientStream.cs.meta
│ │ ├── NamedServerStream.cs
│ │ └── NamedServerStream.cs.meta
│ │ ├── ViewModels.meta
│ │ └── ViewModels
│ │ ├── DataPointViewModel.cs
│ │ └── DataPointViewModel.cs.meta
├── DV_Json.csproj
├── DV_Json.sln
├── DataSource
│ ├── DV_Json.DataSource.Common
│ │ ├── DV_Json.DataSource.Common.sln
│ │ ├── global.json
│ │ └── src
│ │ │ └── DV_Json.DataSource.Common
│ │ │ ├── DV_Client.cs
│ │ │ ├── DV_Json.DataSource.Common.xproj
│ │ │ ├── DV_Json.DataSource.Common.xproj.user
│ │ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ │ ├── bin
│ │ │ └── Debug
│ │ │ │ └── netstandard1.6
│ │ │ │ ├── DV_Json.DataSource.Common.deps.json
│ │ │ │ ├── DV_Json.DataSource.Common.dll
│ │ │ │ └── DV_Json.DataSource.Common.pdb
│ │ │ ├── obj
│ │ │ └── Debug
│ │ │ │ └── netstandard1.6
│ │ │ │ ├── dotnet-compile-csc.rsp
│ │ │ │ ├── dotnet-compile.assemblyinfo.cs
│ │ │ │ └── dotnet-compile.rsp
│ │ │ ├── project.json
│ │ │ └── project.lock.json
│ ├── DV_Json.DataSource.Generator
│ │ ├── DV_Json.DataSource.Generator.xproj
│ │ ├── DV_Json.DataSource.Generator.xproj.user
│ │ ├── DataViewModel.cs
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ │ └── netcoreapp1.0
│ │ │ │ ├── DV_Json.DataSource.Common.dll
│ │ │ │ ├── DV_Json.DataSource.Common.pdb
│ │ │ │ ├── DV_Json.DataSource.Generator.deps.json
│ │ │ │ ├── DV_Json.DataSource.Generator.dll
│ │ │ │ ├── DV_Json.DataSource.Generator.pdb
│ │ │ │ ├── DV_Json.DataSource.Generator.runtimeconfig.dev.json
│ │ │ │ └── DV_Json.DataSource.Generator.runtimeconfig.json
│ │ ├── obj
│ │ │ └── Debug
│ │ │ │ └── netcoreapp1.0
│ │ │ │ ├── dotnet-compile-csc.rsp
│ │ │ │ ├── dotnet-compile.assemblyinfo.cs
│ │ │ │ └── dotnet-compile.rsp
│ │ ├── project.json
│ │ └── project.lock.json
│ └── global.json
├── Library
│ ├── AnnotationManager
│ ├── AssetImportState
│ ├── AssetServerCacheV3
│ ├── BuildSettings.asset
│ ├── CurrentLayout.dwlt
│ ├── EditorUserBuildSettings.asset
│ ├── EditorUserSettings.asset
│ ├── InspectorExpandedItems.asset
│ ├── LastSceneManagerSetup.txt
│ ├── LibraryFormatVersion.txt
│ ├── assetDatabase3
│ ├── expandedItems
│ └── metadata
│ │ └── 00
│ │ ├── 00000000000000001000000000000000
│ │ ├── 00000000000000001000000000000000.info
│ │ ├── 00000000000000002000000000000000
│ │ ├── 00000000000000002000000000000000.info
│ │ ├── 00000000000000003000000000000000
│ │ ├── 00000000000000003000000000000000.info
│ │ ├── 00000000000000004000000000000000
│ │ ├── 00000000000000004000000000000000.info
│ │ ├── 00000000000000004100000000000000
│ │ ├── 00000000000000004100000000000000.info
│ │ ├── 00000000000000005000000000000000
│ │ ├── 00000000000000005000000000000000.info
│ │ ├── 00000000000000005100000000000000
│ │ ├── 00000000000000005100000000000000.info
│ │ ├── 00000000000000006000000000000000
│ │ ├── 00000000000000006000000000000000.info
│ │ ├── 00000000000000006100000000000000
│ │ ├── 00000000000000006100000000000000.info
│ │ ├── 00000000000000007000000000000000
│ │ └── 00000000000000007000000000000000.info
├── ProjectSettings
│ ├── AudioManager.asset
│ ├── ClusterInputManager.asset
│ ├── DynamicsManager.asset
│ ├── EditorBuildSettings.asset
│ ├── EditorSettings.asset
│ ├── GraphicsSettings.asset
│ ├── InputManager.asset
│ ├── NavMeshAreas.asset
│ ├── NetworkManager.asset
│ ├── Physics2DSettings.asset
│ ├── ProjectSettings.asset
│ ├── ProjectVersion.txt
│ ├── QualitySettings.asset
│ ├── TagManager.asset
│ ├── TimeManager.asset
│ └── UnityConnectSettings.asset
└── README.md
├── DV_Mathematics
├── Assets
│ ├── Graph_3D.cs
│ ├── Graph_3D.cs.meta
│ ├── math_1.unity
│ └── math_1.unity.meta
├── DV_Mathematics.csproj
├── DV_Mathematics.sln
├── Grid.cs
├── Library
│ ├── AnnotationManager
│ ├── AssetImportState
│ ├── AssetServerCacheV3
│ ├── BuildSettings.asset
│ ├── CurrentLayout.dwlt
│ ├── EditorUserBuildSettings.asset
│ ├── EditorUserSettings.asset
│ ├── InspectorExpandedItems.asset
│ ├── LastBuild.buildreport
│ ├── LastSceneManagerSetup.txt
│ ├── LibraryFormatVersion.txt
│ ├── MonoManager.asset
│ ├── ProjectSettings.asset
│ ├── ScriptAssemblies
│ │ ├── Assembly-CSharp.dll
│ │ ├── Assembly-CSharp.dll.mdb
│ │ └── BuiltinAssemblies.stamp
│ ├── ScriptMapper
│ ├── ShaderCache
│ │ └── 0
│ │ │ ├── 003f45dd356dffb986c6ec7453602933.bin
│ │ │ ├── 00ecba4e9f92869699b3ea3da1e70cb2.bin
│ │ │ ├── 010f69030f66651722d74c63b508cf6a.bin
│ │ │ ├── 0147596bef343ce7b5beaec769f30f88.bin
│ │ │ └── 01f26e40098c94e9ce9eae169944c233.bin
│ ├── assetDatabase3
│ ├── expandedItems
│ └── metadata
│ │ ├── 12
│ │ ├── 12fd8a0055b84bb59e84c9835a37e333
│ │ └── 12fd8a0055b84bb59e84c9835a37e333.info
│ │ ├── 21
│ │ ├── 21eff446d50eaf44a85985cd4c0b6fa1
│ │ └── 21eff446d50eaf44a85985cd4c0b6fa1.info
│ │ ├── 26
│ │ ├── 2682a692a2be7e14e901a738c7806da0
│ │ └── 2682a692a2be7e14e901a738c7806da0.info
│ │ ├── 30
│ │ ├── 307433eba81a469ab1e2084d52d1a5a2
│ │ └── 307433eba81a469ab1e2084d52d1a5a2.info
│ │ ├── 32
│ │ ├── 32188fd89022c154c81befa2f0e00be0
│ │ ├── 32188fd89022c154c81befa2f0e00be0.info
│ │ ├── 328cc881519068e4eb7db4bb907ad2d9
│ │ └── 328cc881519068e4eb7db4bb907ad2d9.info
│ │ ├── 41
│ │ ├── 4113173d5e95493ab8765d7b08371de4
│ │ └── 4113173d5e95493ab8765d7b08371de4.info
│ │ ├── 49
│ │ ├── 49f5766d0d4954f44b85d4bbd7131677
│ │ └── 49f5766d0d4954f44b85d4bbd7131677.info
│ │ ├── 51
│ │ ├── 517af1b5b81b93b43b9745d58f017562
│ │ └── 517af1b5b81b93b43b9745d58f017562.info
│ │ ├── 52
│ │ ├── 52a206b72a8f4f749c28d8b18b42dd19
│ │ └── 52a206b72a8f4f749c28d8b18b42dd19.info
│ │ ├── 53
│ │ ├── 53ebcfaa2e1e4e2dbc85882cd5a73fa1
│ │ └── 53ebcfaa2e1e4e2dbc85882cd5a73fa1.info
│ │ ├── 57
│ │ ├── 5782f9e9e6e0bb94bac99aeea24814fc
│ │ └── 5782f9e9e6e0bb94bac99aeea24814fc.info
│ │ ├── 00
│ │ ├── 00000000000000001000000000000000
│ │ ├── 00000000000000001000000000000000.info
│ │ ├── 00000000000000002000000000000000
│ │ ├── 00000000000000002000000000000000.info
│ │ ├── 00000000000000003000000000000000
│ │ ├── 00000000000000003000000000000000.info
│ │ ├── 00000000000000004000000000000000
│ │ ├── 00000000000000004000000000000000.info
│ │ ├── 00000000000000004100000000000000
│ │ ├── 00000000000000004100000000000000.info
│ │ ├── 00000000000000005000000000000000
│ │ ├── 00000000000000005000000000000000.info
│ │ ├── 00000000000000005100000000000000
│ │ ├── 00000000000000005100000000000000.info
│ │ ├── 00000000000000006000000000000000
│ │ ├── 00000000000000006000000000000000.info
│ │ ├── 00000000000000006100000000000000
│ │ ├── 00000000000000006100000000000000.info
│ │ ├── 00000000000000007000000000000000
│ │ ├── 00000000000000007000000000000000.info
│ │ ├── 00000000000000007100000000000000
│ │ ├── 00000000000000007100000000000000.info
│ │ ├── 00000000000000008000000000000000
│ │ ├── 00000000000000008000000000000000.info
│ │ ├── 00000000000000009000000000000000
│ │ ├── 00000000000000009000000000000000.info
│ │ ├── 0000000000000000a000000000000000
│ │ ├── 0000000000000000a000000000000000.info
│ │ ├── 0000000000000000a100000000000000
│ │ ├── 0000000000000000a100000000000000.info
│ │ ├── 0000000000000000b000000000000000
│ │ ├── 0000000000000000b000000000000000.info
│ │ ├── 0000000000000000c000000000000000
│ │ └── 0000000000000000c000000000000000.info
│ │ ├── 0d
│ │ ├── 0d3bb855445e36e479c85976fc88383a
│ │ └── 0d3bb855445e36e479c85976fc88383a.info
│ │ ├── 1c
│ │ ├── 1c6d1fbb51834b64847b1b73a75bfc77
│ │ └── 1c6d1fbb51834b64847b1b73a75bfc77.info
│ │ ├── 1f
│ │ ├── 1fc0f946a5f010b4ab4f539c46fb1d1f
│ │ └── 1fc0f946a5f010b4ab4f539c46fb1d1f.info
│ │ ├── 2f
│ │ ├── 2fe3476eabbbb6c448e6b55a2cc471f5
│ │ └── 2fe3476eabbbb6c448e6b55a2cc471f5.info
│ │ ├── 3c
│ │ ├── 3c0ad459c1534645b5d603b7cc258f97
│ │ └── 3c0ad459c1534645b5d603b7cc258f97.info
│ │ ├── 4b
│ │ ├── 4ba2329b63d54f0187bcaa12486b1b0f
│ │ └── 4ba2329b63d54f0187bcaa12486b1b0f.info
│ │ └── 5f
│ │ ├── 5f32cd94baa94578a686d4b9d6b660f7
│ │ └── 5f32cd94baa94578a686d4b9d6b660f7.info
├── ProjectSettings
│ ├── AudioManager.asset
│ ├── ClusterInputManager.asset
│ ├── DynamicsManager.asset
│ ├── EditorBuildSettings.asset
│ ├── EditorSettings.asset
│ ├── GraphicsSettings.asset
│ ├── InputManager.asset
│ ├── NavMeshAreas.asset
│ ├── NetworkManager.asset
│ ├── Physics2DSettings.asset
│ ├── ProjectSettings.asset
│ ├── ProjectVersion.txt
│ ├── QualitySettings.asset
│ ├── TagManager.asset
│ ├── TimeManager.asset
│ └── UnityConnectSettings.asset
├── README.md
├── math1.exe
└── math1_Data
│ ├── Managed
│ ├── Assembly-CSharp.dll
│ ├── Mono.Security.dll
│ ├── System.Core.dll
│ ├── System.dll
│ ├── UnityEngine.Analytics.dll
│ ├── UnityEngine.Networking.dll
│ ├── UnityEngine.PlaymodeTestsRunner.dll
│ ├── UnityEngine.UI.dll
│ ├── UnityEngine.dll
│ ├── UnityEngine.dll.mdb
│ └── mscorlib.dll
│ ├── Mono
│ ├── MonoPosixHelper.dll
│ ├── etc
│ │ └── mono
│ │ │ ├── 1.0
│ │ │ ├── DefaultWsdlHelpGenerator.aspx
│ │ │ └── machine.config
│ │ │ ├── 2.0
│ │ │ ├── Browsers
│ │ │ │ └── Compat.browser
│ │ │ ├── DefaultWsdlHelpGenerator.aspx
│ │ │ ├── machine.config
│ │ │ ├── settings.map
│ │ │ └── web.config
│ │ │ ├── browscap.ini
│ │ │ ├── config
│ │ │ └── mconfig
│ │ │ └── config.xml
│ └── mono.dll
│ ├── Resources
│ ├── unity default resources
│ └── unity_builtin_extra
│ ├── app.info
│ ├── globalgamemanagers
│ ├── globalgamemanagers.assets
│ ├── level0
│ ├── level0.resS
│ ├── output_log.txt
│ ├── sharedassets0.assets
│ └── sharedassets0.assets.resS
├── DV_Nucleon
├── Assets
│ ├── Materials.meta
│ ├── Materials
│ │ ├── Black.mat
│ │ ├── Black.mat.meta
│ │ ├── Yellow.mat
│ │ └── Yellow.mat.meta
│ ├── Nucleon.unity
│ ├── Nucleon.unity.meta
│ ├── Prefabs.meta
│ ├── Prefabs
│ │ ├── Nucleon.prefab
│ │ ├── Nucleon.prefab.meta
│ │ ├── Proton.prefab
│ │ └── Proton.prefab.meta
│ ├── Scripts.meta
│ ├── Scripts
│ │ ├── FPSCounter.cs
│ │ ├── FPSCounter.cs.meta
│ │ ├── FPSDisplay.cs
│ │ ├── FPSDisplay.cs.meta
│ │ ├── Nucleon.cs
│ │ ├── Nucleon.cs.meta
│ │ ├── NucleonSpawner.cs
│ │ ├── NucleonSpawner.cs.meta
│ │ ├── connectLine.cs
│ │ └── connectLine.cs.meta
│ ├── Shaders.meta
│ └── Shaders
│ │ ├── Addi.shader
│ │ └── Addi.shader.meta
├── DV_Nucleon.csproj
├── DV_Nucleon.sln
└── Library
│ ├── AnnotationManager
│ ├── AssetImportState
│ ├── AssetServerCacheV3
│ ├── AssetVersioning.db
│ ├── BuildSettings.asset
│ ├── CurrentLayout.dwlt
│ ├── EditorUserBuildSettings.asset
│ ├── EditorUserSettings.asset
│ ├── InspectorExpandedItems.asset
│ ├── LastSceneManagerSetup.txt
│ ├── LibraryFormatVersion.txt
│ ├── assetDatabase3
│ ├── expandedItems
│ └── metadata
│ ├── 12
│ ├── 12fd8a0055b84bb59e84c9835a37e333
│ └── 12fd8a0055b84bb59e84c9835a37e333.info
│ ├── 21
│ ├── 21eff446d50eaf44a85985cd4c0b6fa1
│ └── 21eff446d50eaf44a85985cd4c0b6fa1.info
│ ├── 26
│ ├── 2682a692a2be7e14e901a738c7806da0
│ └── 2682a692a2be7e14e901a738c7806da0.info
│ ├── 30
│ ├── 307433eba81a469ab1e2084d52d1a5a2
│ ├── 307433eba81a469ab1e2084d52d1a5a2.info
│ ├── 307e4eddf871f1741b156d4112fcb7f7
│ └── 307e4eddf871f1741b156d4112fcb7f7.info
│ ├── 32
│ ├── 32188fd89022c154c81befa2f0e00be0
│ ├── 32188fd89022c154c81befa2f0e00be0.info
│ ├── 325eb7f71598ca8459a8dba7545854d5
│ ├── 325eb7f71598ca8459a8dba7545854d5.info
│ ├── 328cc881519068e4eb7db4bb907ad2d9
│ └── 328cc881519068e4eb7db4bb907ad2d9.info
│ ├── 00
│ ├── 00000000000000001000000000000000
│ ├── 00000000000000001000000000000000.info
│ ├── 00000000000000002000000000000000
│ ├── 00000000000000002000000000000000.info
│ ├── 00000000000000003000000000000000
│ ├── 00000000000000003000000000000000.info
│ ├── 00000000000000004000000000000000
│ ├── 00000000000000004000000000000000.info
│ ├── 00000000000000004100000000000000
│ ├── 00000000000000004100000000000000.info
│ ├── 00000000000000005000000000000000
│ ├── 00000000000000005000000000000000.info
│ ├── 00000000000000005100000000000000
│ ├── 00000000000000005100000000000000.info
│ ├── 00000000000000006000000000000000
│ ├── 00000000000000006000000000000000.info
│ ├── 00000000000000006100000000000000
│ ├── 00000000000000006100000000000000.info
│ ├── 00000000000000007000000000000000
│ ├── 00000000000000007000000000000000.info
│ ├── 00000000000000007100000000000000
│ ├── 00000000000000007100000000000000.info
│ ├── 00000000000000008000000000000000
│ ├── 00000000000000008000000000000000.info
│ ├── 00000000000000009000000000000000
│ ├── 00000000000000009000000000000000.info
│ ├── 0000000000000000a000000000000000
│ ├── 0000000000000000a000000000000000.info
│ ├── 0000000000000000a100000000000000
│ ├── 0000000000000000a100000000000000.info
│ ├── 0000000000000000b000000000000000
│ ├── 0000000000000000b000000000000000.info
│ ├── 0000000000000000c000000000000000
│ └── 0000000000000000c000000000000000.info
│ ├── 03
│ ├── 03cfa8f28f3d0f94886981319aa6d61c
│ └── 03cfa8f28f3d0f94886981319aa6d61c.info
│ ├── 0d
│ ├── 0d3bb855445e36e479c85976fc88383a
│ └── 0d3bb855445e36e479c85976fc88383a.info
│ ├── 1c
│ ├── 1c6d1fbb51834b64847b1b73a75bfc77
│ └── 1c6d1fbb51834b64847b1b73a75bfc77.info
│ ├── 2f
│ ├── 2fe3476eabbbb6c448e6b55a2cc471f5
│ └── 2fe3476eabbbb6c448e6b55a2cc471f5.info
│ └── 3b
│ └── 3bba8731ebc169f4a9455dc9bef383ed
├── DV_shaderFundementals
├── PlanetShader.shader
├── README.md
└── myShader.shader
├── DataVisualization_BlackHole
└── README.md
├── DataVisualization_Fractal
├── .gitattributes
├── .gitignore
├── Assembly-CSharp.csproj
├── Assets
│ ├── Materials.meta
│ ├── Materials
│ │ ├── Fractal.mat
│ │ └── Fractal.mat.meta
│ ├── Scenes.meta
│ ├── Scenes
│ │ ├── twist.unity
│ │ └── twist.unity.meta
│ ├── Scripts.meta
│ └── Scripts
│ │ ├── Fractal.cs
│ │ └── Fractal.cs.meta
├── DataVisualization_Fractal.sln
├── Library
│ ├── AnnotationManager
│ ├── AssetImportState
│ ├── AssetServerCacheV3
│ ├── AssetVersioning.db
│ ├── BuildSettings.asset
│ ├── CurrentLayout.dwlt
│ ├── EditorUserBuildSettings.asset
│ ├── EditorUserSettings.asset
│ ├── InspectorExpandedItems.asset
│ ├── LastBuild.buildreport
│ ├── LibraryFormatVersion.txt
│ ├── MonoManager.asset
│ ├── ScriptAssemblies
│ │ ├── Assembly-CSharp.dll
│ │ ├── Assembly-CSharp.dll.mdb
│ │ └── BuiltinAssemblies.stamp
│ ├── ScriptMapper
│ ├── ShaderCache
│ │ └── 0
│ │ │ ├── 0024fd1e50e86afb218a302c4344f61d.bin
│ │ │ ├── 0054b43ff9eb92feeb66ac0f164c8ead.bin
│ │ │ └── 00d3f0fc57738924ce72188ee59623e4.bin
│ ├── assetDatabase3
│ └── metadata
│ │ ├── 12
│ │ ├── 12fd8a0055b84bb59e84c9835a37e333
│ │ └── 12fd8a0055b84bb59e84c9835a37e333.info
│ │ ├── 21
│ │ ├── 21eff446d50eaf44a85985cd4c0b6fa1
│ │ └── 21eff446d50eaf44a85985cd4c0b6fa1.info
│ │ ├── 26
│ │ ├── 2682a692a2be7e14e901a738c7806da0
│ │ └── 2682a692a2be7e14e901a738c7806da0.info
│ │ ├── 30
│ │ ├── 307433eba81a469ab1e2084d52d1a5a2
│ │ └── 307433eba81a469ab1e2084d52d1a5a2.info
│ │ ├── 32
│ │ ├── 32188fd89022c154c81befa2f0e00be0
│ │ ├── 32188fd89022c154c81befa2f0e00be0.info
│ │ ├── 328cc881519068e4eb7db4bb907ad2d9
│ │ └── 328cc881519068e4eb7db4bb907ad2d9.info
│ │ ├── 35
│ │ ├── 358b30809beb1408ea15d11704f17fb7
│ │ └── 358b30809beb1408ea15d11704f17fb7.info
│ │ ├── 41
│ │ ├── 4113173d5e95493ab8765d7b08371de4
│ │ └── 4113173d5e95493ab8765d7b08371de4.info
│ │ ├── 51
│ │ ├── 517af1b5b81b93b43b9745d58f017562
│ │ └── 517af1b5b81b93b43b9745d58f017562.info
│ │ ├── 53
│ │ └── 53ebcfaa2e1e4e2dbc85882cd5a73fa1.info
│ │ ├── 57
│ │ ├── 5782f9e9e6e0bb94bac99aeea24814fc
│ │ └── 5782f9e9e6e0bb94bac99aeea24814fc.info
│ │ ├── 00
│ │ ├── 00000000000000001000000000000000
│ │ ├── 00000000000000001000000000000000.info
│ │ ├── 00000000000000002000000000000000
│ │ ├── 00000000000000002000000000000000.info
│ │ ├── 00000000000000003000000000000000
│ │ ├── 00000000000000003000000000000000.info
│ │ ├── 00000000000000004000000000000000
│ │ ├── 00000000000000004000000000000000.info
│ │ ├── 00000000000000004100000000000000
│ │ ├── 00000000000000004100000000000000.info
│ │ ├── 00000000000000005000000000000000
│ │ ├── 00000000000000005000000000000000.info
│ │ ├── 00000000000000005100000000000000
│ │ ├── 00000000000000005100000000000000.info
│ │ ├── 00000000000000006000000000000000
│ │ ├── 00000000000000006000000000000000.info
│ │ ├── 00000000000000006100000000000000
│ │ ├── 00000000000000006100000000000000.info
│ │ ├── 00000000000000007000000000000000
│ │ ├── 00000000000000007000000000000000.info
│ │ ├── 00000000000000007100000000000000
│ │ ├── 00000000000000007100000000000000.info
│ │ ├── 00000000000000008000000000000000
│ │ ├── 00000000000000008000000000000000.info
│ │ ├── 00000000000000009000000000000000
│ │ ├── 00000000000000009000000000000000.info
│ │ ├── 0000000000000000a000000000000000
│ │ ├── 0000000000000000a000000000000000.info
│ │ ├── 0000000000000000a100000000000000
│ │ ├── 0000000000000000a100000000000000.info
│ │ ├── 0000000000000000b000000000000000
│ │ ├── 0000000000000000b000000000000000.info
│ │ ├── 0000000000000000c000000000000000
│ │ └── 0000000000000000c000000000000000.info
│ │ ├── 0d
│ │ ├── 0d3bb855445e36e479c85976fc88383a
│ │ └── 0d3bb855445e36e479c85976fc88383a.info
│ │ ├── 1c
│ │ ├── 1c6d1fbb51834b64847b1b73a75bfc77
│ │ └── 1c6d1fbb51834b64847b1b73a75bfc77.info
│ │ ├── 3c
│ │ ├── 3c0ad459c1534645b5d603b7cc258f97
│ │ └── 3c0ad459c1534645b5d603b7cc258f97.info
│ │ ├── 3e
│ │ ├── 3e81f24f593f1455f8a8d5784725fddd
│ │ └── 3e81f24f593f1455f8a8d5784725fddd.info
│ │ ├── 4b
│ │ ├── 4ba2329b63d54f0187bcaa12486b1b0f
│ │ └── 4ba2329b63d54f0187bcaa12486b1b0f.info
│ │ ├── 5d
│ │ ├── 5d22faabf6de640b8b066a5a529baf22
│ │ └── 5d22faabf6de640b8b066a5a529baf22.info
│ │ └── 5f
│ │ ├── 5f32cd94baa94578a686d4b9d6b660f7
│ │ └── 5f32cd94baa94578a686d4b9d6b660f7.info
└── README.md
├── DataVisualization_VoiceControl
└── README.md
├── LICENSE
├── Program.cs
├── README.md
├── convert.cs
├── v1
├── DataSphere.cs
├── TCPClientEnd.cs
└── TCPServerEnd.cs
├── v2
├── TCPClientEnd.cs
└── TCPServerEnd.cs
└── v3
└── TODO.md
/DV_Json/Assets/DV.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: cf7d24477938356438441b4ad470fb3d
3 | folderAsset: yes
4 | timeCreated: 1486925787
5 | licenseType: Free
6 | DefaultImporter:
7 | userData:
8 | assetBundleName:
9 | assetBundleVariant:
10 |
--------------------------------------------------------------------------------
/DV_Json/Assets/DV/Materials.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 440615eab2809e84c93aecaecafa76e3
3 | folderAsset: yes
4 | timeCreated: 1486925796
5 | licenseType: Free
6 | DefaultImporter:
7 | userData:
8 | assetBundleName:
9 | assetBundleVariant:
10 |
--------------------------------------------------------------------------------
/DV_Json/Assets/DV/Materials/GroundMaterial.mat:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Assets/DV/Materials/GroundMaterial.mat
--------------------------------------------------------------------------------
/DV_Json/Assets/DV/Materials/GroundMaterial.mat.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: ebe34197343467e428d2c203de5c9768
3 | timeCreated: 1482812327
4 | licenseType: Pro
5 | NativeFormatImporter:
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/DV_Json/Assets/DV/Scenes.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 4f571cd743c443646be9a1a6eea32ae5
3 | folderAsset: yes
4 | timeCreated: 1486925839
5 | licenseType: Free
6 | DefaultImporter:
7 | userData:
8 | assetBundleName:
9 | assetBundleVariant:
10 |
--------------------------------------------------------------------------------
/DV_Json/Assets/DV/Scenes/DV.unity:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Assets/DV/Scenes/DV.unity
--------------------------------------------------------------------------------
/DV_Json/Assets/DV/Scenes/DV.unity.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: d74ae0c8ebbed5749bbc30dd14267a5e
3 | timeCreated: 1486925839
4 | licenseType: Free
5 | DefaultImporter:
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/DV_Json/Assets/DV/Scripts.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 755cb7b5a3b9911488a9c78a427aac67
3 | folderAsset: yes
4 | timeCreated: 1486925792
5 | licenseType: Free
6 | DefaultImporter:
7 | userData:
8 | assetBundleName:
9 | assetBundleVariant:
10 |
--------------------------------------------------------------------------------
/DV_Json/Assets/DV/Scripts/DV_Emitter.cs:
--------------------------------------------------------------------------------
1 | using System.Collections;
2 | using System.Collections.Generic;
3 | using UnityEngine;
4 |
5 | //[ExecuteInEditMode]
6 | public class DV_Emitter : MonoBehaviour {
7 |
8 | public ParticleSystem system;
9 |
10 | public void DataReceived(DataPointViewModel dataPoint)
11 | {
12 | CreateDataPoint(dataPoint.rightAscension, dataPoint.declination, dataPoint.color);
13 | }
14 |
15 | private void CreateDataPoint(float rightAscension, float declination, Color color)
16 | {
17 | var dataPosition = new Vector3(Mathf.Sin(rightAscension * Mathf.PI * 2) * Mathf.Cos(declination * Mathf.PI), Mathf.Sin(declination * Mathf.PI), Mathf.Cos(rightAscension * Mathf.PI * 2) * Mathf.Cos(declination * Mathf.PI));
18 | system.Emit(new ParticleSystem.EmitParams() { position = dataPosition, startColor = color }, 1);
19 | }
20 | }
21 |
--------------------------------------------------------------------------------
/DV_Json/Assets/DV/Scripts/DV_Emitter.cs.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: d7ab8cff14fbd3249b8508df4c1e8217
3 | timeCreated: 1482812839
4 | licenseType: Pro
5 | MonoImporter:
6 | serializedVersion: 2
7 | defaultReferences: []
8 | executionOrder: 0
9 | icon: {instanceID: 0}
10 | userData:
11 | assetBundleName:
12 | assetBundleVariant:
13 |
--------------------------------------------------------------------------------
/DV_Json/Assets/DV/Scripts/Stream.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: d5fb520d4294cfc479842d858ab5ed46
3 | folderAsset: yes
4 | timeCreated: 1482887036
5 | licenseType: Pro
6 | DefaultImporter:
7 | userData:
8 | assetBundleName:
9 | assetBundleVariant:
10 |
--------------------------------------------------------------------------------
/DV_Json/Assets/DV/Scripts/Stream/NamedClientStream.cs.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 3ecd3a15393ec464fad94d15b85f696c
3 | timeCreated: 1482887207
4 | licenseType: Pro
5 | MonoImporter:
6 | serializedVersion: 2
7 | defaultReferences: []
8 | executionOrder: 0
9 | icon: {instanceID: 0}
10 | userData:
11 | assetBundleName:
12 | assetBundleVariant:
13 |
--------------------------------------------------------------------------------
/DV_Json/Assets/DV/Scripts/Stream/NamedServerStream.cs.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: d22e21e40caf8a746857c222b2f1fd88
3 | timeCreated: 1482887135
4 | licenseType: Pro
5 | MonoImporter:
6 | serializedVersion: 2
7 | defaultReferences: []
8 | executionOrder: 0
9 | icon: {instanceID: 0}
10 | userData:
11 | assetBundleName:
12 | assetBundleVariant:
13 |
--------------------------------------------------------------------------------
/DV_Json/Assets/DV/Scripts/ViewModels.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: cf41aedcf44e49043bb2222fd4a4475f
3 | folderAsset: yes
4 | timeCreated: 1482973674
5 | licenseType: Pro
6 | DefaultImporter:
7 | userData:
8 | assetBundleName:
9 | assetBundleVariant:
10 |
--------------------------------------------------------------------------------
/DV_Json/Assets/DV/Scripts/ViewModels/DataPointViewModel.cs:
--------------------------------------------------------------------------------
1 | using System.Collections;
2 | using System.Collections.Generic;
3 | using UnityEngine;
4 |
5 | public class DataPointViewModel {
6 | public Color color;
7 | public float rightAscension;
8 | public float declination;
9 | }
10 |
--------------------------------------------------------------------------------
/DV_Json/Assets/DV/Scripts/ViewModels/DataPointViewModel.cs.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 3fe40269a9819e848bdb633b897215c6
3 | timeCreated: 1482973682
4 | licenseType: Pro
5 | MonoImporter:
6 | serializedVersion: 2
7 | defaultReferences: []
8 | executionOrder: 0
9 | icon: {instanceID: 0}
10 | userData:
11 | assetBundleName:
12 | assetBundleVariant:
13 |
--------------------------------------------------------------------------------
/DV_Json/DV_Json.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2015
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DV_Json", "DV_Json.csproj", "{384E689F-4C07-19E6-20E0-F5F85C43679C}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Any CPU = Debug|Any CPU
9 | Release|Any CPU = Release|Any CPU
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {384E689F-4C07-19E6-20E0-F5F85C43679C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13 | {384E689F-4C07-19E6-20E0-F5F85C43679C}.Debug|Any CPU.Build.0 = Debug|Any CPU
14 | {384E689F-4C07-19E6-20E0-F5F85C43679C}.Release|Any CPU.ActiveCfg = Release|Any CPU
15 | {384E689F-4C07-19E6-20E0-F5F85C43679C}.Release|Any CPU.Build.0 = Release|Any CPU
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Common/global.json:
--------------------------------------------------------------------------------
1 | {
2 | "projects": [ "src", "test" ],
3 | "sdk": {
4 | "version": ""
5 | }
6 | }
7 |
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Common/src/DV_Json.DataSource.Common/DV_Json.DataSource.Common.xproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 14.0
5 | $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
6 |
7 |
8 |
9 |
10 | 4c11900a-b435-424e-8828-64dca6391c4f
11 | DV_Json.DataSource.Common
12 | .\obj
13 | .\bin\
14 | v4.5.2
15 |
16 |
17 |
18 | 2.0
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Common/src/DV_Json.DataSource.Common/DV_Json.DataSource.Common.xproj.user:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Start
5 |
6 |
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Common/src/DV_Json.DataSource.Common/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // General Information about an assembly is controlled through the following
6 | // set of attributes. Change these attribute values to modify the information
7 | // associated with an assembly.
8 | [assembly: AssemblyConfiguration("")]
9 | [assembly: AssemblyCompany("")]
10 | [assembly: AssemblyProduct("DV_Json.DataSource.Common")]
11 | [assembly: AssemblyTrademark("")]
12 |
13 | // Setting ComVisible to false makes the types in this assembly not visible
14 | // to COM components. If you need to access a type in this assembly from
15 | // COM, set the ComVisible attribute to true on that type.
16 | [assembly: ComVisible(false)]
17 |
18 | // The following GUID is for the ID of the typelib if this project is exposed to COM
19 | [assembly: Guid("4c11900a-b435-424e-8828-64dca6391c4f")]
20 |
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Common/src/DV_Json.DataSource.Common/bin/Debug/netstandard1.6/DV_Json.DataSource.Common.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/DataSource/DV_Json.DataSource.Common/src/DV_Json.DataSource.Common/bin/Debug/netstandard1.6/DV_Json.DataSource.Common.dll
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Common/src/DV_Json.DataSource.Common/bin/Debug/netstandard1.6/DV_Json.DataSource.Common.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/DataSource/DV_Json.DataSource.Common/src/DV_Json.DataSource.Common/bin/Debug/netstandard1.6/DV_Json.DataSource.Common.pdb
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Common/src/DV_Json.DataSource.Common/obj/Debug/netstandard1.6/dotnet-compile.assemblyinfo.cs:
--------------------------------------------------------------------------------
1 | // This file has been auto generated.
2 | [assembly:System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
3 | [assembly:System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
4 | [assembly:System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
5 | [assembly:System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v1.6")]
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Common/src/DV_Json.DataSource.Common/project.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "1.0.0-*",
3 |
4 | "dependencies": {
5 | "NETStandard.Library": "1.6.0"
6 | },
7 |
8 | "frameworks": {
9 | "netstandard1.6": {
10 | "imports": "dnxcore50"
11 | }
12 | }
13 | }
14 |
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Generator/DV_Json.DataSource.Generator.xproj:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | 14.0
5 | $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)
6 |
7 |
8 |
9 |
10 | 71b3f27b-7da9-4373-a21f-7a35db18e6ba
11 | DV_Json.DataSource.Generator
12 | .\obj
13 | .\bin\
14 | v4.5.2
15 |
16 |
17 |
18 | 2.0
19 |
20 |
21 |
22 |
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Generator/DV_Json.DataSource.Generator.xproj.user:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | DV_Json.DataSource.Generator
5 |
6 |
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Generator/DataViewModel.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Linq;
4 | using System.Threading.Tasks;
5 |
6 | namespace DV_Json.DataSource.Generator
7 | {
8 | public class DataPointViewModel
9 | {
10 | public DataPointColor color;
11 | public float declination;
12 | public float rightAscension;
13 | }
14 |
15 | // #55acee
16 | public class DataPointColor
17 | {
18 | public float r = 0.4f;
19 | public float g = 0.75f;
20 | public float b = 0.95f;
21 | public float a = 1;
22 | }
23 | }
24 |
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Generator/Program.cs:
--------------------------------------------------------------------------------
1 | using System;
2 | using System.Collections.Generic;
3 | using System.Diagnostics;
4 | using System.Linq;
5 | using System.Threading.Tasks;
6 | using Newtonsoft.Json;
7 |
8 | namespace DV_Json.DataSource.Generator
9 | {
10 | public class Program
11 | {
12 | public static void Main(string[] args)
13 | {
14 | Common.DV_Client client = new Common.DV_Client("127.0.0.1", 9001);
15 | double rightAscensionSpeed = 0.33f;
16 | double declinationSpeed = 0.1f;
17 | double rightAscension = 0;
18 | double declination = -1;
19 | Stopwatch stopwatch = new Stopwatch();
20 | stopwatch.Start();
21 | Task.Run(async () =>
22 | {
23 | while (true)
24 | {
25 | var elapsed = stopwatch.Elapsed;
26 | stopwatch.Restart();
27 |
28 | rightAscension += elapsed.TotalSeconds * rightAscensionSpeed;
29 | declination += elapsed.TotalSeconds * declinationSpeed;
30 |
31 | while (rightAscension > 1)
32 | {
33 | rightAscension -= 1;
34 | }
35 | while (declination > 1)
36 | {
37 | declination -= 2;
38 | }
39 |
40 | var dataPoint = new DataPointViewModel()
41 | {
42 | color = new DataPointColor(),
43 | rightAscension = (float)rightAscension,
44 | declination = (float)declination
45 | };
46 | var message = JsonConvert.SerializeObject(dataPoint);
47 | Console.WriteLine("Sending message {0}", message);
48 | await client.SendMessageToServerTaskAsync(message);
49 | }
50 | }).Wait();
51 | }
52 | }
53 | }
54 |
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Generator/Properties/AssemblyInfo.cs:
--------------------------------------------------------------------------------
1 | using System.Reflection;
2 | using System.Runtime.CompilerServices;
3 | using System.Runtime.InteropServices;
4 |
5 | // General Information about an assembly is controlled through the following
6 | // set of attributes. Change these attribute values to modify the information
7 | // associated with an assembly.
8 | [assembly: AssemblyConfiguration("")]
9 | [assembly: AssemblyCompany("")]
10 | [assembly: AssemblyProduct("DV_Json.DataSource.Generator")]
11 | [assembly: AssemblyTrademark("")]
12 |
13 | // Setting ComVisible to false makes the types in this assembly not visible
14 | // to COM components. If you need to access a type in this assembly from
15 | // COM, set the ComVisible attribute to true on that type.
16 | [assembly: ComVisible(false)]
17 |
18 | // The following GUID is for the ID of the typelib if this project is exposed to COM
19 | [assembly: Guid("71b3f27b-7da9-4373-a21f-7a35db18e6ba")]
20 |
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Generator/bin/Debug/netcoreapp1.0/DV_Json.DataSource.Common.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/DataSource/DV_Json.DataSource.Generator/bin/Debug/netcoreapp1.0/DV_Json.DataSource.Common.dll
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Generator/bin/Debug/netcoreapp1.0/DV_Json.DataSource.Common.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/DataSource/DV_Json.DataSource.Generator/bin/Debug/netcoreapp1.0/DV_Json.DataSource.Common.pdb
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Generator/bin/Debug/netcoreapp1.0/DV_Json.DataSource.Generator.deps.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeTarget": {
3 | "name": ".NETCoreApp,Version=v1.0",
4 | "signature": "09db60146a5b8a0d40c5ea0fb7485ab3bbdd4a1a"
5 | },
6 | "compilationOptions": {},
7 | "targets": {
8 | ".NETCoreApp,Version=v1.0": {
9 | "DV_Json.DataSource.Generator/1.0.0": {
10 | "dependencies": {
11 | "DV_Json.DataSource.Common": "1.0.0",
12 | "Newtonsoft.Json": "9.0.1"
13 | },
14 | "runtime": {
15 | "DV_Json.DataSource.Generator.dll": {}
16 | }
17 | },
18 | "Newtonsoft.Json/9.0.1": {
19 | "dependencies": {
20 | "System.Runtime.Serialization.Primitives": "4.1.1"
21 | },
22 | "runtime": {
23 | "lib/netstandard1.0/Newtonsoft.Json.dll": {}
24 | }
25 | },
26 | "System.Runtime.Serialization.Primitives/4.1.1": {
27 | "runtime": {
28 | "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {}
29 | }
30 | },
31 | "DV_Json.DataSource.Common/1.0.0": {
32 | "runtime": {
33 | "DV_Json.DataSource.Common.dll": {}
34 | }
35 | }
36 | }
37 | },
38 | "libraries": {
39 | "DV_Json.DataSource.Generator/1.0.0": {
40 | "type": "project",
41 | "serviceable": false,
42 | "sha512": ""
43 | },
44 | "Newtonsoft.Json/9.0.1": {
45 | "type": "package",
46 | "serviceable": true,
47 | "sha512": "sha512-U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw=="
48 | },
49 | "System.Runtime.Serialization.Primitives/4.1.1": {
50 | "type": "package",
51 | "serviceable": true,
52 | "sha512": "sha512-HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg=="
53 | },
54 | "DV_Json.DataSource.Common/1.0.0": {
55 | "type": "project",
56 | "serviceable": false,
57 | "sha512": ""
58 | }
59 | }
60 | }
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Generator/bin/Debug/netcoreapp1.0/DV_Json.DataSource.Generator.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/DataSource/DV_Json.DataSource.Generator/bin/Debug/netcoreapp1.0/DV_Json.DataSource.Generator.dll
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Generator/bin/Debug/netcoreapp1.0/DV_Json.DataSource.Generator.pdb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/DataSource/DV_Json.DataSource.Generator/bin/Debug/netcoreapp1.0/DV_Json.DataSource.Generator.pdb
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Generator/bin/Debug/netcoreapp1.0/DV_Json.DataSource.Generator.runtimeconfig.dev.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeOptions": {
3 | "additionalProbingPaths": [
4 | "C:\\Users\\Ling\\.nuget\\packages"
5 | ]
6 | }
7 | }
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Generator/bin/Debug/netcoreapp1.0/DV_Json.DataSource.Generator.runtimeconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "runtimeOptions": {
3 | "framework": {
4 | "name": "Microsoft.NETCore.App",
5 | "version": "1.0.1"
6 | }
7 | }
8 | }
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Generator/obj/Debug/netcoreapp1.0/dotnet-compile.assemblyinfo.cs:
--------------------------------------------------------------------------------
1 | // This file has been auto generated.
2 | [assembly:System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
3 | [assembly:System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
4 | [assembly:System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
5 | [assembly:System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v1.0")]
--------------------------------------------------------------------------------
/DV_Json/DataSource/DV_Json.DataSource.Generator/project.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "1.0.0-*",
3 | "buildOptions": {
4 | "emitEntryPoint": true
5 | },
6 |
7 | "dependencies": {
8 | "DV_Json.DataSource.Common": "1.0.0-*",
9 | "Microsoft.NETCore.App": {
10 | "type": "platform",
11 | "version": "1.0.1"
12 | },
13 | "Newtonsoft.Json": "9.0.1"
14 | },
15 |
16 | "frameworks": {
17 | "netcoreapp1.0": {
18 | "imports": "dnxcore50"
19 | }
20 | }
21 | }
22 |
--------------------------------------------------------------------------------
/DV_Json/DataSource/global.json:
--------------------------------------------------------------------------------
1 | {
2 | "projects": [ "DV_Json.DataSource.Common/src" ]
3 | }
--------------------------------------------------------------------------------
/DV_Json/Library/AnnotationManager:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/AnnotationManager
--------------------------------------------------------------------------------
/DV_Json/Library/AssetImportState:
--------------------------------------------------------------------------------
1 | 5;0;6;0;0
--------------------------------------------------------------------------------
/DV_Json/Library/AssetServerCacheV3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/AssetServerCacheV3
--------------------------------------------------------------------------------
/DV_Json/Library/BuildSettings.asset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/BuildSettings.asset
--------------------------------------------------------------------------------
/DV_Json/Library/CurrentLayout.dwlt:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/CurrentLayout.dwlt
--------------------------------------------------------------------------------
/DV_Json/Library/EditorUserBuildSettings.asset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/EditorUserBuildSettings.asset
--------------------------------------------------------------------------------
/DV_Json/Library/EditorUserSettings.asset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/EditorUserSettings.asset
--------------------------------------------------------------------------------
/DV_Json/Library/InspectorExpandedItems.asset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/InspectorExpandedItems.asset
--------------------------------------------------------------------------------
/DV_Json/Library/LastSceneManagerSetup.txt:
--------------------------------------------------------------------------------
1 | sceneSetups:
2 | - path: Assets/DV/Scenes/DV.unity
3 | isLoaded: 1
4 | isActive: 1
5 |
--------------------------------------------------------------------------------
/DV_Json/Library/LibraryFormatVersion.txt:
--------------------------------------------------------------------------------
1 | unityRebuildLibraryVersion: 11
2 | unityForwardCompatibleVersion: 40
3 |
--------------------------------------------------------------------------------
/DV_Json/Library/assetDatabase3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/assetDatabase3
--------------------------------------------------------------------------------
/DV_Json/Library/expandedItems:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/expandedItems
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000001000000000000000:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/metadata/00/00000000000000001000000000000000
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000001000000000000000.info:
--------------------------------------------------------------------------------
1 | PreviewAssetData BaseName:
2 | mainRepresentation:
3 | serializedVersion: 3
4 | name: Assets
5 | thumbnail:
6 | m_Format: 0
7 | m_Width: 0
8 | m_Height: 0
9 | m_RowBytes: 0
10 | image data: 0
11 | _typelessdata:
12 | guid: 00000000000000001000000000000000
13 | path:
14 | localIdentifier: 102900000
15 | thumbnailClassID: 1029
16 | flags: 0
17 | scriptClassName:
18 | representations: []
19 | labels:
20 | m_Labels: []
21 | assetImporterClassID: 1030
22 | assetBundleFullName:
23 | m_AssetBundleName:
24 | m_AssetBundleVariant:
25 | externalReferencesForValidation: []
26 | AssetInfo_______
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000002000000000000000:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/metadata/00/00000000000000002000000000000000
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000002000000000000000.info:
--------------------------------------------------------------------------------
1 | PreviewAssetData BaseName:
2 | mainRepresentation:
3 | serializedVersion: 3
4 | name: InputManager
5 | thumbnail:
6 | m_Format: 0
7 | m_Width: 0
8 | m_Height: 0
9 | m_RowBytes: 0
10 | image data: 0
11 | _typelessdata:
12 | guid: 00000000000000002000000000000000
13 | path:
14 | localIdentifier: 5
15 | thumbnailClassID: 1029
16 | flags: 0
17 | scriptClassName:
18 | representations: []
19 | labels:
20 | m_Labels: []
21 | assetImporterClassID: 1038
22 | assetBundleFullName:
23 | m_AssetBundleName:
24 | m_AssetBundleVariant:
25 | externalReferencesForValidation: []
26 | AssetInfo_______
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000003000000000000000:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/metadata/00/00000000000000003000000000000000
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000003000000000000000.info:
--------------------------------------------------------------------------------
1 | PreviewAssetData BaseName:
2 | mainRepresentation:
3 | serializedVersion: 3
4 | name: TagManager
5 | thumbnail:
6 | m_Format: 0
7 | m_Width: 0
8 | m_Height: 0
9 | m_RowBytes: 0
10 | image data: 0
11 | _typelessdata:
12 | guid: 00000000000000003000000000000000
13 | path:
14 | localIdentifier: 5
15 | thumbnailClassID: 1029
16 | flags: 0
17 | scriptClassName:
18 | representations: []
19 | labels:
20 | m_Labels: []
21 | assetImporterClassID: 1038
22 | assetBundleFullName:
23 | m_AssetBundleName:
24 | m_AssetBundleVariant:
25 | externalReferencesForValidation: []
26 | AssetInfo_______
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000004000000000000000:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/metadata/00/00000000000000004000000000000000
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000004000000000000000.info:
--------------------------------------------------------------------------------
1 | PreviewAssetData BaseName:
2 | mainRepresentation:
3 | serializedVersion: 3
4 | name: ProjectSettings
5 | thumbnail:
6 | m_Format: 0
7 | m_Width: 0
8 | m_Height: 0
9 | m_RowBytes: 0
10 | image data: 0
11 | _typelessdata:
12 | guid: 00000000000000004000000000000000
13 | path:
14 | localIdentifier: 5
15 | thumbnailClassID: 1029
16 | flags: 0
17 | scriptClassName:
18 | representations: []
19 | labels:
20 | m_Labels: []
21 | assetImporterClassID: 1038
22 | assetBundleFullName:
23 | m_AssetBundleName:
24 | m_AssetBundleVariant:
25 | externalReferencesForValidation: []
26 | AssetInfo_______
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000004100000000000000:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/metadata/00/00000000000000004100000000000000
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000004100000000000000.info:
--------------------------------------------------------------------------------
1 | PreviewAssetData BaseName:
2 | mainRepresentation:
3 | serializedVersion: 3
4 | name: NavMeshAreas
5 | thumbnail:
6 | m_Format: 0
7 | m_Width: 0
8 | m_Height: 0
9 | m_RowBytes: 0
10 | image data: 0
11 | _typelessdata:
12 | guid: 00000000000000004100000000000000
13 | path:
14 | localIdentifier: 5
15 | thumbnailClassID: 1029
16 | flags: 0
17 | scriptClassName:
18 | representations: []
19 | labels:
20 | m_Labels: []
21 | assetImporterClassID: 1038
22 | assetBundleFullName:
23 | m_AssetBundleName:
24 | m_AssetBundleVariant:
25 | externalReferencesForValidation: []
26 | AssetInfo_______
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000005000000000000000:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/metadata/00/00000000000000005000000000000000
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000005000000000000000.info:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/metadata/00/00000000000000005000000000000000.info
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000005100000000000000:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/metadata/00/00000000000000005100000000000000
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000005100000000000000.info:
--------------------------------------------------------------------------------
1 | PreviewAssetData BaseName:
2 | mainRepresentation:
3 | serializedVersion: 3
4 | name: Physics2DSettings
5 | thumbnail:
6 | m_Format: 0
7 | m_Width: 0
8 | m_Height: 0
9 | m_RowBytes: 0
10 | image data: 0
11 | _typelessdata:
12 | guid: 00000000000000005100000000000000
13 | path:
14 | localIdentifier: 5
15 | thumbnailClassID: 1029
16 | flags: 0
17 | scriptClassName:
18 | representations: []
19 | labels:
20 | m_Labels: []
21 | assetImporterClassID: 1038
22 | assetBundleFullName:
23 | m_AssetBundleName:
24 | m_AssetBundleVariant:
25 | externalReferencesForValidation: []
26 | AssetInfo_______
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000006000000000000000:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/metadata/00/00000000000000006000000000000000
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000006000000000000000.info:
--------------------------------------------------------------------------------
1 | PreviewAssetData BaseName:
2 | mainRepresentation:
3 | serializedVersion: 3
4 | name: AudioManager
5 | thumbnail:
6 | m_Format: 0
7 | m_Width: 0
8 | m_Height: 0
9 | m_RowBytes: 0
10 | image data: 0
11 | _typelessdata:
12 | guid: 00000000000000006000000000000000
13 | path:
14 | localIdentifier: 5
15 | thumbnailClassID: 1029
16 | flags: 0
17 | scriptClassName:
18 | representations: []
19 | labels:
20 | m_Labels: []
21 | assetImporterClassID: 1038
22 | assetBundleFullName:
23 | m_AssetBundleName:
24 | m_AssetBundleVariant:
25 | externalReferencesForValidation: []
26 | AssetInfo_______
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000006100000000000000:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/metadata/00/00000000000000006100000000000000
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000006100000000000000.info:
--------------------------------------------------------------------------------
1 | PreviewAssetData BaseName:
2 | mainRepresentation:
3 | serializedVersion: 3
4 | name: GraphicsSettings
5 | thumbnail:
6 | m_Format: 0
7 | m_Width: 0
8 | m_Height: 0
9 | m_RowBytes: 0
10 | image data: 0
11 | _typelessdata:
12 | guid: 00000000000000006100000000000000
13 | path:
14 | localIdentifier: 5
15 | thumbnailClassID: 1029
16 | flags: 0
17 | scriptClassName:
18 | representations: []
19 | labels:
20 | m_Labels: []
21 | assetImporterClassID: 1038
22 | assetBundleFullName:
23 | m_AssetBundleName:
24 | m_AssetBundleVariant:
25 | externalReferencesForValidation: []
26 | AssetInfo_______
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000007000000000000000:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/Library/metadata/00/00000000000000007000000000000000
--------------------------------------------------------------------------------
/DV_Json/Library/metadata/00/00000000000000007000000000000000.info:
--------------------------------------------------------------------------------
1 | PreviewAssetData BaseName:
2 | mainRepresentation:
3 | serializedVersion: 3
4 | name: TimeManager
5 | thumbnail:
6 | m_Format: 0
7 | m_Width: 0
8 | m_Height: 0
9 | m_RowBytes: 0
10 | image data: 0
11 | _typelessdata:
12 | guid: 00000000000000007000000000000000
13 | path:
14 | localIdentifier: 5
15 | thumbnailClassID: 1029
16 | flags: 0
17 | scriptClassName:
18 | representations: []
19 | labels:
20 | m_Labels: []
21 | assetImporterClassID: 1038
22 | assetBundleFullName:
23 | m_AssetBundleName:
24 | m_AssetBundleVariant:
25 | externalReferencesForValidation: []
26 | AssetInfo_______
--------------------------------------------------------------------------------
/DV_Json/ProjectSettings/AudioManager.asset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/ProjectSettings/AudioManager.asset
--------------------------------------------------------------------------------
/DV_Json/ProjectSettings/ClusterInputManager.asset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/ProjectSettings/ClusterInputManager.asset
--------------------------------------------------------------------------------
/DV_Json/ProjectSettings/DynamicsManager.asset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/ProjectSettings/DynamicsManager.asset
--------------------------------------------------------------------------------
/DV_Json/ProjectSettings/EditorBuildSettings.asset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/ProjectSettings/EditorBuildSettings.asset
--------------------------------------------------------------------------------
/DV_Json/ProjectSettings/EditorSettings.asset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/ProjectSettings/EditorSettings.asset
--------------------------------------------------------------------------------
/DV_Json/ProjectSettings/GraphicsSettings.asset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/ProjectSettings/GraphicsSettings.asset
--------------------------------------------------------------------------------
/DV_Json/ProjectSettings/InputManager.asset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/ProjectSettings/InputManager.asset
--------------------------------------------------------------------------------
/DV_Json/ProjectSettings/NavMeshAreas.asset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/ProjectSettings/NavMeshAreas.asset
--------------------------------------------------------------------------------
/DV_Json/ProjectSettings/NetworkManager.asset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/ProjectSettings/NetworkManager.asset
--------------------------------------------------------------------------------
/DV_Json/ProjectSettings/Physics2DSettings.asset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/ProjectSettings/Physics2DSettings.asset
--------------------------------------------------------------------------------
/DV_Json/ProjectSettings/ProjectSettings.asset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/ProjectSettings/ProjectSettings.asset
--------------------------------------------------------------------------------
/DV_Json/ProjectSettings/ProjectVersion.txt:
--------------------------------------------------------------------------------
1 | m_EditorVersion: 5.5.1f1
2 |
--------------------------------------------------------------------------------
/DV_Json/ProjectSettings/QualitySettings.asset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/ProjectSettings/QualitySettings.asset
--------------------------------------------------------------------------------
/DV_Json/ProjectSettings/TagManager.asset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/ProjectSettings/TagManager.asset
--------------------------------------------------------------------------------
/DV_Json/ProjectSettings/TimeManager.asset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/ProjectSettings/TimeManager.asset
--------------------------------------------------------------------------------
/DV_Json/ProjectSettings/UnityConnectSettings.asset:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Json/ProjectSettings/UnityConnectSettings.asset
--------------------------------------------------------------------------------
/DV_Json/README.md:
--------------------------------------------------------------------------------
1 | - [x] Use Json, to pass the data from another client to Unity
2 | - [x] Visualize the data point with particles
3 | - [ ] Modify the particle system to be multi-dimensional (collaborate with Goddess)
4 | - [ ] Format the data from python end (collaborate with Data Monk)
5 |
--------------------------------------------------------------------------------
/DV_Mathematics/Assets/Graph_3D.cs.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 1fc0f946a5f010b4ab4f539c46fb1d1f
3 | timeCreated: 1486789256
4 | licenseType: Free
5 | MonoImporter:
6 | serializedVersion: 2
7 | defaultReferences: []
8 | executionOrder: 0
9 | icon: {instanceID: 0}
10 | userData:
11 | assetBundleName:
12 | assetBundleVariant:
13 |
--------------------------------------------------------------------------------
/DV_Mathematics/Assets/math_1.unity:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/lilyzhng/Unity_DataVisualization/b05326b4651a8a3f62e1a6fea7bec8d3291a6bfd/DV_Mathematics/Assets/math_1.unity
--------------------------------------------------------------------------------
/DV_Mathematics/Assets/math_1.unity.meta:
--------------------------------------------------------------------------------
1 | fileFormatVersion: 2
2 | guid: 9cbef545e4b329642b6806f9e22c74c5
3 | timeCreated: 1486789958
4 | licenseType: Free
5 | DefaultImporter:
6 | userData:
7 | assetBundleName:
8 | assetBundleVariant:
9 |
--------------------------------------------------------------------------------
/DV_Mathematics/DV_Mathematics.sln:
--------------------------------------------------------------------------------
1 |
2 | Microsoft Visual Studio Solution File, Format Version 12.00
3 | # Visual Studio 2015
4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DV_Mathematics", "DV_Mathematics.csproj", "{801D2185-517B-DDB2-C3B2-9C28749FBE2D}"
5 | EndProject
6 | Global
7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution
8 | Debug|Any CPU = Debug|Any CPU
9 | Release|Any CPU = Release|Any CPU
10 | EndGlobalSection
11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution
12 | {801D2185-517B-DDB2-C3B2-9C28749FBE2D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13 | {801D2185-517B-DDB2-C3B2-9C28749FBE2D}.Debug|Any CPU.Build.0 = Debug|Any CPU
14 | {801D2185-517B-DDB2-C3B2-9C28749FBE2D}.Release|Any CPU.ActiveCfg = Release|Any CPU
15 | {801D2185-517B-DDB2-C3B2-9C28749FBE2D}.Release|Any CPU.Build.0 = Release|Any CPU
16 | EndGlobalSection
17 | GlobalSection(SolutionProperties) = preSolution
18 | HideSolutionNode = FALSE
19 | EndGlobalSection
20 | EndGlobal
21 |
--------------------------------------------------------------------------------
/DV_Mathematics/Grid.cs:
--------------------------------------------------------------------------------
1 | using UnityEngine;
2 | using System.Collections;
3 | [RequireComponent(typeof(MeshFilter), typeof(MeshRenderer))]
4 | public class Grid: MonoBehavior{
5 | public int xSize, ySize;
6 | public Vector3[] vertices;
7 | private Mesh mesh;
8 |
9 | public void Awake()
10 | {
11 | StartCoroutine(Generate());
12 | }
13 |
14 | private IEnumerator Generate()
15 | {
16 | WaitForSeconds wait = new WaitForSeconds(0.05f);
17 | GetComponent().mesh= mesh = new Mesh();
18 | mesh.name= "Procedural Grid";
19 | vertices = new Vector3[(xSize+1)*(ySize+1)];
20 | for(int i=0, y=0; y<=ySize; y++){
21 | for(int x=0; x<=xSize; x++,i++)
22 | {
23 | vertices[i]= new Vector3(x,y);
24 | yield return wait;
25 | }
26 | }
27 | mesh.vertices = vertices;
28 | int [] triangles = new int[3];
29 | triangles[0]=0;
30 | triangles[1]=1;
31 | triangles[2]=xSize+1;
32 | mesh.triangles= triangles;
33 |
34 | }
35 | private void Generate()
36 | {
37 | vertices = new Vector3[(xSize +1)* (ySize+1)];
38 | for(int i=0, y=0; y<=ySize; y++)
39 | {
40 | for(int x=0; x<=xSize; x++, i++)
41 | {
42 | vertices[i]= new Vector3(x,y);
43 | }
44 | }
45 | }
46 |
47 | //gizmos is for showing the meshes
48 | private void OnDrawGizmos()
49 | {
50 | if(vertices == null)
51 | {
52 | return;
53 | }
54 | Gizmos.color = Color.black;
55 | for(int i=0; i