Um....
public static Point3 operator - (Point3 p)
{
return new Point3 (-p);
}
correct me if I'm wrong, but doesn't that set up an infinite recursion? You're calling the unary (-) operator inside the unary (-) operator method.
It seems to me you're going to want to do this:
public static Point3 operator - (Point3 p)
{
return new Point3 (-p.X, -(p.X), -p.Y, (p.Y), -p.Z);
(p.Z));
// EDIT: Added parens for the sake of explicity. I don't recall the operator precedence in this case.
}
Assuming you have such a constructor and properties on your Point3 class.
