Adding code x2

This commit is contained in:
2023-12-26 21:29:05 -06:00
parent d9bd070fd1
commit f90f1cf40b
25 changed files with 188 additions and 88 deletions

View File

@@ -0,0 +1,3 @@
//
// Created by josh on 12/26/2023.
//

View File

@@ -0,0 +1,3 @@
//
// Created by josh on 12/26/2023.
//

View File

@@ -0,0 +1,3 @@
//
// Created by josh on 12/26/2023.
//

View File

@@ -0,0 +1,28 @@
#include <gtest/gtest.h>
#include <J3ML/LinearAlgebra/Vector2.h>
TEST(Vector2Test, V2_Constructor_Default) { }
TEST(Vector2Test, V2_Addition) { }
TEST(Vector2Test, V2_Subtraction) { }
TEST(Vector2Test, V2_Multiplication) { }
TEST(Vector2Test, V2_Division) { }
TEST(Vector2Test, V2_Equality) { }
TEST(Vector2Test, V2_Array_Operator_Indexing) { }
TEST(Vector2Test, V2_Normalize)
{
}
TEST(Vector2Test, V2_Dot)
{
}
TEST(Vector2Test, V2_Min) { }
TEST(Vector2Test, V2_Max) { }
TEST(Vector2Test, V2_Distance) { }
TEST(Vector2Test, V2_Length) { }
TEST(Vector2Test, V2_Clamp) { }

View File

@@ -0,0 +1,3 @@
//
// Created by josh on 12/26/2023.
//

View File

@@ -0,0 +1,3 @@
//
// Created by josh on 12/26/2023.
//