Ejemplo n.º 1
0
        internal void EditFunction(FunctionViewModel func)
        {
            func.IsBeingEdited = true;

            this.FunctionBeingEdited = func;

            this.Old = func.CloneWithoutPlotData();
        }
Ejemplo n.º 2
0
 public static FunctionViewModel CreateRealFunctionVM(string functionString, Plot2DRange plotRange)
 {
     var f = new FunctionViewModel(plotRange);
     f.Function.FunctionString = functionString;
     return f;
 }
Ejemplo n.º 3
0
 internal void ClearEditedFunction()
 {
     this.Old = null;
     this.FunctionBeingEdited.IsBeingEdited = false;
     this.FunctionBeingEdited = null;
 }
Ejemplo n.º 4
0
 internal void ClearEditedFunction()
 {
     this.Old = null;
     this.FunctionBeingEdited.IsBeingEdited = false;
     this.FunctionBeingEdited = null;
 }