dot[i] = new Dot(coordinate[0], coordinate[1]);
что это?
НЕ ПРИНИМАЕТ!!!!!!!!
Console.WriteLine("---------------------------");
Console.WriteLine("| t | x | y |");
Console.WriteLine("---------------------------");
for (double t = 0.0; t < 7.01; t += 0.1)
{
double x = Math.Sin(3 * t) + 3 * Math.Cos(t);
double y = Math.Cos(2 * t);
Console.WriteLine("| {0,3:f1} | {1,6:f3} | {2,6:f3} |", t, x, y);
}
Console.WriteLine("---------------------------");