├── .gitignore ├── CMakeLists.txt ├── CMakeSettings.json ├── Docs ├── how_to_handle_visual_studio.md └── pngs │ ├── screenShots │ └── show_1.png │ ├── use │ ├── cmake_1.png │ └── src_folder.png │ └── win10 │ ├── 000.png │ ├── 001.png │ ├── 002.png │ ├── 003.png │ ├── 004.png │ ├── 005.png │ ├── 006.png │ ├── 009.png │ └── clang_and_cmke_check.png ├── LICENSE ├── README.md ├── deps ├── fmt-6.1.2 │ ├── .clang-format │ ├── .travis.yml │ ├── CMakeLists.txt │ ├── CONTRIBUTING.md │ ├── ChangeLog.rst │ ├── LICENSE.rst │ ├── README.rst │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── _static │ │ │ ├── bootstrap.min.js │ │ │ └── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ └── glyphicons-halflings-regular.woff │ │ ├── _templates │ │ │ ├── layout.html │ │ │ └── search.html │ │ ├── api.rst │ │ ├── basic-bootstrap │ │ │ ├── README │ │ │ ├── layout.html │ │ │ └── theme.conf │ │ ├── bootstrap │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── build.py │ │ ├── conf.py │ │ ├── contents.rst │ │ ├── fmt.less │ │ ├── html │ │ │ ├── _sources │ │ │ │ ├── api.txt │ │ │ │ ├── contents.txt │ │ │ │ ├── index.txt │ │ │ │ ├── syntax.txt │ │ │ │ └── usage.txt │ │ │ ├── _static │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── basic.css │ │ │ │ ├── bootstrap.min.js │ │ │ │ ├── comment-bright.png │ │ │ │ ├── comment-close.png │ │ │ │ ├── comment.png │ │ │ │ ├── doctools.js │ │ │ │ ├── down-pressed.png │ │ │ │ ├── down.png │ │ │ │ ├── file.png │ │ │ │ ├── fmt.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ ├── jquery-1.11.1.js │ │ │ │ ├── jquery.js │ │ │ │ ├── minus.png │ │ │ │ ├── plus.png │ │ │ │ ├── pygments.css │ │ │ │ ├── searchtools.js │ │ │ │ ├── underscore-1.3.1.js │ │ │ │ ├── underscore.js │ │ │ │ ├── up-pressed.png │ │ │ │ ├── up.png │ │ │ │ └── websupport.js │ │ │ ├── api.html │ │ │ ├── contents.html │ │ │ ├── genindex.html │ │ │ ├── index.html │ │ │ ├── objects.inv │ │ │ ├── search.html │ │ │ ├── searchindex.js │ │ │ ├── syntax.html │ │ │ └── usage.html │ │ ├── index.rst │ │ ├── python-license.txt │ │ ├── syntax.rst │ │ └── usage.rst │ ├── include │ │ └── fmt │ │ │ ├── chrono.h │ │ │ ├── color.h │ │ │ ├── compile.h │ │ │ ├── core.h │ │ │ ├── format-inl.h │ │ │ ├── format.h │ │ │ ├── locale.h │ │ │ ├── ostream.h │ │ │ ├── posix.h │ │ │ ├── printf.h │ │ │ └── ranges.h │ ├── src │ │ ├── format.cc │ │ └── posix.cc │ ├── support │ │ ├── Android.mk │ │ ├── AndroidManifest.xml │ │ ├── C++.sublime-syntax │ │ ├── README │ │ ├── Vagrantfile │ │ ├── appveyor-build.py │ │ ├── appveyor.yml │ │ ├── build.gradle │ │ ├── cmake │ │ │ ├── FindSetEnv.cmake │ │ │ ├── cxx14.cmake │ │ │ ├── fmt-config.cmake.in │ │ │ └── fmt.pc.in │ │ ├── compute-powers.py │ │ ├── docopt.py │ │ ├── fmt.pro │ │ ├── manage.py │ │ ├── rst2md.py │ │ ├── rtd │ │ │ ├── conf.py │ │ │ ├── index.rst │ │ │ └── theme │ │ │ │ ├── layout.html │ │ │ │ └── theme.conf │ │ ├── travis-build.py │ │ └── update-coverity-branch.py │ └── test │ │ ├── CMakeLists.txt │ │ ├── add-subdirectory-test │ │ ├── CMakeLists.txt │ │ └── main.cc │ │ ├── assert-test.cc │ │ ├── chrono-test.cc │ │ ├── color-test.cc │ │ ├── compile-error-test │ │ └── CMakeLists.txt │ │ ├── compile-test.cc │ │ ├── core-test.cc │ │ ├── cuda-test │ │ ├── CMakeLists.txt │ │ ├── cpp14.cc │ │ └── cuda-cpp14.cu │ │ ├── custom-formatter-test.cc │ │ ├── find-package-test │ │ ├── CMakeLists.txt │ │ └── main.cc │ │ ├── format │ │ ├── format-impl-test.cc │ │ ├── format-test.cc │ │ ├── fuzzing │ │ ├── CMakeLists.txt │ │ ├── README.md │ │ ├── build.sh │ │ ├── chrono_duration.cpp │ │ ├── fuzzer_common.h │ │ ├── main.cpp │ │ ├── named_arg.cpp │ │ ├── one_arg.cpp │ │ ├── sprintf.cpp │ │ └── two_args.cpp │ │ ├── gmock-gtest-all.cc │ │ ├── gmock │ │ └── gmock.h │ │ ├── grisu-test.cc │ │ ├── gtest-extra-test.cc │ │ ├── gtest-extra.cc │ │ ├── gtest-extra.h │ │ ├── gtest │ │ ├── gtest-spi.h │ │ └── gtest.h │ │ ├── header-only-test.cc │ │ ├── header-only-test2.cc │ │ ├── locale-test.cc │ │ ├── mock-allocator.h │ │ ├── ostream-test.cc │ │ ├── posix-mock-test.cc │ │ ├── posix-mock.h │ │ ├── posix-test.cc │ │ ├── printf-test.cc │ │ ├── ranges-test.cc │ │ ├── scan-test.cc │ │ ├── scan.h │ │ ├── std-format-test.cc │ │ ├── test-assert.h │ │ ├── test-main.cc │ │ ├── util.cc │ │ └── util.h ├── glm.9.9.5 │ ├── glm_inn │ │ ├── CMakeLists.txt │ │ ├── common.hpp │ │ ├── detail │ │ │ ├── _features.hpp │ │ │ ├── _fixes.hpp │ │ │ ├── _noise.hpp │ │ │ ├── _swizzle.hpp │ │ │ ├── _swizzle_func.hpp │ │ │ ├── _vectorize.hpp │ │ │ ├── compute_common.hpp │ │ │ ├── compute_vector_relational.hpp │ │ │ ├── func_common.inl │ │ │ ├── func_common_simd.inl │ │ │ ├── func_exponential.inl │ │ │ ├── func_exponential_simd.inl │ │ │ ├── func_geometric.inl │ │ │ ├── func_geometric_simd.inl │ │ │ ├── func_integer.inl │ │ │ ├── func_integer_simd.inl │ │ │ ├── func_matrix.inl │ │ │ ├── func_matrix_simd.inl │ │ │ ├── func_packing.inl │ │ │ ├── func_packing_simd.inl │ │ │ ├── func_trigonometric.inl │ │ │ ├── func_trigonometric_simd.inl │ │ │ ├── func_vector_relational.inl │ │ │ ├── func_vector_relational_simd.inl │ │ │ ├── glm.cpp │ │ │ ├── qualifier.hpp │ │ │ ├── setup.hpp │ │ │ ├── type_float.hpp │ │ │ ├── type_half.hpp │ │ │ ├── type_half.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_mat4x4_simd.inl │ │ │ ├── type_quat.hpp │ │ │ ├── type_quat.inl │ │ │ ├── type_quat_simd.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 │ │ │ └── type_vec4_simd.inl │ │ ├── exponential.hpp │ │ ├── ext.hpp │ │ ├── ext │ │ │ ├── matrix_clip_space.hpp │ │ │ ├── matrix_clip_space.inl │ │ │ ├── matrix_common.hpp │ │ │ ├── matrix_common.inl │ │ │ ├── matrix_double2x2.hpp │ │ │ ├── matrix_double2x2_precision.hpp │ │ │ ├── matrix_double2x3.hpp │ │ │ ├── matrix_double2x3_precision.hpp │ │ │ ├── matrix_double2x4.hpp │ │ │ ├── matrix_double2x4_precision.hpp │ │ │ ├── matrix_double3x2.hpp │ │ │ ├── matrix_double3x2_precision.hpp │ │ │ ├── matrix_double3x3.hpp │ │ │ ├── matrix_double3x3_precision.hpp │ │ │ ├── matrix_double3x4.hpp │ │ │ ├── matrix_double3x4_precision.hpp │ │ │ ├── matrix_double4x2.hpp │ │ │ ├── matrix_double4x2_precision.hpp │ │ │ ├── matrix_double4x3.hpp │ │ │ ├── matrix_double4x3_precision.hpp │ │ │ ├── matrix_double4x4.hpp │ │ │ ├── matrix_double4x4_precision.hpp │ │ │ ├── matrix_float2x2.hpp │ │ │ ├── matrix_float2x2_precision.hpp │ │ │ ├── matrix_float2x3.hpp │ │ │ ├── matrix_float2x3_precision.hpp │ │ │ ├── matrix_float2x4.hpp │ │ │ ├── matrix_float2x4_precision.hpp │ │ │ ├── matrix_float3x2.hpp │ │ │ ├── matrix_float3x2_precision.hpp │ │ │ ├── matrix_float3x3.hpp │ │ │ ├── matrix_float3x3_precision.hpp │ │ │ ├── matrix_float3x4.hpp │ │ │ ├── matrix_float3x4_precision.hpp │ │ │ ├── matrix_float4x2.hpp │ │ │ ├── matrix_float4x2_precision.hpp │ │ │ ├── matrix_float4x3.hpp │ │ │ ├── matrix_float4x3_precision.hpp │ │ │ ├── matrix_float4x4.hpp │ │ │ ├── matrix_float4x4_precision.hpp │ │ │ ├── matrix_projection.hpp │ │ │ ├── matrix_projection.inl │ │ │ ├── matrix_relational.hpp │ │ │ ├── matrix_relational.inl │ │ │ ├── matrix_transform.hpp │ │ │ ├── matrix_transform.inl │ │ │ ├── quaternion_common.hpp │ │ │ ├── quaternion_common.inl │ │ │ ├── quaternion_common_simd.inl │ │ │ ├── quaternion_double.hpp │ │ │ ├── quaternion_double_precision.hpp │ │ │ ├── quaternion_exponential.hpp │ │ │ ├── quaternion_exponential.inl │ │ │ ├── quaternion_float.hpp │ │ │ ├── quaternion_float_precision.hpp │ │ │ ├── quaternion_geometric.hpp │ │ │ ├── quaternion_geometric.inl │ │ │ ├── quaternion_relational.hpp │ │ │ ├── quaternion_relational.inl │ │ │ ├── quaternion_transform.hpp │ │ │ ├── quaternion_transform.inl │ │ │ ├── quaternion_trigonometric.hpp │ │ │ ├── quaternion_trigonometric.inl │ │ │ ├── scalar_common.hpp │ │ │ ├── scalar_common.inl │ │ │ ├── scalar_constants.hpp │ │ │ ├── scalar_constants.inl │ │ │ ├── scalar_int_sized.hpp │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── scalar_uint_sized.hpp │ │ │ ├── scalar_ulp.hpp │ │ │ ├── scalar_ulp.inl │ │ │ ├── vector_bool1.hpp │ │ │ ├── vector_bool1_precision.hpp │ │ │ ├── vector_bool2.hpp │ │ │ ├── vector_bool2_precision.hpp │ │ │ ├── vector_bool3.hpp │ │ │ ├── vector_bool3_precision.hpp │ │ │ ├── vector_bool4.hpp │ │ │ ├── vector_bool4_precision.hpp │ │ │ ├── vector_common.hpp │ │ │ ├── vector_common.inl │ │ │ ├── vector_double1.hpp │ │ │ ├── vector_double1_precision.hpp │ │ │ ├── vector_double2.hpp │ │ │ ├── vector_double2_precision.hpp │ │ │ ├── vector_double3.hpp │ │ │ ├── vector_double3_precision.hpp │ │ │ ├── vector_double4.hpp │ │ │ ├── vector_double4_precision.hpp │ │ │ ├── vector_float1.hpp │ │ │ ├── vector_float1_precision.hpp │ │ │ ├── vector_float2.hpp │ │ │ ├── vector_float2_precision.hpp │ │ │ ├── vector_float3.hpp │ │ │ ├── vector_float3_precision.hpp │ │ │ ├── vector_float4.hpp │ │ │ ├── vector_float4_precision.hpp │ │ │ ├── vector_int1.hpp │ │ │ ├── vector_int1_precision.hpp │ │ │ ├── vector_int2.hpp │ │ │ ├── vector_int2_precision.hpp │ │ │ ├── vector_int3.hpp │ │ │ ├── vector_int3_precision.hpp │ │ │ ├── vector_int4.hpp │ │ │ ├── vector_int4_precision.hpp │ │ │ ├── vector_relational.hpp │ │ │ ├── vector_relational.inl │ │ │ ├── vector_uint1.hpp │ │ │ ├── vector_uint1_precision.hpp │ │ │ ├── vector_uint2.hpp │ │ │ ├── vector_uint2_precision.hpp │ │ │ ├── vector_uint3.hpp │ │ │ ├── vector_uint3_precision.hpp │ │ │ ├── vector_uint4.hpp │ │ │ ├── vector_uint4_precision.hpp │ │ │ ├── vector_ulp.hpp │ │ │ └── vector_ulp.inl │ │ ├── fwd.hpp │ │ ├── geometric.hpp │ │ ├── glm.hpp │ │ ├── gtc │ │ │ ├── bitfield.hpp │ │ │ ├── bitfield.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── constants.hpp │ │ │ ├── constants.inl │ │ │ ├── epsilon.hpp │ │ │ ├── epsilon.inl │ │ │ ├── integer.hpp │ │ │ ├── integer.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 │ │ │ ├── quaternion_simd.inl │ │ │ ├── random.hpp │ │ │ ├── random.inl │ │ │ ├── reciprocal.hpp │ │ │ ├── reciprocal.inl │ │ │ ├── round.hpp │ │ │ ├── round.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_precision.hpp │ │ │ ├── type_precision.inl │ │ │ ├── type_ptr.hpp │ │ │ ├── type_ptr.inl │ │ │ ├── ulp.hpp │ │ │ ├── ulp.inl │ │ │ └── vec1.hpp │ │ ├── gtx │ │ │ ├── associated_min_max.hpp │ │ │ ├── associated_min_max.inl │ │ │ ├── bit.hpp │ │ │ ├── bit.inl │ │ │ ├── closest_point.hpp │ │ │ ├── closest_point.inl │ │ │ ├── color_encoding.hpp │ │ │ ├── color_encoding.inl │ │ │ ├── color_space.hpp │ │ │ ├── color_space.inl │ │ │ ├── color_space_YCoCg.hpp │ │ │ ├── color_space_YCoCg.inl │ │ │ ├── common.hpp │ │ │ ├── common.inl │ │ │ ├── compatibility.hpp │ │ │ ├── compatibility.inl │ │ │ ├── component_wise.hpp │ │ │ ├── component_wise.inl │ │ │ ├── dual_quaternion.hpp │ │ │ ├── dual_quaternion.inl │ │ │ ├── easing.hpp │ │ │ ├── easing.inl │ │ │ ├── euler_angles.hpp │ │ │ ├── euler_angles.inl │ │ │ ├── extend.hpp │ │ │ ├── extend.inl │ │ │ ├── extended_min_max.hpp │ │ │ ├── extended_min_max.inl │ │ │ ├── exterior_product.hpp │ │ │ ├── exterior_product.inl │ │ │ ├── fast_exponential.hpp │ │ │ ├── fast_exponential.inl │ │ │ ├── fast_square_root.hpp │ │ │ ├── fast_square_root.inl │ │ │ ├── fast_trigonometry.hpp │ │ │ ├── fast_trigonometry.inl │ │ │ ├── float_notmalize.inl │ │ │ ├── functions.hpp │ │ │ ├── functions.inl │ │ │ ├── gradient_paint.hpp │ │ │ ├── gradient_paint.inl │ │ │ ├── handed_coordinate_space.hpp │ │ │ ├── handed_coordinate_space.inl │ │ │ ├── hash.hpp │ │ │ ├── hash.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_decompose.hpp │ │ │ ├── matrix_decompose.inl │ │ │ ├── matrix_factorisation.hpp │ │ │ ├── matrix_factorisation.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 │ │ │ ├── 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 │ │ │ ├── range.hpp │ │ │ ├── raw_data.hpp │ │ │ ├── raw_data.inl │ │ │ ├── rotate_normalized_axis.hpp │ │ │ ├── rotate_normalized_axis.inl │ │ │ ├── rotate_vector.hpp │ │ │ ├── rotate_vector.inl │ │ │ ├── scalar_multiplication.hpp │ │ │ ├── scalar_relational.hpp │ │ │ ├── scalar_relational.inl │ │ │ ├── spline.hpp │ │ │ ├── spline.inl │ │ │ ├── std_based_type.hpp │ │ │ ├── std_based_type.inl │ │ │ ├── string_cast.hpp │ │ │ ├── string_cast.inl │ │ │ ├── texture.hpp │ │ │ ├── texture.inl │ │ │ ├── transform.hpp │ │ │ ├── transform.inl │ │ │ ├── transform2.hpp │ │ │ ├── transform2.inl │ │ │ ├── type_aligned.hpp │ │ │ ├── type_aligned.inl │ │ │ ├── type_trait.hpp │ │ │ ├── type_trait.inl │ │ │ ├── vec_swizzle.hpp │ │ │ ├── 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 │ │ ├── simd │ │ │ ├── common.h │ │ │ ├── exponential.h │ │ │ ├── geometric.h │ │ │ ├── integer.h │ │ │ ├── matrix.h │ │ │ ├── packing.h │ │ │ ├── platform.h │ │ │ ├── trigonometric.h │ │ │ └── vector_relational.h │ │ ├── trigonometric.hpp │ │ ├── vec2.hpp │ │ ├── vec3.hpp │ │ ├── vec4.hpp │ │ └── vector_relational.hpp │ └── glm_no_warnings.h └── rapidjson │ ├── allocators.h │ ├── cursorstreamwrapper.h │ ├── document.h │ ├── encodedstream.h │ ├── encodings.h │ ├── error │ ├── en.h │ └── error.h │ ├── filereadstream.h │ ├── filewritestream.h │ ├── fwd.h │ ├── internal │ ├── biginteger.h │ ├── diyfp.h │ ├── dtoa.h │ ├── ieee754.h │ ├── itoa.h │ ├── meta.h │ ├── pow10.h │ ├── regex.h │ ├── stack.h │ ├── strfunc.h │ ├── strtod.h │ └── swap.h │ ├── istreamwrapper.h │ ├── memorybuffer.h │ ├── memorystream.h │ ├── msinttypes │ ├── inttypes.h │ └── stdint.h │ ├── ostreamwrapper.h │ ├── pointer.h │ ├── prettywriter.h │ ├── rapidjson.h │ ├── reader.h │ ├── schema.h │ ├── stream.h │ ├── stringbuffer.h │ └── writer.h ├── jsons └── empty.txt ├── shaders └── empty.txt ├── src ├── _pch_ │ └── pch.h ├── classA │ ├── A.cpp │ └── A.h ├── debug │ ├── innDebug.cpp │ └── innDebug.h └── main │ └── main.cpp ├── sysconfig └── SysConfig.h.in ├── ud.sh ├── unix_debug.sh ├── unix_release.sh ├── ur.sh └── win.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /Docs/how_to_handle_visual_studio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/Docs/how_to_handle_visual_studio.md -------------------------------------------------------------------------------- /Docs/pngs/screenShots/show_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/Docs/pngs/screenShots/show_1.png -------------------------------------------------------------------------------- /Docs/pngs/use/cmake_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/Docs/pngs/use/cmake_1.png -------------------------------------------------------------------------------- /Docs/pngs/use/src_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/Docs/pngs/use/src_folder.png -------------------------------------------------------------------------------- /Docs/pngs/win10/000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/Docs/pngs/win10/000.png -------------------------------------------------------------------------------- /Docs/pngs/win10/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/Docs/pngs/win10/001.png -------------------------------------------------------------------------------- /Docs/pngs/win10/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/Docs/pngs/win10/002.png -------------------------------------------------------------------------------- /Docs/pngs/win10/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/Docs/pngs/win10/003.png -------------------------------------------------------------------------------- /Docs/pngs/win10/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/Docs/pngs/win10/004.png -------------------------------------------------------------------------------- /Docs/pngs/win10/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/Docs/pngs/win10/005.png -------------------------------------------------------------------------------- /Docs/pngs/win10/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/Docs/pngs/win10/006.png -------------------------------------------------------------------------------- /Docs/pngs/win10/009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/Docs/pngs/win10/009.png -------------------------------------------------------------------------------- /Docs/pngs/win10/clang_and_cmke_check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/Docs/pngs/win10/clang_and_cmke_check.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/README.md -------------------------------------------------------------------------------- /deps/fmt-6.1.2/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/.clang-format -------------------------------------------------------------------------------- /deps/fmt-6.1.2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/.travis.yml -------------------------------------------------------------------------------- /deps/fmt-6.1.2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/CMakeLists.txt -------------------------------------------------------------------------------- /deps/fmt-6.1.2/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/CONTRIBUTING.md -------------------------------------------------------------------------------- /deps/fmt-6.1.2/ChangeLog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/ChangeLog.rst -------------------------------------------------------------------------------- /deps/fmt-6.1.2/LICENSE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/LICENSE.rst -------------------------------------------------------------------------------- /deps/fmt-6.1.2/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/README.rst -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/CMakeLists.txt -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/_static/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/_static/bootstrap.min.js -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/_static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/_static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/_static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/_static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/_static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/_static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/_static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/_static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/_templates/layout.html -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/_templates/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/_templates/search.html -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/api.rst -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/basic-bootstrap/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/basic-bootstrap/README -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/basic-bootstrap/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/basic-bootstrap/layout.html -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/basic-bootstrap/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/alerts.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/badges.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/bootstrap.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/breadcrumbs.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/button-groups.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/buttons.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/carousel.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/close.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/code.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/component-animations.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/dropdowns.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/forms.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/glyphicons.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/grid.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/input-groups.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/jumbotron.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/labels.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/list-group.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/media.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/alerts.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/background-variant.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/background-variant.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/border-radius.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/border-radius.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/buttons.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/center-block.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/center-block.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/clearfix.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/clearfix.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/forms.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/gradients.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/gradients.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/grid-framework.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/grid-framework.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/grid.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/hide-text.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/hide-text.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/image.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/labels.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/list-group.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/nav-divider.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/nav-divider.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/nav-vertical-align.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/opacity.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/opacity.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/pagination.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/panels.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/progress-bar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/progress-bar.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/reset-filter.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/reset-filter.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/resize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/resize.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/responsive-visibility.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/size.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/tab-focus.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/tab-focus.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/table-row.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/table-row.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/text-emphasis.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/text-emphasis.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/text-overflow.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/text-overflow.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/mixins/vendor-prefixes.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/mixins/vendor-prefixes.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/modals.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/navbar.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/navs.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/normalize.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/pager.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/pagination.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/panels.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/popovers.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/print.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/progress-bars.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/responsive-embed.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/responsive-embed.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/responsive-utilities.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/scaffolding.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/tables.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/theme.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/thumbnails.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/tooltip.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/type.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/utilities.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/variables.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/bootstrap/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/bootstrap/wells.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/build.py -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/conf.py -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/contents.rst -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/fmt.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/fmt.less -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_sources/api.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_sources/api.txt -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_sources/contents.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_sources/contents.txt -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_sources/index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_sources/index.txt -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_sources/syntax.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_sources/syntax.txt -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_sources/usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_sources/usage.txt -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/ajax-loader.gif -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/basic.css -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/bootstrap.min.js -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/comment-bright.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/comment-bright.png -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/comment-close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/comment-close.png -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/comment.png -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/doctools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/doctools.js -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/down-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/down-pressed.png -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/down.png -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/file.png -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/fmt.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/fmt.css -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/jquery-1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/jquery-1.11.1.js -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/jquery.js -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/minus.png -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/plus.png -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/pygments.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/pygments.css -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/searchtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/searchtools.js -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/underscore-1.3.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/underscore-1.3.1.js -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/underscore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/underscore.js -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/up-pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/up-pressed.png -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/up.png -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/_static/websupport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/_static/websupport.js -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/api.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/api.html -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/contents.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/contents.html -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/genindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/genindex.html -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/index.html -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/objects.inv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/objects.inv -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/search.html -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/searchindex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/searchindex.js -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/syntax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/syntax.html -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/html/usage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/html/usage.html -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/index.rst -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/python-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/python-license.txt -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/syntax.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/syntax.rst -------------------------------------------------------------------------------- /deps/fmt-6.1.2/doc/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/doc/usage.rst -------------------------------------------------------------------------------- /deps/fmt-6.1.2/include/fmt/chrono.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/include/fmt/chrono.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/include/fmt/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/include/fmt/color.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/include/fmt/compile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/include/fmt/compile.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/include/fmt/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/include/fmt/core.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/include/fmt/format-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/include/fmt/format-inl.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/include/fmt/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/include/fmt/format.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/include/fmt/locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/include/fmt/locale.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/include/fmt/ostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/include/fmt/ostream.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/include/fmt/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/include/fmt/posix.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/include/fmt/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/include/fmt/printf.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/include/fmt/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/include/fmt/ranges.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/src/format.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/src/format.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/src/posix.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/src/posix.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/Android.mk -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/C++.sublime-syntax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/C++.sublime-syntax -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/README -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/Vagrantfile -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/appveyor-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/appveyor-build.py -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/appveyor.yml -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/build.gradle -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/cmake/FindSetEnv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/cmake/FindSetEnv.cmake -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/cmake/cxx14.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/cmake/cxx14.cmake -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/cmake/fmt-config.cmake.in: -------------------------------------------------------------------------------- 1 | @PACKAGE_INIT@ 2 | 3 | include(${CMAKE_CURRENT_LIST_DIR}/@targets_export_name@.cmake) 4 | check_required_components(fmt) 5 | -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/cmake/fmt.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/cmake/fmt.pc.in -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/compute-powers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/compute-powers.py -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/docopt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/docopt.py -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/fmt.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/fmt.pro -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/manage.py -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/rst2md.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/rst2md.py -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/rtd/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/rtd/conf.py -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/rtd/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/rtd/index.rst -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/rtd/theme/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/rtd/theme/layout.html -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/rtd/theme/theme.conf: -------------------------------------------------------------------------------- 1 | [theme] 2 | inherit = basic 3 | -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/travis-build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/travis-build.py -------------------------------------------------------------------------------- /deps/fmt-6.1.2/support/update-coverity-branch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/support/update-coverity-branch.py -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/CMakeLists.txt -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/add-subdirectory-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/add-subdirectory-test/CMakeLists.txt -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/add-subdirectory-test/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/add-subdirectory-test/main.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/assert-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/assert-test.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/chrono-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/chrono-test.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/color-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/color-test.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/compile-error-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/compile-error-test/CMakeLists.txt -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/compile-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/compile-test.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/core-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/core-test.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/cuda-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/cuda-test/CMakeLists.txt -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/cuda-test/cpp14.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/cuda-test/cpp14.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/cuda-test/cuda-cpp14.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/cuda-test/cuda-cpp14.cu -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/custom-formatter-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/custom-formatter-test.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/find-package-test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/find-package-test/CMakeLists.txt -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/find-package-test/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/find-package-test/main.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/format -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/format-impl-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/format-impl-test.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/format-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/format-test.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/fuzzing/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/fuzzing/CMakeLists.txt -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/fuzzing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/fuzzing/README.md -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/fuzzing/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/fuzzing/build.sh -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/fuzzing/chrono_duration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/fuzzing/chrono_duration.cpp -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/fuzzing/fuzzer_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/fuzzing/fuzzer_common.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/fuzzing/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/fuzzing/main.cpp -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/fuzzing/named_arg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/fuzzing/named_arg.cpp -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/fuzzing/one_arg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/fuzzing/one_arg.cpp -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/fuzzing/sprintf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/fuzzing/sprintf.cpp -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/fuzzing/two_args.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/fuzzing/two_args.cpp -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/gmock-gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/gmock-gtest-all.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/gmock/gmock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/gmock/gmock.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/grisu-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/grisu-test.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/gtest-extra-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/gtest-extra-test.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/gtest-extra.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/gtest-extra.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/gtest-extra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/gtest-extra.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/gtest/gtest-spi.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/gtest/gtest.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/header-only-test.cc: -------------------------------------------------------------------------------- 1 | // Header-only configuration test 2 | 3 | #include "fmt/core.h" 4 | -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/header-only-test2.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/header-only-test2.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/locale-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/locale-test.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/mock-allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/mock-allocator.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/ostream-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/ostream-test.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/posix-mock-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/posix-mock-test.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/posix-mock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/posix-mock.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/posix-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/posix-test.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/printf-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/printf-test.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/ranges-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/ranges-test.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/scan-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/scan-test.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/scan.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/std-format-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/std-format-test.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/test-assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/test-assert.h -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/test-main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/test-main.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/util.cc -------------------------------------------------------------------------------- /deps/fmt-6.1.2/test/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/fmt-6.1.2/test/util.h -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/CMakeLists.txt -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/common.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/_features.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/_fixes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/_fixes.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/_noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/_noise.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/_swizzle.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/_swizzle_func.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/_swizzle_func.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/_vectorize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/_vectorize.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/compute_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/compute_common.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/compute_vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/compute_vector_relational.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/func_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/func_common.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/func_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/func_common_simd.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/func_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/func_exponential.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/func_exponential_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/func_exponential_simd.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/func_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/func_geometric.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/func_geometric_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/func_geometric_simd.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/func_integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/func_integer.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/func_integer_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/func_integer_simd.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/func_matrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/func_matrix.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/func_matrix_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/func_matrix_simd.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/func_packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/func_packing.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/func_packing_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/func_packing_simd.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/func_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/func_trigonometric.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/func_trigonometric_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/func_vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/func_vector_relational.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/func_vector_relational_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/func_vector_relational_simd.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/glm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/glm.cpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/qualifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/qualifier.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/setup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/setup.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_float.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_half.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_half.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_half.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_half.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_mat2x2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_mat2x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_mat2x2.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_mat2x3.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_mat2x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_mat2x3.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_mat2x4.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_mat2x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_mat2x4.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_mat3x2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_mat3x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_mat3x2.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_mat3x3.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_mat3x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_mat3x3.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_mat3x4.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_mat3x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_mat3x4.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_mat4x2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_mat4x2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_mat4x2.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_mat4x3.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_mat4x3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_mat4x3.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_mat4x4.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_mat4x4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_mat4x4.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_mat4x4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_mat4x4_simd.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_quat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_quat.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_quat.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_quat.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_quat_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_quat_simd.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_vec1.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_vec1.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_vec1.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_vec2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_vec2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_vec2.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_vec3.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_vec3.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_vec3.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_vec4.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_vec4.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_vec4.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/detail/type_vec4_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/detail/type_vec4_simd.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/exponential.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_clip_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_clip_space.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_clip_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_clip_space.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_common.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_common.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_double2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_double2x2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_double2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_double2x2_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_double2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_double2x3.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_double2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_double2x3_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_double2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_double2x4.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_double2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_double2x4_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_double3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_double3x2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_double3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_double3x2_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_double3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_double3x3.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_double3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_double3x3_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_double3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_double3x4.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_double3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_double3x4_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_double4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_double4x2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_double4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_double4x2_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_double4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_double4x3.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_double4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_double4x3_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_double4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_double4x4.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_double4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_double4x4_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_float2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_float2x2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_float2x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_float2x2_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_float2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_float2x3.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_float2x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_float2x3_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_float2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_float2x4.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_float2x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_float2x4_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_float3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_float3x2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_float3x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_float3x2_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_float3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_float3x3.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_float3x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_float3x3_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_float3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_float3x4.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_float3x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_float3x4_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_float4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_float4x2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_float4x2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_float4x2_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_float4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_float4x3.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_float4x3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_float4x3_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_float4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_float4x4.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_float4x4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_float4x4_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_projection.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_projection.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_relational.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_relational.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_transform.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/matrix_transform.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/quaternion_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/quaternion_common.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/quaternion_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/quaternion_common.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/quaternion_common_simd.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/quaternion_common_simd.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/quaternion_double.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/quaternion_double.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/quaternion_double_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/quaternion_double_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/quaternion_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/quaternion_exponential.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/quaternion_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/quaternion_exponential.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/quaternion_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/quaternion_float.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/quaternion_float_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/quaternion_float_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/quaternion_geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/quaternion_geometric.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/quaternion_geometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/quaternion_geometric.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/quaternion_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/quaternion_relational.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/quaternion_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/quaternion_relational.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/quaternion_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/quaternion_transform.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/quaternion_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/quaternion_transform.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/quaternion_trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/quaternion_trigonometric.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/quaternion_trigonometric.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/quaternion_trigonometric.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/scalar_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/scalar_common.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/scalar_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/scalar_common.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/scalar_constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/scalar_constants.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/scalar_constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/scalar_constants.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/scalar_int_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/scalar_int_sized.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/scalar_relational.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/scalar_relational.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/scalar_uint_sized.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/scalar_uint_sized.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/scalar_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/scalar_ulp.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/scalar_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/scalar_ulp.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_bool1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_bool1.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_bool1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_bool1_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_bool2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_bool2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_bool2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_bool2_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_bool3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_bool3.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_bool3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_bool3_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_bool4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_bool4.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_bool4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_bool4_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_common.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_common.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_double1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_double1.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_double1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_double1_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_double2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_double2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_double2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_double2_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_double3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_double3.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_double3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_double3_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_double4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_double4.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_double4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_double4_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_float1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_float1.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_float1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_float1_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_float2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_float2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_float2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_float2_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_float3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_float3.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_float3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_float3_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_float4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_float4.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_float4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_float4_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_int1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_int1.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_int1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_int1_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_int2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_int2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_int2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_int2_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_int3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_int3.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_int3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_int3_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_int4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_int4.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_int4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_int4_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_relational.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_relational.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_uint1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_uint1.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_uint1_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_uint1_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_uint2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_uint2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_uint2_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_uint2_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_uint3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_uint3.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_uint3_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_uint3_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_uint4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_uint4.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_uint4_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_uint4_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_ulp.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/ext/vector_ulp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/ext/vector_ulp.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/fwd.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/geometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/geometric.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/glm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/glm.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/bitfield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/bitfield.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/bitfield.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/bitfield.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/color_space.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/color_space.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/constants.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/constants.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/constants.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/epsilon.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/epsilon.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/epsilon.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/epsilon.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/integer.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/integer.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/matrix_access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/matrix_access.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/matrix_access.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/matrix_access.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/matrix_integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/matrix_integer.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/matrix_inverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/matrix_inverse.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/matrix_inverse.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/matrix_inverse.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/matrix_transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/matrix_transform.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/matrix_transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/matrix_transform.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/noise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/noise.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/noise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/noise.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/packing.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/packing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/packing.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/quaternion.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/quaternion.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/quaternion_simd.inl: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/random.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/random.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/random.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/reciprocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/reciprocal.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/reciprocal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/reciprocal.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/round.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/round.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/round.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/round.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/type_aligned.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/type_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/type_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/type_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/type_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/type_ptr.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/type_ptr.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/type_ptr.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/ulp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/ulp.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/ulp.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_ulp 2 | /// 3 | 4 | -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtc/vec1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtc/vec1.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/associated_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/associated_min_max.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/associated_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/associated_min_max.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/bit.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/bit.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/bit.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/closest_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/closest_point.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/closest_point.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/closest_point.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/color_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/color_encoding.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/color_encoding.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/color_encoding.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/color_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/color_space.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/color_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/color_space.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/color_space_YCoCg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/color_space_YCoCg.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/color_space_YCoCg.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/color_space_YCoCg.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/common.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/common.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/common.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/compatibility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/compatibility.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/compatibility.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/compatibility.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/component_wise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/component_wise.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/component_wise.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/component_wise.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/dual_quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/dual_quaternion.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/dual_quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/dual_quaternion.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/easing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/easing.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/easing.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/easing.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/euler_angles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/euler_angles.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/euler_angles.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/euler_angles.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/extend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/extend.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/extend.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/extend.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/extended_min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/extended_min_max.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/extended_min_max.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/extended_min_max.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/exterior_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/exterior_product.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/exterior_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/exterior_product.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/fast_exponential.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/fast_exponential.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/fast_exponential.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/fast_exponential.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/fast_square_root.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/fast_square_root.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/fast_square_root.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/fast_square_root.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/fast_trigonometry.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/fast_trigonometry.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/fast_trigonometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/fast_trigonometry.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/float_notmalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/float_notmalize.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/functions.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/functions.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/functions.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/gradient_paint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/gradient_paint.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/gradient_paint.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/gradient_paint.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/handed_coordinate_space.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/handed_coordinate_space.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/handed_coordinate_space.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/handed_coordinate_space.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/hash.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/hash.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/hash.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/integer.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/integer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/integer.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/intersect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/intersect.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/intersect.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/intersect.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/io.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/io.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/io.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/log_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/log_base.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/log_base.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/log_base.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/matrix_cross_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/matrix_cross_product.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/matrix_cross_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/matrix_cross_product.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/matrix_decompose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/matrix_decompose.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/matrix_decompose.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/matrix_decompose.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/matrix_factorisation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/matrix_factorisation.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/matrix_factorisation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/matrix_factorisation.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/matrix_interpolation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/matrix_interpolation.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/matrix_interpolation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/matrix_interpolation.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/matrix_major_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/matrix_major_storage.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/matrix_major_storage.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/matrix_major_storage.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/matrix_operation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/matrix_operation.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/matrix_operation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/matrix_operation.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/matrix_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/matrix_query.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/matrix_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/matrix_query.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/matrix_transform_2d.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/matrix_transform_2d.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/matrix_transform_2d.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/matrix_transform_2d.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/mixed_product.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/mixed_product.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/mixed_product.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/mixed_product.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/norm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/norm.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/norm.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/norm.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/normal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/normal.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/normal.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/normal.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/normalize_dot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/normalize_dot.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/normalize_dot.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/normalize_dot.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/number_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/number_precision.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/number_precision.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_number_precision 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/optimum_pow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/optimum_pow.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/optimum_pow.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/optimum_pow.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/orthonormalize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/orthonormalize.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/orthonormalize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/orthonormalize.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/perpendicular.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/perpendicular.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/perpendicular.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/perpendicular.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/polar_coordinates.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/polar_coordinates.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/polar_coordinates.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/polar_coordinates.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/projection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/projection.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/projection.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/projection.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/quaternion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/quaternion.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/quaternion.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/quaternion.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/range.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/raw_data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/raw_data.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/raw_data.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_raw_data 2 | 3 | -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/rotate_normalized_axis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/rotate_normalized_axis.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/rotate_normalized_axis.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/rotate_normalized_axis.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/rotate_vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/rotate_vector.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/rotate_vector.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/rotate_vector.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/scalar_multiplication.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/scalar_multiplication.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/scalar_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/scalar_relational.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/scalar_relational.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/scalar_relational.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/spline.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/spline.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/spline.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/spline.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/std_based_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/std_based_type.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/std_based_type.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtx_std_based_type 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/string_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/string_cast.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/string_cast.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/string_cast.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/texture.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/texture.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/texture.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/transform.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/transform.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/transform.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/transform2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/transform2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/transform2.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/transform2.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/type_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/type_aligned.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/type_aligned.inl: -------------------------------------------------------------------------------- 1 | /// @ref gtc_type_aligned 2 | 3 | namespace glm 4 | { 5 | 6 | } 7 | -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/type_trait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/type_trait.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/type_trait.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/type_trait.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/vec_swizzle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/vec_swizzle.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/vector_angle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/vector_angle.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/vector_angle.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/vector_angle.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/vector_query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/vector_query.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/vector_query.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/vector_query.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/wrap.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/gtx/wrap.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/gtx/wrap.inl -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/integer.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/mat2x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/mat2x2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/mat2x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/mat2x3.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/mat2x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/mat2x4.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/mat3x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/mat3x2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/mat3x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/mat3x3.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/mat3x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/mat3x4.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/mat4x2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/mat4x2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/mat4x3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/mat4x3.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/mat4x4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/mat4x4.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/matrix.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/packing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/packing.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/simd/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/simd/common.h -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/simd/exponential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/simd/exponential.h -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/simd/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/simd/geometric.h -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/simd/integer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/simd/integer.h -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/simd/matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/simd/matrix.h -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/simd/packing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/simd/packing.h -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/simd/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/simd/platform.h -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/simd/trigonometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/simd/trigonometric.h -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/simd/vector_relational.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/simd/vector_relational.h -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/trigonometric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/trigonometric.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/vec2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/vec2.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/vec3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/vec3.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/vec4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/vec4.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_inn/vector_relational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_inn/vector_relational.hpp -------------------------------------------------------------------------------- /deps/glm.9.9.5/glm_no_warnings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/glm.9.9.5/glm_no_warnings.h -------------------------------------------------------------------------------- /deps/rapidjson/allocators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/allocators.h -------------------------------------------------------------------------------- /deps/rapidjson/cursorstreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/cursorstreamwrapper.h -------------------------------------------------------------------------------- /deps/rapidjson/document.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/document.h -------------------------------------------------------------------------------- /deps/rapidjson/encodedstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/encodedstream.h -------------------------------------------------------------------------------- /deps/rapidjson/encodings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/encodings.h -------------------------------------------------------------------------------- /deps/rapidjson/error/en.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/error/en.h -------------------------------------------------------------------------------- /deps/rapidjson/error/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/error/error.h -------------------------------------------------------------------------------- /deps/rapidjson/filereadstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/filereadstream.h -------------------------------------------------------------------------------- /deps/rapidjson/filewritestream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/filewritestream.h -------------------------------------------------------------------------------- /deps/rapidjson/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/fwd.h -------------------------------------------------------------------------------- /deps/rapidjson/internal/biginteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/internal/biginteger.h -------------------------------------------------------------------------------- /deps/rapidjson/internal/diyfp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/internal/diyfp.h -------------------------------------------------------------------------------- /deps/rapidjson/internal/dtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/internal/dtoa.h -------------------------------------------------------------------------------- /deps/rapidjson/internal/ieee754.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/internal/ieee754.h -------------------------------------------------------------------------------- /deps/rapidjson/internal/itoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/internal/itoa.h -------------------------------------------------------------------------------- /deps/rapidjson/internal/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/internal/meta.h -------------------------------------------------------------------------------- /deps/rapidjson/internal/pow10.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/internal/pow10.h -------------------------------------------------------------------------------- /deps/rapidjson/internal/regex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/internal/regex.h -------------------------------------------------------------------------------- /deps/rapidjson/internal/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/internal/stack.h -------------------------------------------------------------------------------- /deps/rapidjson/internal/strfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/internal/strfunc.h -------------------------------------------------------------------------------- /deps/rapidjson/internal/strtod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/internal/strtod.h -------------------------------------------------------------------------------- /deps/rapidjson/internal/swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/internal/swap.h -------------------------------------------------------------------------------- /deps/rapidjson/istreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/istreamwrapper.h -------------------------------------------------------------------------------- /deps/rapidjson/memorybuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/memorybuffer.h -------------------------------------------------------------------------------- /deps/rapidjson/memorystream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/memorystream.h -------------------------------------------------------------------------------- /deps/rapidjson/msinttypes/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/msinttypes/inttypes.h -------------------------------------------------------------------------------- /deps/rapidjson/msinttypes/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/msinttypes/stdint.h -------------------------------------------------------------------------------- /deps/rapidjson/ostreamwrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/ostreamwrapper.h -------------------------------------------------------------------------------- /deps/rapidjson/pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/pointer.h -------------------------------------------------------------------------------- /deps/rapidjson/prettywriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/prettywriter.h -------------------------------------------------------------------------------- /deps/rapidjson/rapidjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/rapidjson.h -------------------------------------------------------------------------------- /deps/rapidjson/reader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/reader.h -------------------------------------------------------------------------------- /deps/rapidjson/schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/schema.h -------------------------------------------------------------------------------- /deps/rapidjson/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/stream.h -------------------------------------------------------------------------------- /deps/rapidjson/stringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/stringbuffer.h -------------------------------------------------------------------------------- /deps/rapidjson/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/deps/rapidjson/writer.h -------------------------------------------------------------------------------- /jsons/empty.txt: -------------------------------------------------------------------------------- 1 | this folder have nothing yet... -------------------------------------------------------------------------------- /shaders/empty.txt: -------------------------------------------------------------------------------- 1 | this folder have nothing yet... -------------------------------------------------------------------------------- /src/_pch_/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/src/_pch_/pch.h -------------------------------------------------------------------------------- /src/classA/A.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/src/classA/A.cpp -------------------------------------------------------------------------------- /src/classA/A.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/src/classA/A.h -------------------------------------------------------------------------------- /src/debug/innDebug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/src/debug/innDebug.cpp -------------------------------------------------------------------------------- /src/debug/innDebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/src/debug/innDebug.h -------------------------------------------------------------------------------- /src/main/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/src/main/main.cpp -------------------------------------------------------------------------------- /sysconfig/SysConfig.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/sysconfig/SysConfig.h.in -------------------------------------------------------------------------------- /ud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/ud.sh -------------------------------------------------------------------------------- /unix_debug.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/unix_debug.sh -------------------------------------------------------------------------------- /unix_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/unix_release.sh -------------------------------------------------------------------------------- /ur.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/ur.sh -------------------------------------------------------------------------------- /win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/turesnake/Cpp_Empty_Project/HEAD/win.bat --------------------------------------------------------------------------------