Kajetan Johannes Hammerle преди 1 година
родител
ревизия
15f7d33510
променени са 100 файла, в които са добавени 2 реда и са изтрити 0 реда
  1. 2 0
      .gitignore
  2. 0 0
      src/CMakeLists.txt
  3. 0 0
      src/data/Array.hpp
  4. 0 0
      src/data/ArrayList.hpp
  5. 0 0
      src/data/BitArray.cpp
  6. 0 0
      src/data/BitArray.hpp
  7. 0 0
      src/data/Components.hpp
  8. 0 0
      src/data/HashMap.hpp
  9. 0 0
      src/data/LinkedList.hpp
  10. 0 0
      src/data/List.hpp
  11. 0 0
      src/data/ProbingHashMap.hpp
  12. 0 0
      src/data/RingBuffer.hpp
  13. 0 0
      src/data/Stack.hpp
  14. 0 0
      src/io/File.hpp
  15. 0 0
      src/io/FileReader.cpp
  16. 0 0
      src/io/FileReader.hpp
  17. 0 0
      src/math/Box.cpp
  18. 0 0
      src/math/Box.hpp
  19. 0 0
      src/math/BufferedValue.hpp
  20. 0 0
      src/math/Frustum.cpp
  21. 0 0
      src/math/Frustum.hpp
  22. 0 0
      src/math/Math.cpp
  23. 0 0
      src/math/Math.hpp
  24. 0 0
      src/math/Matrix.cpp
  25. 0 0
      src/math/Matrix.hpp
  26. 0 0
      src/math/MatrixStack.hpp
  27. 0 0
      src/math/Plane.cpp
  28. 0 0
      src/math/Plane.hpp
  29. 0 0
      src/math/Quaternion.cpp
  30. 0 0
      src/math/Quaternion.hpp
  31. 0 0
      src/math/Vector.cpp
  32. 0 0
      src/math/Vector.hpp
  33. 0 0
      src/math/View.cpp
  34. 0 0
      src/math/View.hpp
  35. 0 0
      src/performance/Main.cpp
  36. 0 0
      src/test/Main.cpp
  37. 0 0
      src/test/Test.cpp
  38. 0 0
      src/test/Test.hpp
  39. 0 0
      src/tests/ArrayListTests.cpp
  40. 0 0
      src/tests/ArrayListTests.hpp
  41. 0 0
      src/tests/ArrayStringTests.cpp
  42. 0 0
      src/tests/ArrayStringTests.hpp
  43. 0 0
      src/tests/ArrayTests.cpp
  44. 0 0
      src/tests/ArrayTests.hpp
  45. 0 0
      src/tests/BitArrayTests.cpp
  46. 0 0
      src/tests/BitArrayTests.hpp
  47. 0 0
      src/tests/BoxTests.cpp
  48. 0 0
      src/tests/BoxTests.hpp
  49. 0 0
      src/tests/BufferTests.cpp
  50. 0 0
      src/tests/BufferTests.hpp
  51. 0 0
      src/tests/BufferedValueTests.cpp
  52. 0 0
      src/tests/BufferedValueTests.hpp
  53. 0 0
      src/tests/ClockTests.cpp
  54. 0 0
      src/tests/ClockTests.hpp
  55. 0 0
      src/tests/ColorTests.cpp
  56. 0 0
      src/tests/ColorTests.hpp
  57. 0 0
      src/tests/ComponentsTests.cpp
  58. 0 0
      src/tests/ComponentsTests.hpp
  59. 0 0
      src/tests/FileReaderTests.cpp
  60. 0 0
      src/tests/FileReaderTests.hpp
  61. 0 0
      src/tests/FrustumTests.cpp
  62. 0 0
      src/tests/FrustumTests.hpp
  63. 0 0
      src/tests/HashMapTests.cpp
  64. 0 0
      src/tests/HashMapTests.hpp
  65. 0 0
      src/tests/LinkedListTests.cpp
  66. 0 0
      src/tests/LinkedListTests.hpp
  67. 0 0
      src/tests/ListTests.cpp
  68. 0 0
      src/tests/ListTests.hpp
  69. 0 0
      src/tests/MathTests.cpp
  70. 0 0
      src/tests/MathTests.hpp
  71. 0 0
      src/tests/MatrixStackTests.cpp
  72. 0 0
      src/tests/MatrixStackTests.hpp
  73. 0 0
      src/tests/MatrixTests.cpp
  74. 0 0
      src/tests/MatrixTests.hpp
  75. 0 0
      src/tests/PlaneTests.cpp
  76. 0 0
      src/tests/PlaneTests.hpp
  77. 0 0
      src/tests/ProbingHashMapTests.cpp
  78. 0 0
      src/tests/ProbingHashMapTests.hpp
  79. 0 0
      src/tests/QuaternionTests.cpp
  80. 0 0
      src/tests/QuaternionTests.hpp
  81. 0 0
      src/tests/RandomTests.cpp
  82. 0 0
      src/tests/RandomTests.hpp
  83. 0 0
      src/tests/RingBufferTests.cpp
  84. 0 0
      src/tests/RingBufferTests.hpp
  85. 0 0
      src/tests/StackTests.cpp
  86. 0 0
      src/tests/StackTests.hpp
  87. 0 0
      src/tests/ThreadTests.cpp
  88. 0 0
      src/tests/ThreadTests.hpp
  89. 0 0
      src/tests/UniquePointerTests.cpp
  90. 0 0
      src/tests/UniquePointerTests.hpp
  91. 0 0
      src/tests/UtilityTests.cpp
  92. 0 0
      src/tests/UtilityTests.hpp
  93. 0 0
      src/tests/VectorTests.cpp
  94. 0 0
      src/tests/VectorTests.hpp
  95. 0 0
      src/tests/ViewTests.cpp
  96. 0 0
      src/tests/ViewTests.hpp
  97. 0 0
      src/tests/resources/test
  98. 0 0
      src/thread/Thread.cpp
  99. 0 0
      src/thread/Thread.hpp
  100. 0 0
      src/utils/AlignedData.hpp

