public struct point
{
public point(double pointx, double pointy)
{
this.x = pointx;
this.y = pointy;
}
private double x;
private double y;
public double X
{
get
{
return x;
}
set
{
x = value;
}
}
public double Y
{
get
{
return y;
}
set
{
y = value;
}
}
}
public struct SDTPoints
{
private point c