Skip to content

Commit 27178fe

Browse files
authored
Merge pull request #117 from VRtualize/Integration
Creating 0.1 release
2 parents 4157d0a + ab139bf commit 27178fe

File tree

3,414 files changed

+1192461
-409
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

3,414 files changed

+1192461
-409
lines changed

.gitignore

+143
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,146 @@
1+
!.gitignore
2+
13
Documentation/SRS/build
24
Documentation/SRS/.buildinfo
35
Documentation/SRS/.vscode/*
6+
Pangeo/.vscode/*
7+
Pangeo/gridFloatExample.flt
8+
Pangeo/bingExample.json
9+
10+
Pangeo/.vscode/*
11+
12+
docs/build/*
13+
!docs/build/latex
14+
docs/build/latex/*
15+
!docs/build/latex/TestPlan.pdf
16+
17+
# C# Scripts
18+
DBInterface/*
19+
!DBInterface/DBInterface
20+
DBInterface/DBInterface/*
21+
!DBInterface/DBInterface/DBQuery.cs
22+
!DBInterface/DBInterface/DBUtils.cs
23+
!DBInterface/DBInterface/MapData.cs
24+
!DBInterface/DBInterface/Query.cs
25+
26+
# Unit tests
27+
!DBInterface/DBInterfaceTest
28+
DBInterface/DBInterfaceTest/*
29+
!DBInterface/DBInterfaceTest/DBUtilsTest.cs
30+
!DBInterface/DBInterfaceTest/DBQueryTest.cs
31+
!DBInterface/DBInterfaceTest/MapDataTest.cs
32+
33+
# DBInterface Documentation
34+
!DBInterface/DBInterfaceTest/docs/latex
35+
DBInterface/DBInterfaceTest/docs/latex/*
36+
DBInterface/DBInterfaceTest/docs/latex/refman.pdf
37+
38+
#Manual Adds
39+
/DataManager/VRPAN_DB/obj/*
40+
/DataManager/VRPAN_DB/bin/*
41+
/DataManager/VRPAN_DB/.vs/*
42+
/DataManager/VRPAN_DBTests/obj/*
43+
/DataManager/VRPAN_DBTests/bin/*
44+
/.vs/*
45+
/vr_db_interaction/.vs/*
46+
47+
# Created by https://www.gitignore.io/api/unity
48+
# Edit at https://www.gitignore.io/?templates=unity
49+
50+
### Unity ###
51+
# This .gitignore file should be placed at the root of your Unity project directory
52+
#
53+
# Get latest from https://github.com/github/gitignore/blob/master/Unity.gitignore
54+
/Pangeo/[Ll]ibrary/
55+
/Pangeo/[Tt]emp/
56+
/Pangeo/[Oo]bj/
57+
/Pangeo/[Bb]uild/
58+
/Pangeo/[Bb]uilds/
59+
/Pangeo/[Ll]ogs/
60+
/Pangeo/[Mm]emoryCaptures/
61+
62+
# Never ignore Asset meta data
63+
!/Pangeo/[Aa]ssets/**/*.meta
64+
65+
# Uncomment this line if you wish to ignore the asset store tools plugin
66+
# /[Aa]ssets/AssetStoreTools*
67+
68+
# TextMesh Pro files
69+
/Pangeo/[Aa]ssets/TextMesh*Pro/
70+
71+
# Autogenerated Jetbrains Rider plugin
72+
/Pangeo/[Aa]ssets/Plugins/Editor/JetBrains*
73+
74+
# Visual Studio cache directory
75+
/Pangeo/.vs/
76+
77+
# Gradle cache directory
78+
/Pangeo/.gradle/
79+
80+
# Autogenerated VS/MD/Consulo solution and project files
81+
/Pangeo/ExportedObj/
82+
/Pangeo/.consulo/
83+
*.csproj
84+
*.unityproj
85+
*.sln
86+
*.suo
87+
*.tmp
88+
*.user
89+
*.userprefs
90+
*.pidb
91+
*.booproj
92+
*.svd
93+
*.pdb
94+
*.mdb
95+
*.opendb
96+
*.VC.db
97+
98+
# Unity3D generated meta files
99+
*.pidb.meta
100+
*.pdb.meta
101+
*.mdb.meta
102+
103+
# Unity3D generated file on crash reports
104+
/Pangeo/sysinfo.txt
105+
106+
# Builds
107+
*.apk
108+
*.unitypackage
109+
*.symbols.zip
110+
111+
# Crashlytics generated file
112+
crashlytics-build.properties
113+
114+
115+
/Pangeo/[Ll]ibrary/
116+
/Pangeo/[Tt]emp/
117+
/Pangeo/[Oo]bj/
118+
/Pangeo/[Bb]uild/
119+
/Pangeo/[Bb]uilds/
120+
/Pangeo/[Ll]ogs/
121+
/Pangeo/[Mm]emoryCaptures/
122+
123+
# Never ignore Asset meta data
124+
!/Pangeo/[Aa]ssets/**/*.meta
125+
126+
# Uncomment this line if you wish to ignore the asset store tools plugin
127+
# /[Aa]ssets/AssetStoreTools*
128+
129+
# TextMesh Pro files
130+
/Pangeo/[Aa]ssets/TextMesh*Pro/
131+
132+
# Autogenerated Jetbrains Rider plugin
133+
/Pangeo/[Aa]ssets/Plugins/Editor/JetBrains*
134+
135+
# Visual Studio cache directory
136+
/Pangeo/.vs/
137+
138+
# Gradle cache directory
139+
/Pangeo/.gradle/
140+
141+
# Autogenerated VS/MD/Consulo solution and project files
142+
/Pangeo/ExportedObj/
143+
/Pangeo/.consulo/
144+
145+
# End of https://www.gitignore.io/api/unity
146+

