Added RANSAC
This commit is contained in:
parent
941cdd17db
commit
e178306128
10
LinearAlgebra/Vector2.cs
Normal file
10
LinearAlgebra/Vector2.cs
Normal 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
11
LinearAlgebra/Vector3.cs
Normal 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> { }
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user