+ 2 - 0
.gitignore

@@ -0,0 +1,2 @@
+.vscode
+build

+ 0 - 0
CMakeLists.txt → src/CMakeLists.txt


+ 0 - 0
data/Array.hpp → src/data/Array.hpp


+ 0 - 0
data/ArrayList.hpp → src/data/ArrayList.hpp


+ 0 - 0
data/BitArray.cpp → src/data/BitArray.cpp


+ 0 - 0
data/BitArray.hpp → src/data/BitArray.hpp


+ 0 - 0
data/Components.hpp → src/data/Components.hpp


+ 0 - 0
data/HashMap.hpp → src/data/HashMap.hpp


+ 0 - 0
data/LinkedList.hpp → src/data/LinkedList.hpp


+ 0 - 0
data/List.hpp → src/data/List.hpp


+ 0 - 0
data/ProbingHashMap.hpp → src/data/ProbingHashMap.hpp


+ 0 - 0
data/RingBuffer.hpp → src/data/RingBuffer.hpp


+ 0 - 0
data/Stack.hpp → src/data/Stack.hpp


+ 0 - 0
io/File.hpp → src/io/File.hpp


+ 0 - 0
io/FileReader.cpp → src/io/FileReader.cpp


+ 0 - 0
io/FileReader.hpp → src/io/FileReader.hpp


+ 0 - 0
math/Box.cpp → src/math/Box.cpp


+ 0 - 0
math/Box.hpp → src/math/Box.hpp


+ 0 - 0
math/BufferedValue.hpp → src/math/BufferedValue.hpp


+ 0 - 0
math/Frustum.cpp → src/math/Frustum.cpp


+ 0 - 0
math/Frustum.hpp → src/math/Frustum.hpp


+ 0 - 0
math/Math.cpp → src/math/Math.cpp


+ 0 - 0
math/Math.hpp → src/math/Math.hpp


+ 0 - 0
math/Matrix.cpp → src/math/Matrix.cpp


+ 0 - 0
math/Matrix.hpp → src/math/Matrix.hpp


+ 0 - 0
math/MatrixStack.hpp → src/math/MatrixStack.hpp


+ 0 - 0
math/Plane.cpp → src/math/Plane.cpp


+ 0 - 0
math/Plane.hpp → src/math/Plane.hpp


+ 0 - 0
math/Quaternion.cpp → src/math/Quaternion.cpp


+ 0 - 0
math/Quaternion.hpp → src/math/Quaternion.hpp


+ 0 - 0
math/Vector.cpp → src/math/Vector.cpp


+ 0 - 0
math/Vector.hpp → src/math/Vector.hpp


+ 0 - 0
math/View.cpp → src/math/View.cpp


+ 0 - 0
math/View.hpp → src/math/View.hpp


+ 0 - 0
performance/Main.cpp → src/performance/Main.cpp


+ 0 - 0
test/Main.cpp → src/test/Main.cpp


+ 0 - 0
test/Test.cpp → src/test/Test.cpp


+ 0 - 0
test/Test.hpp → src/test/Test.hpp


+ 0 - 0
tests/ArrayListTests.cpp → src/tests/ArrayListTests.cpp


+ 0 - 0
tests/ArrayListTests.hpp → src/tests/ArrayListTests.hpp


+ 0 - 0
tests/ArrayStringTests.cpp → src/tests/ArrayStringTests.cpp


+ 0 - 0
tests/ArrayStringTests.hpp → src/tests/ArrayStringTests.hpp


+ 0 - 0
tests/ArrayTests.cpp → src/tests/ArrayTests.cpp


+ 0 - 0
tests/ArrayTests.hpp → src/tests/ArrayTests.hpp


+ 0 - 0
tests/BitArrayTests.cpp → src/tests/BitArrayTests.cpp


+ 0 - 0
tests/BitArrayTests.hpp → src/tests/BitArrayTests.hpp


+ 0 - 0
tests/BoxTests.cpp → src/tests/BoxTests.cpp


+ 0 - 0
tests/BoxTests.hpp → src/tests/BoxTests.hpp


