public static Point3f operator -(Point3f value) { value = new Point3f(-value.x, -value.y, -value.z); return(value); }
public float Distance(Point3f point) { throw new NotImplementedException(); }