├── .clang-format ├── .gitattributes ├── .gitignore ├── .vim-local.vim ├── CMakeLists.txt ├── README.html ├── README.md ├── README_fichiers ├── 687474703a2f2f692e696d6775722e636f6d2f4b637a415a74322e706e67.png ├── 687474703a2f2f692e696d6775722e636f6d2f693568354b36722e706e67.png ├── 687474703a2f2f692e696d6775722e636f6d2f7171797059776a2e706e67.png ├── 687474703a2f2f692e696d6775722e636f6d2f755936787731482e706e67.png ├── github-8850878a3b8c9016a33ac13293f916b8fb6abbc4.css └── github2-229908efb675f645b84ec7f08045d1b0c47612f6.css ├── bin_web ├── index.html ├── loadEmscripten.js ├── run_web_server.sh └── style.css ├── cmake ├── FindAntTweakBar.cmake ├── FindGLEW.cmake ├── FindSFML.cmake ├── Findglfw3.cmake └── Findnoise.cmake ├── data ├── blocksPack.png ├── blocksPackArray.png ├── blocksPackArray.xcf ├── blocksPackArray_1.png ├── blocksPackArray_2.png ├── blocksPackArray_3.png ├── blocksPackArray_4.png └── blocksPackArray_5.png ├── extlibs ├── dll │ ├── AntTweakBar.dll │ ├── libnoise.dll │ ├── sfml-system-2.dll │ └── sfml-system-d-2.dll ├── headers │ ├── AntTweakBar.h │ ├── GL │ │ ├── glew.h │ │ ├── glxew.h │ │ └── wglew.h │ ├── GLFW │ │ ├── glfw3.h │ │ └── glfw3native.h │ ├── SFML │ │ ├── Config.hpp │ │ ├── System.hpp │ │ └── System │ │ │ ├── Clock.hpp │ │ │ ├── Err.hpp │ │ │ ├── Export.hpp │ │ │ ├── InputStream.hpp │ │ │ ├── Lock.hpp │ │ │ ├── Mutex.hpp │ │ │ ├── NonCopyable.hpp │ │ │ ├── Sleep.hpp │ │ │ ├── String.hpp │ │ │ ├── Thread.hpp │ │ │ ├── Thread.inl │ │ │ ├── ThreadLocal.hpp │ │ │ ├── ThreadLocalPtr.hpp │ │ │ ├── ThreadLocalPtr.inl │ │ │ ├── Time.hpp │ │ │ ├── Utf.hpp │ │ │ ├── Utf.inl │ │ │ ├── Vector2.hpp │ │ │ ├── Vector2.inl │ │ │ ├── Vector3.hpp │ │ │ └── Vector3.inl │ ├── glm │ │ ├── common.hpp │ │ ├── detail │ │ │ ├── _features.hpp │ │ │ ├── _fixes.hpp │ │ │ ├── _literals.hpp │ │ │ ├── _noise.hpp │ │ │ ├── _swizzle.hpp │ │ │ ├── _swizzle_func.hpp │ │ │ ├── _vectorize.hpp │ │ │ ├── dummy.cpp │ │ │ ├── func_common.hpp │ │ │ ├── func_common.inl │ │ │ ├── func_exponential.hpp │ │ │ ├── func_exponential.inl │ │ │ ├── func_geometric.hpp │ │ │ ├── func_geometric.inl │ │ │ ├── func_integer.hpp │ │ │ ├── func_integer.inl │ │ │ ├── func_matrix.hpp │ │ │ ├── func_matrix.inl │ │ │ ├── func_noise.hpp │ │ │ ├── func_noise.inl │ │ │ ├── func_packing.hpp │ │ │ ├── func_packing.inl │ │ │ ├── func_trigonometric.hpp │ │ │ ├── func_trigonometric.inl │ │ │ ├── func_vector_relational.hpp │ │ │ ├── func_vector_relational.inl │ │ │ ├── glm.cpp │ │ │ ├── hint.hpp │ │ │ ├── intrinsic_common.hpp │ │ │ ├── intrinsic_common.inl │ │ │ ├── intrinsic_exponential.hpp │ │ │ ├── intrinsic_exponential.inl │ │ │ ├── intrinsic_geometric.hpp │ │ │ ├── intrinsic_geometric.inl │ │ │ ├── intrinsic_integer.hpp │ │ │ ├── intrinsic_integer.inl │ │ │ ├── intrinsic_matrix.hpp │ │ │ ├── intrinsic_matrix.inl │ │ │ ├── intrinsic_trigonometric.hpp │ │ │ ├── intrinsic_trigonometric.inl │ │ │ ├── intrinsic_vector_relational.hpp │ │ │ ├── intrinsic_vector_relational.inl │ │ │ ├── precision.hpp │ │ │ ├── precision.inl │ │ │ ├── setup.hpp │ │ │ ├── type_float.hpp │ │ │ ├── type_gentype.hpp │ │ │ ├── type_gentype.inl │ │ │ ├── type_half.hpp │ │ │ ├── type_half.inl │ │ │ ├── type_int.hpp │ │ │ ├── type_mat.hpp │ │ │ ├── type_mat.inl │ │ │ ├── type_mat2x2.hpp │ │ │ ├── type_mat2x2.inl │ │ │ ├── type_mat2x3.hpp │ │ │ ├── type_mat2x3.inl │ │ │ ├── type_mat2x4.hpp │ │ │ ├── type_mat2x4.inl │ │ │ ├── type_mat3x2.hpp │ │ │ ├── type_mat3x2.inl │ │ │ ├── type_mat3x3.hpp │ │ │ ├── type_mat3x3.inl │ │ │ ├── type_mat3x4.hpp │ │ │ ├── type_mat3x4.inl │ │ │ ├── type_mat4x2.hpp │ │ │ ├── type_mat4x2.inl │ │ │ ├── type_mat4x3.hpp │ │ │ ├── type_mat4x3.inl │ │ │ ├── type_mat4x4.hpp │ │ │ ├── type_mat4x4.inl │ │ │ ├── type_vec.hpp │ │ │ ├── type_vec.inl │ │ │ ├── type_vec1.hpp │ │ │ ├── type_vec1.inl │ │ │ ├── type_vec2.hpp │ │ │ ├── type_vec2.inl │ │ │ ├── type_vec3.hpp │ │ │ ├── type_vec3.inl │ │ │ ├── type_vec4.hpp │ │ │ └── type_vec4.inl │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ │ ├── constants.hpp │ │ │ ├── constants.inl │ │ │ ├── epsilon.hpp │ │ │ ├── epsilon.inl │ │ │ ├── matrix_access.hpp │ │ │ ├── matrix_access.inl │ │ │ ├── matrix_integer.hpp │ │ │ ├── matrix_inverse.hpp │ │ │ ├── matrix_inverse.inl │ │ │ ├── matrix_transform.hpp │ │ │ ├── matrix_transform.inl │ │ │ ├── noise.hpp │ │ │ ├── noise.inl │ │ │ ├── packing.hpp │ │ │ ├── packing.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── random.hpp │ │ │ ├── random.inl │ │ │ ├── reciprocal.hpp │ │ │ ├── reciprocal.inl │ │ │ ├── type_precision.hpp │ │ │ ├── type_precision.inl │ │ │ ├── type_ptr.hpp │ │ │ ├── type_ptr.inl │ │ │ ├── ulp.hpp │ │ │ └── ulp.inl │ │ ├── gtx │ │ │ ├── associated_min_max.hpp │ │ │ ├── associated_min_max.inl │ │ │ ├── bit.hpp │ │ │ ├── bit.inl │ │ │ ├── closest_point.hpp │ │ │ ├── closest_point.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── color_space_YCoCg.hpp │ │ │ ├── color_space_YCoCg.inl │ │ │ ├── compatibility.hpp │ │ │ ├── compatibility.inl │ │ │ ├── component_wise.hpp │ │ │ ├── component_wise.inl │ │ │ ├── constants.hpp │ │ │ ├── dual_quaternion.hpp │ │ │ ├── dual_quaternion.inl │ │ │ ├── epsilon.hpp │ │ │ ├── euler_angles.hpp │ │ │ ├── euler_angles.inl │ │ │ ├── extend.hpp │ │ │ ├── extend.inl │ │ │ ├── extented_min_max.hpp │ │ │ ├── extented_min_max.inl │ │ │ ├── fast_exponential.hpp │ │ │ ├── fast_exponential.inl │ │ │ ├── fast_square_root.hpp │ │ │ ├── fast_square_root.inl │ │ │ ├── fast_trigonometry.hpp │ │ │ ├── fast_trigonometry.inl │ │ │ ├── gradient_paint.hpp │ │ │ ├── gradient_paint.inl │ │ │ ├── handed_coordinate_space.hpp │ │ │ ├── handed_coordinate_space.inl │ │ │ ├── inertia.hpp │ │ │ ├── inertia.inl │ │ │ ├── int_10_10_10_2.hpp │ │ │ ├── int_10_10_10_2.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.inl │ │ │ ├── intersect.hpp │ │ │ ├── intersect.inl │ │ │ ├── io.hpp │ │ │ ├── io.inl │ │ │ ├── log_base.hpp │ │ │ ├── log_base.inl │ │ │ ├── matrix_cross_product.hpp │ │ │ ├── matrix_cross_product.inl │ │ │ ├── matrix_interpolation.hpp │ │ │ ├── matrix_interpolation.inl │ │ │ ├── matrix_major_storage.hpp │ │ │ ├── matrix_major_storage.inl │ │ │ ├── matrix_operation.hpp │ │ │ ├── matrix_operation.inl │ │ │ ├── matrix_query.hpp │ │ │ ├── matrix_query.inl │ │ │ ├── matrix_transform_2d.hpp │ │ │ ├── matrix_transform_2d.inl │ │ │ ├── mixed_product.hpp │ │ │ ├── mixed_product.inl │ │ │ ├── multiple.hpp │ │ │ ├── multiple.inl │ │ │ ├── noise.hpp │ │ │ ├── norm.hpp │ │ │ ├── norm.inl │ │ │ ├── normal.hpp │ │ │ ├── normal.inl │ │ │ ├── normalize_dot.hpp │ │ │ ├── normalize_dot.inl │ │ │ ├── number_precision.hpp │ │ │ ├── number_precision.inl │ │ │ ├── optimum_pow.hpp │ │ │ ├── optimum_pow.inl │ │ │ ├── orthonormalize.hpp │ │ │ ├── orthonormalize.inl │ │ │ ├── perpendicular.hpp │ │ │ ├── perpendicular.inl │ │ │ ├── polar_coordinates.hpp │ │ │ ├── polar_coordinates.inl │ │ │ ├── projection.hpp │ │ │ ├── projection.inl │ │ │ ├── quaternion.hpp │ │ │ ├── quaternion.inl │ │ │ ├── random.hpp │ │ │ ├── raw_data.hpp │ │ │ ├── raw_data.inl │ │ │ ├── reciprocal.hpp │ │ │ ├── rotate_normalized_axis.hpp │ │ │ ├── rotate_normalized_axis.inl │ │ │ ├── rotate_vector.hpp │ │ │ ├── rotate_vector.inl │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── simd_mat4.hpp │ │ │ ├── simd_mat4.inl │ │ │ ├── simd_quat.hpp │ │ │ ├── simd_quat.inl │ │ │ ├── simd_vec4.hpp │ │ │ ├── simd_vec4.inl │ │ │ ├── spline.hpp │ │ │ ├── spline.inl │ │ │ ├── std_based_type.hpp │ │ │ ├── std_based_type.inl │ │ │ ├── string_cast.hpp │ │ │ ├── string_cast.inl │ │ │ ├── transform.hpp │ │ │ ├── transform.inl │ │ │ ├── transform2.hpp │ │ │ ├── transform2.inl │ │ │ ├── ulp.hpp │ │ │ ├── unsigned_int.hpp │ │ │ ├── unsigned_int.inl │ │ │ ├── vec1.hpp │ │ │ ├── vec1.inl │ │ │ ├── vector_angle.hpp │ │ │ ├── vector_angle.inl │ │ │ ├── vector_query.hpp │ │ │ ├── vector_query.inl │ │ │ ├── wrap.hpp │ │ │ └── wrap.inl │ │ ├── integer.hpp │ │ ├── mat2x2.hpp │ │ ├── mat2x3.hpp │ │ ├── mat2x4.hpp │ │ ├── mat3x2.hpp │ │ ├── mat3x3.hpp │ │ ├── mat3x4.hpp │ │ ├── mat4x2.hpp │ │ ├── mat4x3.hpp │ │ ├── mat4x4.hpp │ │ ├── matrix.hpp │ │ ├── packing.hpp │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ ├── vector_relational.hpp │ │ └── virtrev │ │ │ └── xstream.hpp │ └── noise │ │ ├── basictypes.h │ │ ├── exception.h │ │ ├── interp.h │ │ ├── latlon.h │ │ ├── mathconsts.h │ │ ├── misc.h │ │ ├── model │ │ ├── cylinder.h │ │ ├── line.h │ │ ├── model.h │ │ ├── plane.h │ │ └── sphere.h │ │ ├── module │ │ ├── abs.h │ │ ├── add.h │ │ ├── billow.h │ │ ├── blend.h │ │ ├── cache.h │ │ ├── checkerboard.h │ │ ├── clamp.h │ │ ├── const.h │ │ ├── curve.h │ │ ├── cylinders.h │ │ ├── displace.h │ │ ├── exponent.h │ │ ├── invert.h │ │ ├── max.h │ │ ├── min.h │ │ ├── module.h │ │ ├── modulebase.h │ │ ├── multiply.h │ │ ├── perlin.h │ │ ├── power.h │ │ ├── ridgedmulti.h │ │ ├── rotatepoint.h │ │ ├── scalebias.h │ │ ├── scalepoint.h │ │ ├── select.h │ │ ├── spheres.h │ │ ├── terrace.h │ │ ├── translatepoint.h │ │ ├── turbulence.h │ │ └── voronoi.h │ │ ├── noise.h │ │ ├── noisegen.h │ │ └── vectortable.h ├── libs-linux │ ├── libAntTweakBar.a │ ├── libAntTweakBar.so │ ├── libAntTweakBar.so.1 │ ├── libGLEW.a │ ├── libGLEW.so │ ├── libGLEW.so.1.10 │ ├── libGLEW.so.1.10.0 │ ├── libGLEWmx.a │ ├── libGLEWmx.so │ ├── libGLEWmx.so.1.10 │ ├── libGLEWmx.so.1.10.0 │ ├── libglfw3.a │ ├── libnoise.a │ ├── libsfml-system.so │ ├── libsfml-system.so.2 │ └── libsfml-system.so.2.1 ├── libs-osx │ ├── libAntTweakBar.dylib │ ├── libGLEW.a │ ├── libglfw3.a │ ├── libnoise.a │ ├── libnoise.dylib │ ├── libsfml-system.2.1.dylib │ ├── libsfml-system.2.dylib │ └── libsfml-system.dylib └── libs-win32 │ ├── AntTweakBar.lib │ ├── libglfw3.a │ ├── libnoise.a │ ├── libsfml-system-d.a │ ├── libsfml-system-s-d.a │ ├── libsfml-system-s.a │ └── libsfml-system.a ├── osx-fix.sh ├── shader ├── CubeVertex │ ├── CubeVertex.frag │ └── CubeVertex.vert ├── atmosphere │ ├── atmosphere.frag │ └── atmosphere.vert ├── basic │ ├── basic.frag │ └── basic.vert ├── cloud │ ├── cloud.frag │ └── cloud.vert ├── cursor │ ├── cursor.frag │ └── cursor.vert ├── galaxy │ ├── galaxy.frag │ └── galaxy.vert ├── phong │ ├── phong.frag │ └── phong.vert ├── sun │ ├── sun.frag │ ├── sun.vert │ ├── sunGlow.frag │ └── sunGlow.vert └── ui │ ├── player.frag │ └── player.vert ├── src ├── Application.cpp ├── Application.h ├── Chunk.cpp ├── Chunk.h ├── CubeVertex.h ├── MiniWorld.cpp ├── MiniWorld.h ├── Planet.cpp ├── Planet.h ├── PlanetInfo.cpp ├── PlanetInfo.h ├── SolarSystem.cpp ├── SolarSystem.h ├── SpaceObjectTrajectory.cpp ├── SpaceObjectTrajectory.h ├── data │ ├── ChunkCache.cpp │ ├── ChunkCache.h │ ├── Compression.cpp │ ├── Compression.h │ ├── ContentHandler.cpp │ ├── ContentHandler.h │ ├── ContentRequest.cpp │ ├── ContentRequest.h │ ├── Producer.cpp │ ├── Producer.h │ └── SynchronizationQueue.h ├── galaxy │ ├── Galaxy.cpp │ ├── Galaxy.h │ ├── GalaxyGenerator.cpp │ └── GalaxyGenerator.h ├── glew │ └── glew.c ├── main.cpp ├── noise │ ├── CaveGenerator.cpp │ ├── CaveGenerator.h │ ├── PlanetNoiseGenerator.cpp │ ├── PlanetNoiseGenerator.h │ ├── Tree.cpp │ ├── Tree.h │ ├── noiseutils.cpp │ └── noiseutils.h ├── planetGenerator │ ├── PlanetGenerator.cpp │ ├── PlanetGenerator.h │ ├── PlanetGeneratorEarth.cpp │ ├── PlanetGeneratorEarth.h │ ├── PlanetGeneratorMoon.cpp │ └── PlanetGeneratorMoon.h ├── render │ ├── Atmosphere.cpp │ ├── Atmosphere.h │ ├── Camera.cpp │ ├── Camera.h │ ├── CameraManager.cpp │ ├── CameraManager.h │ ├── Cloud.cpp │ ├── Cloud.h │ ├── Cursor.cpp │ ├── Cursor.h │ ├── Shader.cpp │ ├── Shader.h │ ├── Sun.cpp │ ├── Sun.h │ ├── TileTexture.cpp │ ├── TileTexture.h │ └── camera │ │ ├── CameraKeyboard.cpp │ │ ├── CameraKeyboard.h │ │ ├── CameraKeyboardMouse.cpp │ │ ├── CameraKeyboardMouse.h │ │ ├── CameraPlayerGround.cpp │ │ └── CameraPlayerGround.h ├── solarsystem │ ├── SolarSystemGenerator.cpp │ ├── SolarSystemGenerator.h │ ├── SolarSystemGeneratorSol.cpp │ └── SolarSystemGeneratorSol.h ├── ui │ ├── PlayerUI.cpp │ └── PlayerUI.h ├── utils │ ├── Input.cpp │ ├── Input.h │ ├── SimplexNoise.cpp │ ├── SimplexNoise.h │ ├── Singleton.h │ ├── Sphere.cpp │ ├── Sphere.h │ ├── SphereManager.cpp │ ├── SphereManager.h │ ├── TextureManager.cpp │ ├── TextureManager.h │ ├── Tools.cpp │ ├── Tools.h │ ├── TrackerPointer.h │ ├── dbg.h │ ├── gldbg.h │ ├── glm.h │ ├── maths.h │ ├── mt19937.cpp │ ├── mt19937.h │ ├── positionMath.h │ ├── stb_image.cpp │ └── stb_image.h └── world │ ├── BlockType.cpp │ ├── BlockType.h │ ├── blockProcessing.cpp │ └── blockProcessing.h └── worlddata └── 0 ├── 0_7_279136_262528 ├── 0_7_279328_262496 ├── 0_7_279328_262528 ├── 0_7_279360_262496 ├── 0_7_279360_262528 ├── 3_9_164992_264960 ├── 3_9_164992_264992 ├── 3_9_165024_264960 ├── 3_9_165024_264992 ├── 3_9_384000_177792 ├── 3_9_384000_177824 ├── 3_9_384032_177792 ├── 3_9_384032_177824 ├── 4_5_576_1792 └── 5_5_95616_20928 /.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Chromium 2 | Standard: Cpp11 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/.gitignore -------------------------------------------------------------------------------- /.vim-local.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/.vim-local.vim -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/README.md -------------------------------------------------------------------------------- /README_fichiers/687474703a2f2f692e696d6775722e636f6d2f4b637a415a74322e706e67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/README_fichiers/687474703a2f2f692e696d6775722e636f6d2f4b637a415a74322e706e67.png -------------------------------------------------------------------------------- /README_fichiers/687474703a2f2f692e696d6775722e636f6d2f693568354b36722e706e67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/README_fichiers/687474703a2f2f692e696d6775722e636f6d2f693568354b36722e706e67.png -------------------------------------------------------------------------------- /README_fichiers/687474703a2f2f692e696d6775722e636f6d2f7171797059776a2e706e67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/README_fichiers/687474703a2f2f692e696d6775722e636f6d2f7171797059776a2e706e67.png -------------------------------------------------------------------------------- /README_fichiers/687474703a2f2f692e696d6775722e636f6d2f755936787731482e706e67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/README_fichiers/687474703a2f2f692e696d6775722e636f6d2f755936787731482e706e67.png -------------------------------------------------------------------------------- /README_fichiers/github-8850878a3b8c9016a33ac13293f916b8fb6abbc4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/README_fichiers/github-8850878a3b8c9016a33ac13293f916b8fb6abbc4.css -------------------------------------------------------------------------------- /README_fichiers/github2-229908efb675f645b84ec7f08045d1b0c47612f6.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/README_fichiers/github2-229908efb675f645b84ec7f08045d1b0c47612f6.css -------------------------------------------------------------------------------- /bin_web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/bin_web/index.html -------------------------------------------------------------------------------- /bin_web/loadEmscripten.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/bin_web/loadEmscripten.js -------------------------------------------------------------------------------- /bin_web/run_web_server.sh: -------------------------------------------------------------------------------- 1 | #! /bin/bash 2 | python -m SimpleHTTPServer 8080 3 | 4 | -------------------------------------------------------------------------------- /bin_web/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/bin_web/style.css -------------------------------------------------------------------------------- /cmake/FindAntTweakBar.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/cmake/FindAntTweakBar.cmake -------------------------------------------------------------------------------- /cmake/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/cmake/FindGLEW.cmake -------------------------------------------------------------------------------- /cmake/FindSFML.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/cmake/FindSFML.cmake -------------------------------------------------------------------------------- /cmake/Findglfw3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/cmake/Findglfw3.cmake -------------------------------------------------------------------------------- /cmake/Findnoise.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/cmake/Findnoise.cmake -------------------------------------------------------------------------------- /data/blocksPack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/data/blocksPack.png -------------------------------------------------------------------------------- /data/blocksPackArray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/data/blocksPackArray.png -------------------------------------------------------------------------------- /data/blocksPackArray.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/data/blocksPackArray.xcf -------------------------------------------------------------------------------- /data/blocksPackArray_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/data/blocksPackArray_1.png -------------------------------------------------------------------------------- /data/blocksPackArray_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/data/blocksPackArray_2.png -------------------------------------------------------------------------------- /data/blocksPackArray_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/data/blocksPackArray_3.png -------------------------------------------------------------------------------- /data/blocksPackArray_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/data/blocksPackArray_4.png -------------------------------------------------------------------------------- /data/blocksPackArray_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/data/blocksPackArray_5.png -------------------------------------------------------------------------------- /extlibs/dll/AntTweakBar.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/dll/AntTweakBar.dll -------------------------------------------------------------------------------- /extlibs/dll/libnoise.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/dll/libnoise.dll -------------------------------------------------------------------------------- /extlibs/dll/sfml-system-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/dll/sfml-system-2.dll -------------------------------------------------------------------------------- /extlibs/dll/sfml-system-d-2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/dll/sfml-system-d-2.dll -------------------------------------------------------------------------------- /extlibs/headers/AntTweakBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/AntTweakBar.h -------------------------------------------------------------------------------- /extlibs/headers/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/GL/glew.h -------------------------------------------------------------------------------- /extlibs/headers/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/GL/glxew.h -------------------------------------------------------------------------------- /extlibs/headers/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/GL/wglew.h -------------------------------------------------------------------------------- /extlibs/headers/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/GLFW/glfw3.h -------------------------------------------------------------------------------- /extlibs/headers/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/GLFW/glfw3native.h -------------------------------------------------------------------------------- /extlibs/headers/SFML/Config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/Config.hpp -------------------------------------------------------------------------------- /extlibs/headers/SFML/System.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System.hpp -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/Clock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/Clock.hpp -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/Err.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/Err.hpp -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/Export.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/Export.hpp -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/InputStream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/InputStream.hpp -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/Lock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/Lock.hpp -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/Mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/Mutex.hpp -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/NonCopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/NonCopyable.hpp -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/Sleep.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/Sleep.hpp -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/String.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/String.hpp -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/Thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/Thread.hpp -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/Thread.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/Thread.inl -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/ThreadLocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/ThreadLocal.hpp -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/ThreadLocalPtr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/ThreadLocalPtr.hpp -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/ThreadLocalPtr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/ThreadLocalPtr.inl -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/Time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/Time.hpp -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/Utf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/Utf.hpp -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/Utf.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/Utf.inl -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/Vector2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/Vector2.hpp -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/Vector2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/Vector2.inl -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/Vector3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/Vector3.hpp -------------------------------------------------------------------------------- /extlibs/headers/SFML/System/Vector3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/SFML/System/Vector3.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/common.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/_features.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/_fixes.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/_literals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/_literals.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/_noise.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/_swizzle.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/_vectorize.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/dummy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/dummy.cpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/func_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/func_common.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/func_common.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/func_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/func_exponential.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/func_exponential.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/func_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/func_geometric.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/func_geometric.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/func_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/func_integer.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/func_integer.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/func_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/func_matrix.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/func_matrix.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/func_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/func_noise.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/func_noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/func_noise.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/func_packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/func_packing.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/func_packing.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/func_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/func_trigonometric.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/func_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/func_vector_relational.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/glm.cpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/hint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/hint.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/intrinsic_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/intrinsic_common.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/intrinsic_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/intrinsic_common.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/intrinsic_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/intrinsic_exponential.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/intrinsic_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/intrinsic_exponential.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/intrinsic_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/intrinsic_geometric.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/intrinsic_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/intrinsic_geometric.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/intrinsic_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/intrinsic_integer.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/intrinsic_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/intrinsic_integer.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/intrinsic_matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/intrinsic_matrix.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/intrinsic_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/intrinsic_matrix.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/intrinsic_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/intrinsic_trigonometric.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/intrinsic_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/intrinsic_trigonometric.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/intrinsic_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/intrinsic_vector_relational.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/intrinsic_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/intrinsic_vector_relational.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/precision.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/precision.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/setup.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_float.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_gentype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_gentype.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_gentype.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_gentype.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_half.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_half.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_int.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_vec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_vec.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_vec.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_vec.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_vec1.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_vec1.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_vec2.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_vec2.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_vec3.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_vec3.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_vec4.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/detail/type_vec4.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/exponential.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/ext.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/fwd.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/geometric.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/glm.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/constants.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/constants.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/epsilon.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/epsilon.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/matrix_access.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/noise.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/noise.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/packing.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/packing.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/quaternion.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/quaternion.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/random.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/random.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/reciprocal.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/type_precision.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/type_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/type_precision.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/type_ptr.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/ulp.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtc/ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtc/ulp.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/bit.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/bit.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/closest_point.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/closest_point.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/color_space.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/color_space.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/compatibility.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/compatibility.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/component_wise.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/component_wise.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/constants.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/epsilon.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/euler_angles.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/extend.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/extend.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/extented_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/extented_min_max.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/extented_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/extented_min_max.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/inertia.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/inertia.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/inertia.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/inertia.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/int_10_10_10_2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/int_10_10_10_2.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/int_10_10_10_2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/int_10_10_10_2.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/integer.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/integer.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/intersect.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/intersect.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/io.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/io.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/log_base.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/log_base.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/matrix_query.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/mixed_product.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/multiple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/multiple.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/multiple.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/multiple.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/noise.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/norm.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/norm.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/normal.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/normal.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/number_precision.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/number_precision.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/number_precision.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/perpendicular.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/projection.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/projection.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/quaternion.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/quaternion.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/random.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/raw_data.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/raw_data.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/raw_data.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/reciprocal.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/simd_mat4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/simd_mat4.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/simd_mat4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/simd_mat4.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/simd_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/simd_quat.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/simd_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/simd_quat.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/simd_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/simd_vec4.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/simd_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/simd_vec4.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/spline.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/spline.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/std_based_type.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/std_based_type.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/string_cast.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/string_cast.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/transform.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/transform.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/transform2.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/transform2.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/ulp.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/unsigned_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/unsigned_int.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/unsigned_int.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/unsigned_int.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/vec1.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/vec1.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/vector_angle.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/vector_query.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/vector_query.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/wrap.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/gtx/wrap.inl -------------------------------------------------------------------------------- /extlibs/headers/glm/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/integer.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/mat2x2.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/mat2x3.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/mat2x4.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/mat3x2.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/mat3x3.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/mat3x4.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/mat4x2.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/mat4x3.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/mat4x4.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/matrix.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/packing.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/trigonometric.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/vec2.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/vec3.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/vec4.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/vector_relational.hpp -------------------------------------------------------------------------------- /extlibs/headers/glm/virtrev/xstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/glm/virtrev/xstream.hpp -------------------------------------------------------------------------------- /extlibs/headers/noise/basictypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/basictypes.h -------------------------------------------------------------------------------- /extlibs/headers/noise/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/exception.h -------------------------------------------------------------------------------- /extlibs/headers/noise/interp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/interp.h -------------------------------------------------------------------------------- /extlibs/headers/noise/latlon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/latlon.h -------------------------------------------------------------------------------- /extlibs/headers/noise/mathconsts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/mathconsts.h -------------------------------------------------------------------------------- /extlibs/headers/noise/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/misc.h -------------------------------------------------------------------------------- /extlibs/headers/noise/model/cylinder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/model/cylinder.h -------------------------------------------------------------------------------- /extlibs/headers/noise/model/line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/model/line.h -------------------------------------------------------------------------------- /extlibs/headers/noise/model/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/model/model.h -------------------------------------------------------------------------------- /extlibs/headers/noise/model/plane.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/model/plane.h -------------------------------------------------------------------------------- /extlibs/headers/noise/model/sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/model/sphere.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/abs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/abs.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/add.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/add.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/billow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/billow.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/blend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/blend.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/cache.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/checkerboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/checkerboard.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/clamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/clamp.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/const.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/curve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/curve.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/cylinders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/cylinders.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/displace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/displace.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/exponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/exponent.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/invert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/invert.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/max.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/max.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/min.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/min.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/module.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/modulebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/modulebase.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/multiply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/multiply.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/perlin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/perlin.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/power.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/ridgedmulti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/ridgedmulti.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/rotatepoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/rotatepoint.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/scalebias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/scalebias.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/scalepoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/scalepoint.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/select.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/spheres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/spheres.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/terrace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/terrace.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/translatepoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/translatepoint.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/turbulence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/turbulence.h -------------------------------------------------------------------------------- /extlibs/headers/noise/module/voronoi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/module/voronoi.h -------------------------------------------------------------------------------- /extlibs/headers/noise/noise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/noise.h -------------------------------------------------------------------------------- /extlibs/headers/noise/noisegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/noisegen.h -------------------------------------------------------------------------------- /extlibs/headers/noise/vectortable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/headers/noise/vectortable.h -------------------------------------------------------------------------------- /extlibs/libs-linux/libAntTweakBar.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-linux/libAntTweakBar.a -------------------------------------------------------------------------------- /extlibs/libs-linux/libAntTweakBar.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-linux/libAntTweakBar.so -------------------------------------------------------------------------------- /extlibs/libs-linux/libAntTweakBar.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-linux/libAntTweakBar.so.1 -------------------------------------------------------------------------------- /extlibs/libs-linux/libGLEW.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-linux/libGLEW.a -------------------------------------------------------------------------------- /extlibs/libs-linux/libGLEW.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-linux/libGLEW.so -------------------------------------------------------------------------------- /extlibs/libs-linux/libGLEW.so.1.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-linux/libGLEW.so.1.10 -------------------------------------------------------------------------------- /extlibs/libs-linux/libGLEW.so.1.10.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-linux/libGLEW.so.1.10.0 -------------------------------------------------------------------------------- /extlibs/libs-linux/libGLEWmx.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-linux/libGLEWmx.a -------------------------------------------------------------------------------- /extlibs/libs-linux/libGLEWmx.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-linux/libGLEWmx.so -------------------------------------------------------------------------------- /extlibs/libs-linux/libGLEWmx.so.1.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-linux/libGLEWmx.so.1.10 -------------------------------------------------------------------------------- /extlibs/libs-linux/libGLEWmx.so.1.10.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-linux/libGLEWmx.so.1.10.0 -------------------------------------------------------------------------------- /extlibs/libs-linux/libglfw3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-linux/libglfw3.a -------------------------------------------------------------------------------- /extlibs/libs-linux/libnoise.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-linux/libnoise.a -------------------------------------------------------------------------------- /extlibs/libs-linux/libsfml-system.so: -------------------------------------------------------------------------------- 1 | libsfml-system.so.2 -------------------------------------------------------------------------------- /extlibs/libs-linux/libsfml-system.so.2: -------------------------------------------------------------------------------- 1 | libsfml-system.so.2.1 -------------------------------------------------------------------------------- /extlibs/libs-linux/libsfml-system.so.2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-linux/libsfml-system.so.2.1 -------------------------------------------------------------------------------- /extlibs/libs-osx/libAntTweakBar.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-osx/libAntTweakBar.dylib -------------------------------------------------------------------------------- /extlibs/libs-osx/libGLEW.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-osx/libGLEW.a -------------------------------------------------------------------------------- /extlibs/libs-osx/libglfw3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-osx/libglfw3.a -------------------------------------------------------------------------------- /extlibs/libs-osx/libnoise.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-osx/libnoise.a -------------------------------------------------------------------------------- /extlibs/libs-osx/libnoise.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-osx/libnoise.dylib -------------------------------------------------------------------------------- /extlibs/libs-osx/libsfml-system.2.1.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-osx/libsfml-system.2.1.dylib -------------------------------------------------------------------------------- /extlibs/libs-osx/libsfml-system.2.dylib: -------------------------------------------------------------------------------- 1 | libsfml-system.2.1.dylib -------------------------------------------------------------------------------- /extlibs/libs-osx/libsfml-system.dylib: -------------------------------------------------------------------------------- 1 | libsfml-system.2.dylib -------------------------------------------------------------------------------- /extlibs/libs-win32/AntTweakBar.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-win32/AntTweakBar.lib -------------------------------------------------------------------------------- /extlibs/libs-win32/libglfw3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-win32/libglfw3.a -------------------------------------------------------------------------------- /extlibs/libs-win32/libnoise.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-win32/libnoise.a -------------------------------------------------------------------------------- /extlibs/libs-win32/libsfml-system-d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-win32/libsfml-system-d.a -------------------------------------------------------------------------------- /extlibs/libs-win32/libsfml-system-s-d.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-win32/libsfml-system-s-d.a -------------------------------------------------------------------------------- /extlibs/libs-win32/libsfml-system-s.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-win32/libsfml-system-s.a -------------------------------------------------------------------------------- /extlibs/libs-win32/libsfml-system.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/extlibs/libs-win32/libsfml-system.a -------------------------------------------------------------------------------- /osx-fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/osx-fix.sh -------------------------------------------------------------------------------- /shader/CubeVertex/CubeVertex.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/CubeVertex/CubeVertex.frag -------------------------------------------------------------------------------- /shader/CubeVertex/CubeVertex.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/CubeVertex/CubeVertex.vert -------------------------------------------------------------------------------- /shader/atmosphere/atmosphere.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/atmosphere/atmosphere.frag -------------------------------------------------------------------------------- /shader/atmosphere/atmosphere.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/atmosphere/atmosphere.vert -------------------------------------------------------------------------------- /shader/basic/basic.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/basic/basic.frag -------------------------------------------------------------------------------- /shader/basic/basic.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/basic/basic.vert -------------------------------------------------------------------------------- /shader/cloud/cloud.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/cloud/cloud.frag -------------------------------------------------------------------------------- /shader/cloud/cloud.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/cloud/cloud.vert -------------------------------------------------------------------------------- /shader/cursor/cursor.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/cursor/cursor.frag -------------------------------------------------------------------------------- /shader/cursor/cursor.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/cursor/cursor.vert -------------------------------------------------------------------------------- /shader/galaxy/galaxy.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/galaxy/galaxy.frag -------------------------------------------------------------------------------- /shader/galaxy/galaxy.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/galaxy/galaxy.vert -------------------------------------------------------------------------------- /shader/phong/phong.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/phong/phong.frag -------------------------------------------------------------------------------- /shader/phong/phong.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/phong/phong.vert -------------------------------------------------------------------------------- /shader/sun/sun.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/sun/sun.frag -------------------------------------------------------------------------------- /shader/sun/sun.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/sun/sun.vert -------------------------------------------------------------------------------- /shader/sun/sunGlow.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/sun/sunGlow.frag -------------------------------------------------------------------------------- /shader/sun/sunGlow.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/sun/sunGlow.vert -------------------------------------------------------------------------------- /shader/ui/player.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/ui/player.frag -------------------------------------------------------------------------------- /shader/ui/player.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/shader/ui/player.vert -------------------------------------------------------------------------------- /src/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/Application.cpp -------------------------------------------------------------------------------- /src/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/Application.h -------------------------------------------------------------------------------- /src/Chunk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/Chunk.cpp -------------------------------------------------------------------------------- /src/Chunk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/Chunk.h -------------------------------------------------------------------------------- /src/CubeVertex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/CubeVertex.h -------------------------------------------------------------------------------- /src/MiniWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/MiniWorld.cpp -------------------------------------------------------------------------------- /src/MiniWorld.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/MiniWorld.h -------------------------------------------------------------------------------- /src/Planet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/Planet.cpp -------------------------------------------------------------------------------- /src/Planet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/Planet.h -------------------------------------------------------------------------------- /src/PlanetInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/PlanetInfo.cpp -------------------------------------------------------------------------------- /src/PlanetInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/PlanetInfo.h -------------------------------------------------------------------------------- /src/SolarSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/SolarSystem.cpp -------------------------------------------------------------------------------- /src/SolarSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/SolarSystem.h -------------------------------------------------------------------------------- /src/SpaceObjectTrajectory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/SpaceObjectTrajectory.cpp -------------------------------------------------------------------------------- /src/SpaceObjectTrajectory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/SpaceObjectTrajectory.h -------------------------------------------------------------------------------- /src/data/ChunkCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/data/ChunkCache.cpp -------------------------------------------------------------------------------- /src/data/ChunkCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/data/ChunkCache.h -------------------------------------------------------------------------------- /src/data/Compression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/data/Compression.cpp -------------------------------------------------------------------------------- /src/data/Compression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/data/Compression.h -------------------------------------------------------------------------------- /src/data/ContentHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/data/ContentHandler.cpp -------------------------------------------------------------------------------- /src/data/ContentHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/data/ContentHandler.h -------------------------------------------------------------------------------- /src/data/ContentRequest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/data/ContentRequest.cpp -------------------------------------------------------------------------------- /src/data/ContentRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/data/ContentRequest.h -------------------------------------------------------------------------------- /src/data/Producer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/data/Producer.cpp -------------------------------------------------------------------------------- /src/data/Producer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/data/Producer.h -------------------------------------------------------------------------------- /src/data/SynchronizationQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/data/SynchronizationQueue.h -------------------------------------------------------------------------------- /src/galaxy/Galaxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/galaxy/Galaxy.cpp -------------------------------------------------------------------------------- /src/galaxy/Galaxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/galaxy/Galaxy.h -------------------------------------------------------------------------------- /src/galaxy/GalaxyGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/galaxy/GalaxyGenerator.cpp -------------------------------------------------------------------------------- /src/galaxy/GalaxyGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/galaxy/GalaxyGenerator.h -------------------------------------------------------------------------------- /src/glew/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/glew/glew.c -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/noise/CaveGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/noise/CaveGenerator.cpp -------------------------------------------------------------------------------- /src/noise/CaveGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/noise/CaveGenerator.h -------------------------------------------------------------------------------- /src/noise/PlanetNoiseGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/noise/PlanetNoiseGenerator.cpp -------------------------------------------------------------------------------- /src/noise/PlanetNoiseGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/noise/PlanetNoiseGenerator.h -------------------------------------------------------------------------------- /src/noise/Tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/noise/Tree.cpp -------------------------------------------------------------------------------- /src/noise/Tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/noise/Tree.h -------------------------------------------------------------------------------- /src/noise/noiseutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/noise/noiseutils.cpp -------------------------------------------------------------------------------- /src/noise/noiseutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/noise/noiseutils.h -------------------------------------------------------------------------------- /src/planetGenerator/PlanetGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/planetGenerator/PlanetGenerator.cpp -------------------------------------------------------------------------------- /src/planetGenerator/PlanetGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/planetGenerator/PlanetGenerator.h -------------------------------------------------------------------------------- /src/planetGenerator/PlanetGeneratorEarth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/planetGenerator/PlanetGeneratorEarth.cpp -------------------------------------------------------------------------------- /src/planetGenerator/PlanetGeneratorEarth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/planetGenerator/PlanetGeneratorEarth.h -------------------------------------------------------------------------------- /src/planetGenerator/PlanetGeneratorMoon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/planetGenerator/PlanetGeneratorMoon.cpp -------------------------------------------------------------------------------- /src/planetGenerator/PlanetGeneratorMoon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/planetGenerator/PlanetGeneratorMoon.h -------------------------------------------------------------------------------- /src/render/Atmosphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/Atmosphere.cpp -------------------------------------------------------------------------------- /src/render/Atmosphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/Atmosphere.h -------------------------------------------------------------------------------- /src/render/Camera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/Camera.cpp -------------------------------------------------------------------------------- /src/render/Camera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/Camera.h -------------------------------------------------------------------------------- /src/render/CameraManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/CameraManager.cpp -------------------------------------------------------------------------------- /src/render/CameraManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/CameraManager.h -------------------------------------------------------------------------------- /src/render/Cloud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/Cloud.cpp -------------------------------------------------------------------------------- /src/render/Cloud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/Cloud.h -------------------------------------------------------------------------------- /src/render/Cursor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/Cursor.cpp -------------------------------------------------------------------------------- /src/render/Cursor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/Cursor.h -------------------------------------------------------------------------------- /src/render/Shader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/Shader.cpp -------------------------------------------------------------------------------- /src/render/Shader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/Shader.h -------------------------------------------------------------------------------- /src/render/Sun.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/Sun.cpp -------------------------------------------------------------------------------- /src/render/Sun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/Sun.h -------------------------------------------------------------------------------- /src/render/TileTexture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/TileTexture.cpp -------------------------------------------------------------------------------- /src/render/TileTexture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/TileTexture.h -------------------------------------------------------------------------------- /src/render/camera/CameraKeyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/camera/CameraKeyboard.cpp -------------------------------------------------------------------------------- /src/render/camera/CameraKeyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/camera/CameraKeyboard.h -------------------------------------------------------------------------------- /src/render/camera/CameraKeyboardMouse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/camera/CameraKeyboardMouse.cpp -------------------------------------------------------------------------------- /src/render/camera/CameraKeyboardMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/camera/CameraKeyboardMouse.h -------------------------------------------------------------------------------- /src/render/camera/CameraPlayerGround.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/camera/CameraPlayerGround.cpp -------------------------------------------------------------------------------- /src/render/camera/CameraPlayerGround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/render/camera/CameraPlayerGround.h -------------------------------------------------------------------------------- /src/solarsystem/SolarSystemGenerator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/solarsystem/SolarSystemGenerator.cpp -------------------------------------------------------------------------------- /src/solarsystem/SolarSystemGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/solarsystem/SolarSystemGenerator.h -------------------------------------------------------------------------------- /src/solarsystem/SolarSystemGeneratorSol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/solarsystem/SolarSystemGeneratorSol.cpp -------------------------------------------------------------------------------- /src/solarsystem/SolarSystemGeneratorSol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/solarsystem/SolarSystemGeneratorSol.h -------------------------------------------------------------------------------- /src/ui/PlayerUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/ui/PlayerUI.cpp -------------------------------------------------------------------------------- /src/ui/PlayerUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/ui/PlayerUI.h -------------------------------------------------------------------------------- /src/utils/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/Input.cpp -------------------------------------------------------------------------------- /src/utils/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/Input.h -------------------------------------------------------------------------------- /src/utils/SimplexNoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/SimplexNoise.cpp -------------------------------------------------------------------------------- /src/utils/SimplexNoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/SimplexNoise.h -------------------------------------------------------------------------------- /src/utils/Singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/Singleton.h -------------------------------------------------------------------------------- /src/utils/Sphere.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/Sphere.cpp -------------------------------------------------------------------------------- /src/utils/Sphere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/Sphere.h -------------------------------------------------------------------------------- /src/utils/SphereManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/SphereManager.cpp -------------------------------------------------------------------------------- /src/utils/SphereManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/SphereManager.h -------------------------------------------------------------------------------- /src/utils/TextureManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/TextureManager.cpp -------------------------------------------------------------------------------- /src/utils/TextureManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/TextureManager.h -------------------------------------------------------------------------------- /src/utils/Tools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/Tools.cpp -------------------------------------------------------------------------------- /src/utils/Tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/Tools.h -------------------------------------------------------------------------------- /src/utils/TrackerPointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/TrackerPointer.h -------------------------------------------------------------------------------- /src/utils/dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/dbg.h -------------------------------------------------------------------------------- /src/utils/gldbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/gldbg.h -------------------------------------------------------------------------------- /src/utils/glm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/glm.h -------------------------------------------------------------------------------- /src/utils/maths.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/maths.h -------------------------------------------------------------------------------- /src/utils/mt19937.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/mt19937.cpp -------------------------------------------------------------------------------- /src/utils/mt19937.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/mt19937.h -------------------------------------------------------------------------------- /src/utils/positionMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/positionMath.h -------------------------------------------------------------------------------- /src/utils/stb_image.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/stb_image.cpp -------------------------------------------------------------------------------- /src/utils/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/utils/stb_image.h -------------------------------------------------------------------------------- /src/world/BlockType.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/world/BlockType.cpp -------------------------------------------------------------------------------- /src/world/BlockType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/world/BlockType.h -------------------------------------------------------------------------------- /src/world/blockProcessing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/world/blockProcessing.cpp -------------------------------------------------------------------------------- /src/world/blockProcessing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/src/world/blockProcessing.h -------------------------------------------------------------------------------- /worlddata/0/0_7_279136_262528: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/worlddata/0/0_7_279136_262528 -------------------------------------------------------------------------------- /worlddata/0/0_7_279328_262496: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/worlddata/0/0_7_279328_262496 -------------------------------------------------------------------------------- /worlddata/0/0_7_279328_262528: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/worlddata/0/0_7_279328_262528 -------------------------------------------------------------------------------- /worlddata/0/0_7_279360_262496: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/worlddata/0/0_7_279360_262496 -------------------------------------------------------------------------------- /worlddata/0/0_7_279360_262528: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/worlddata/0/0_7_279360_262528 -------------------------------------------------------------------------------- /worlddata/0/3_9_164992_264960: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/worlddata/0/3_9_164992_264960 -------------------------------------------------------------------------------- /worlddata/0/3_9_164992_264992: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/worlddata/0/3_9_164992_264992 -------------------------------------------------------------------------------- /worlddata/0/3_9_165024_264960: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/worlddata/0/3_9_165024_264960 -------------------------------------------------------------------------------- /worlddata/0/3_9_165024_264992: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/worlddata/0/3_9_165024_264992 -------------------------------------------------------------------------------- /worlddata/0/3_9_384000_177792: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/worlddata/0/3_9_384000_177792 -------------------------------------------------------------------------------- /worlddata/0/3_9_384000_177824: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/worlddata/0/3_9_384000_177824 -------------------------------------------------------------------------------- /worlddata/0/3_9_384032_177792: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/worlddata/0/3_9_384032_177792 -------------------------------------------------------------------------------- /worlddata/0/3_9_384032_177824: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/worlddata/0/3_9_384032_177824 -------------------------------------------------------------------------------- /worlddata/0/4_5_576_1792: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/worlddata/0/4_5_576_1792 -------------------------------------------------------------------------------- /worlddata/0/5_5_95616_20928: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/smealum/SPACECRAFT/HEAD/worlddata/0/5_5_95616_20928 --------------------------------------------------------------------------------