From e178306128f65d671634e2b051408177067d1a53 Mon Sep 17 00:00:00 2001
From: Pascal Serrarens <pascal@passervr.com>
Date: Wed, 22 Jan 2025 15:39:15 +0100
Subject: [PATCH] Added RANSAC

---
 LinearAlgebra/Vector2.cs | 10 ++++++++++
 LinearAlgebra/Vector3.cs | 11 +++++++++++
 2 files changed, 21 insertions(+)
 create mode 100644 LinearAlgebra/Vector2.cs
 create mode 100644 LinearAlgebra/Vector3.cs

diff --git a/LinearAlgebra/Vector2.cs b/LinearAlgebra/Vector2.cs
new file mode 100644
index 0000000..333ba88
--- /dev/null
+++ b/LinearAlgebra/Vector2.cs
@@ -0,0 +1,10 @@
+namespace Passer.LinearAlgebra {
+
+    public class Vector2Of<T> {
+        public T x;
+        public T y;
+    }
+
+    public class Vector2Int : Vector2Of<int> { }
+    public class Vector2Float : Vector2Of<float> { }
+}
\ No newline at end of file
diff --git a/LinearAlgebra/Vector3.cs b/LinearAlgebra/Vector3.cs
new file mode 100644
index 0000000..56bb9d8
--- /dev/null
+++ b/LinearAlgebra/Vector3.cs
@@ -0,0 +1,11 @@
+namespace Passer.LinearAlgebra {
+
+    public class Vector3Of<T> {
+        public T x;
+        public T y;
+        public T z;
+    }
+
+    public class Vector3Int : Vector3Of<int> { }
+    public class Vector3Float : Vector3Of<float> { }
+}
\ No newline at end of file