Added RANSAC

This commit is contained in:
Pascal Serrarens 2025-01-22 15:39:15 +01:00
parent 941cdd17db
commit e178306128
2 changed files with 21 additions and 0 deletions

10
LinearAlgebra/Vector2.cs Normal file
View File

@ -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> { }
}

11
LinearAlgebra/Vector3.cs Normal file
View File

@ -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> { }
}