Exemplo n.º 1
0
 public Point(double x, double y)
 {
     this.coords = new double[] { x, y };
     result      = FunctionHelper.CalculateFunctionValue(coords);
 }
Exemplo n.º 2
0
 public Point(double[] coords)
 {
     this.coords = coords;
     result      = FunctionHelper.CalculateFunctionValue(coords);
 }