+ 0 - 0
tests/BufferTests.cpp → src/tests/BufferTests.cpp


+ 0 - 0
tests/BufferTests.hpp → src/tests/BufferTests.hpp


+ 0 - 0
tests/BufferedValueTests.cpp → src/tests/BufferedValueTests.cpp


+ 0 - 0
tests/BufferedValueTests.hpp → src/tests/BufferedValueTests.hpp


+ 0 - 0
tests/ClockTests.cpp → src/tests/ClockTests.cpp


+ 0 - 0
tests/ClockTests.hpp → src/tests/ClockTests.hpp


+ 0 - 0
tests/ColorTests.cpp → src/tests/ColorTests.cpp


+ 0 - 0
tests/ColorTests.hpp → src/tests/ColorTests.hpp


+ 0 - 0
tests/ComponentsTests.cpp → src/tests/ComponentsTests.cpp


+ 0 - 0
tests/ComponentsTests.hpp → src/tests/ComponentsTests.hpp


+ 0 - 0
tests/FileReaderTests.cpp → src/tests/FileReaderTests.cpp


+ 0 - 0
tests/FileReaderTests.hpp → src/tests/FileReaderTests.hpp


+ 0 - 0
tests/FrustumTests.cpp → src/tests/FrustumTests.cpp


+ 0 - 0
tests/FrustumTests.hpp → src/tests/FrustumTests.hpp


+ 0 - 0
tests/HashMapTests.cpp → src/tests/HashMapTests.cpp


+ 0 - 0
tests/HashMapTests.hpp → src/tests/HashMapTests.hpp


+ 0 - 0
tests/LinkedListTests.cpp → src/tests/LinkedListTests.cpp


+ 0 - 0
tests/LinkedListTests.hpp → src/tests/LinkedListTests.hpp


+ 0 - 0
tests/ListTests.cpp → src/tests/ListTests.cpp


+ 0 - 0
tests/ListTests.hpp → src/tests/ListTests.hpp


+ 0 - 0
tests/MathTests.cpp → src/tests/MathTests.cpp


+ 0 - 0
tests/MathTests.hpp → src/tests/MathTests.hpp


+ 0 - 0
tests/MatrixStackTests.cpp → src/tests/MatrixStackTests.cpp


+ 0 - 0
tests/MatrixStackTests.hpp → src/tests/MatrixStackTests.hpp


+ 0 - 0
tests/MatrixTests.cpp → src/tests/MatrixTests.cpp


+ 0 - 0
tests/MatrixTests.hpp → src/tests/MatrixTests.hpp


+ 0 - 0
tests/PlaneTests.cpp → src/tests/PlaneTests.cpp


+ 0 - 0
tests/PlaneTests.hpp → src/tests/PlaneTests.hpp


+ 0 - 0
tests/ProbingHashMapTests.cpp → src/tests/ProbingHashMapTests.cpp


+ 0 - 0
tests/ProbingHashMapTests.hpp → src/tests/ProbingHashMapTests.hpp


+ 0 - 0
tests/QuaternionTests.cpp → src/tests/QuaternionTests.cpp


+ 0 - 0
tests/QuaternionTests.hpp → src/tests/QuaternionTests.hpp


+ 0 - 0
tests/RandomTests.cpp → src/tests/RandomTests.cpp


+ 0 - 0
tests/RandomTests.hpp → src/tests/RandomTests.hpp


+ 0 - 0
tests/RingBufferTests.cpp → src/tests/RingBufferTests.cpp


+ 0 - 0
tests/RingBufferTests.hpp → src/tests/RingBufferTests.hpp


+ 0 - 0
tests/StackTests.cpp → src/tests/StackTests.cpp


+ 0 - 0
tests/StackTests.hpp → src/tests/StackTests.hpp


+ 0 - 0
tests/ThreadTests.cpp → src/tests/ThreadTests.cpp


+ 0 - 0
tests/ThreadTests.hpp → src/tests/ThreadTests.hpp


+ 0 - 0
tests/UniquePointerTests.cpp → src/tests/UniquePointerTests.cpp


+ 0 - 0
tests/UniquePointerTests.hpp → src/tests/UniquePointerTests.hpp


+ 0 - 0
tests/UtilityTests.cpp → src/tests/UtilityTests.cpp


+ 0 - 0
tests/UtilityTests.hpp → src/tests/UtilityTests.hpp


+ 0 - 0
tests/VectorTests.cpp → src/tests/VectorTests.cpp


+ 0 - 0
tests/VectorTests.hpp → src/tests/VectorTests.hpp


+ 0 - 0
tests/ViewTests.cpp → src/tests/ViewTests.cpp


+ 0 - 0
tests/ViewTests.hpp → src/tests/ViewTests.hpp


+ 0 - 0
tests/resources/test → src/tests/resources/test


+ 0 - 0
thread/Thread.cpp → src/thread/Thread.cpp


+ 0 - 0
thread/Thread.hpp → src/thread/Thread.hpp


+ 0 - 0
utils/AlignedData.hpp → src/utils/AlignedData.hpp


Някои файлове не бяха показани, защото твърде много файлове са промени