Added simple algorithm
This commit is contained in:
14
TMI-practicum/Intersection.cs
Normal file
14
TMI-practicum/Intersection.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user