Documentation/SRS/make.bat

+35-35
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
1-
@ECHO OFF
2-
3-
pushd %~dp0
4-
5-
REM Command file for Sphinx documentation
6-
7-
if "%SPHINXBUILD%" == "" (
8-
set SPHINXBUILD=sphinx-build
9-
)
10-
set SOURCEDIR=source
11-
set BUILDDIR=build
12-
13-
if "%1" == "" goto help
14-
15-
%SPHINXBUILD% >NUL 2>NUL
16-
if errorlevel 9009 (
17-
echo.
18-
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
19-
echo.installed, then set the SPHINXBUILD environment variable to point
20-
echo.to the full path of the 'sphinx-build' executable. Alternatively you
21-
echo.may add the Sphinx directory to PATH.
22-
echo.
23-
echo.If you don't have Sphinx installed, grab it from
24-
echo.http://sphinx-doc.org/
25-
exit /b 1
26-
)
27-
28-
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
29-
goto end
30-
31-
:help
32-
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
33-
34-
:end
35-
popd
1+
@ECHO OFF
2+
3+
pushd %~dp0
4+
5+
REM Command file for Sphinx documentation
6+
7+
if "%SPHINXBUILD%" == "" (
8+
set SPHINXBUILD=sphinx-build
9+
)
10+
set SOURCEDIR=source
11+
set BUILDDIR=build
12+
13+
if "%1" == "" goto help
14+
15+
%SPHINXBUILD% >NUL 2>NUL
16+
if errorlevel 9009 (
17+
echo.
18+
echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
19+
echo.installed, then set the SPHINXBUILD environment variable to point
20+
echo.to the full path of the 'sphinx-build' executable. Alternatively you
21+
echo.may add the Sphinx directory to PATH.
22+
echo.
23+
echo.If you don't have Sphinx installed, grab it from
24+
echo.http://sphinx-doc.org/
25+
exit /b 1
26+
)
27+
28+
%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
29+
goto end
30+
31+
:help
32+
%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS%
33+
34+
:end
35+
popd
Loading

0 commit comments

Comments
 (0)