1
0

Added simple algorithm

This commit is contained in:
2019-05-13 16:16:15 +02:00
parent 610a2372eb
commit e7b6480e7c
5 changed files with 117 additions and 29 deletions

View File

@@ -0,0 +1,14 @@
namespace TMI_practicum
{
public struct Intersection
{
public readonly double X;
public readonly double Y;
public Intersection(double x, double y)
{
X = x;
Y = y;
}
}
}