├── .gitattributes ├── .vs ├── Antflow │ └── v16 │ │ ├── .suo │ │ └── Server │ │ └── sqlite3 │ │ ├── db.lock │ │ └── storage.ide ├── VSWorkspaceState.json └── slnx.sqlite ├── Antflow.csproj ├── Antflow.sln ├── AntflowInfo.cs ├── Flow ├── Class │ ├── A_star.cs │ └── Person.cs └── Components │ ├── A_Star3D.cs │ ├── FOV.cs │ ├── FreeFlow.cs │ ├── Shortest_Walk.cs │ └── Shortest_Walk_Terrain.cs ├── Flowtester.gh ├── Flowtester3d.3dm ├── Flowtester3d.3dmbak ├── LICENSE ├── PArking.gh ├── Parking.gif ├── Properties └── AssemblyInfo.cs ├── README.md ├── ShortWalk3D.gif ├── Traffic ├── Class │ ├── LocalRules.cs │ ├── ParkingLot.cs │ └── Parkingspace.cs └── Parking.cs ├── Urban_Noise_Demo.gif ├── bin ├── Antflow.dll ├── Antflow.gha └── Antflow.pdb └── obj └── Debug ├── .NETFramework,Version=v4.5.AssemblyAttributes.cs ├── Antflow.csproj.CoreCompileInputs.cache ├── Antflow.csproj.FileListAbsolute.txt ├── Antflow.csprojAssemblyReference.cache ├── Antflow.dll ├── Antflow.pdb └── DesignTimeResolveAssemblyReferencesInput.cache /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/.gitattributes -------------------------------------------------------------------------------- /.vs/Antflow/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/.vs/Antflow/v16/.suo -------------------------------------------------------------------------------- /.vs/Antflow/v16/Server/sqlite3/db.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.vs/Antflow/v16/Server/sqlite3/storage.ide: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/.vs/Antflow/v16/Server/sqlite3/storage.ide -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /Antflow.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/Antflow.csproj -------------------------------------------------------------------------------- /Antflow.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/Antflow.sln -------------------------------------------------------------------------------- /AntflowInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/AntflowInfo.cs -------------------------------------------------------------------------------- /Flow/Class/A_star.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/Flow/Class/A_star.cs -------------------------------------------------------------------------------- /Flow/Class/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/Flow/Class/Person.cs -------------------------------------------------------------------------------- /Flow/Components/A_Star3D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/Flow/Components/A_Star3D.cs -------------------------------------------------------------------------------- /Flow/Components/FOV.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/Flow/Components/FOV.cs -------------------------------------------------------------------------------- /Flow/Components/FreeFlow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/Flow/Components/FreeFlow.cs -------------------------------------------------------------------------------- /Flow/Components/Shortest_Walk.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/Flow/Components/Shortest_Walk.cs -------------------------------------------------------------------------------- /Flow/Components/Shortest_Walk_Terrain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/Flow/Components/Shortest_Walk_Terrain.cs -------------------------------------------------------------------------------- /Flowtester.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/Flowtester.gh -------------------------------------------------------------------------------- /Flowtester3d.3dm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/Flowtester3d.3dm -------------------------------------------------------------------------------- /Flowtester3d.3dmbak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/Flowtester3d.3dmbak -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/LICENSE -------------------------------------------------------------------------------- /PArking.gh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/PArking.gh -------------------------------------------------------------------------------- /Parking.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/Parking.gif -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/README.md -------------------------------------------------------------------------------- /ShortWalk3D.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/ShortWalk3D.gif -------------------------------------------------------------------------------- /Traffic/Class/LocalRules.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/Traffic/Class/LocalRules.cs -------------------------------------------------------------------------------- /Traffic/Class/ParkingLot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/Traffic/Class/ParkingLot.cs -------------------------------------------------------------------------------- /Traffic/Class/Parkingspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/Traffic/Class/Parkingspace.cs -------------------------------------------------------------------------------- /Traffic/Parking.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/Traffic/Parking.cs -------------------------------------------------------------------------------- /Urban_Noise_Demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/Urban_Noise_Demo.gif -------------------------------------------------------------------------------- /bin/Antflow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/bin/Antflow.dll -------------------------------------------------------------------------------- /bin/Antflow.gha: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/bin/Antflow.gha -------------------------------------------------------------------------------- /bin/Antflow.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/bin/Antflow.pdb -------------------------------------------------------------------------------- /obj/Debug/.NETFramework,Version=v4.5.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/obj/Debug/.NETFramework,Version=v4.5.AssemblyAttributes.cs -------------------------------------------------------------------------------- /obj/Debug/Antflow.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 8e13c45bb0c6c7ac35047f081e40b2fd7ea9f77b 2 | -------------------------------------------------------------------------------- /obj/Debug/Antflow.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/obj/Debug/Antflow.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /obj/Debug/Antflow.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/obj/Debug/Antflow.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /obj/Debug/Antflow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/obj/Debug/Antflow.dll -------------------------------------------------------------------------------- /obj/Debug/Antflow.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/obj/Debug/Antflow.pdb -------------------------------------------------------------------------------- /obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Esrup/Antflow/HEAD/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache --------------------------------------------------------------------------------