1
0

added eff class

This commit is contained in:
2019-05-15 18:08:07 +02:00
parent 311da13574
commit cea7188d55
2 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
using System.Collections;
using System.Collections.Generic;
namespace TMI_practicum
{
public static class SweepLineEffAlgorithm
{
public static IEnumerable<Intersection> Solve(IEnumerable<Circle> circles)
{
return null;
}
}
}