コード例 #1
0
ファイル: LineFitter.cs プロジェクト: M-Coast/MathGraph
        private void Reset()
        {
            Errored   = false;
            ErrorCode = LineFitterErrorCode.NoError;

            _a = 0;
            _b = 0;
            _A = 0;
            _B = 0;
            _C = 0;
        }
コード例 #2
0
ファイル: LineFitter.cs プロジェクト: M-Coast/MathGraph
 private void SetError(LineFitterErrorCode errorCode)
 {
     Errored   = true;
     ErrorCode = errorCode;
 }