Во время выполнения программа сообщает, что индекс находится вне диапазона, но я не знаю, почему.
Строка, на которую указывает сообщение об ошибке:
Points[counter + ((int)(radius * 100))].X = i;
Если у этого есть ошибка, у следующего (с тем же индексом) также должна быть ошибка.
Points[counter + ((int)(radius * 100))].Y = (Points[counter].Y * -1);
Вот код:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication5
{
class Program
{
static void Main(string[] args)
{
Circle circle = new Circle(new Point2D(30F, 30F), 10F);
foreach (Point2D point in circle.Points)
{
Console.Write(point.X + " = X\n" + point.Y + " = Y");
Console.ReadKey();
}
}
}
public struct Point2D
{
public float X;
public float Y;
public Point2D(float x, float y)
{
this.X = x;
this.Y = y;
}
}
class Circle
{
public Point2D[] Points;
float h, k;
float radiusStart, radiusEnd;
int counter;
public Circle(Point2D location, float radius)
{
Points = new Point2D[(int)(radius * 201)];
h = location.X;
k = location.Y;
radiusStart = h - radius;
radiusEnd = h + radius;
for (float i = radiusStart; i <= radiusEnd; i++)
{
Points[counter].X = i;
Points[counter].Y = (float)(Math.Sqrt((radius * radius) - ((i - h) * (i - h))) + k);
Points[counter + ((int)(radius * 100))].X = i;
Points[counter + ((int)(radius * 100))].Y = (Points[counter].Y * -1);
counter++;
}
counter = 0;
}
}
}
Заранее спасибо
Адриан Колладо