示例#1
0
        private void Reset()
        {
            Errored   = false;
            ErrorCode = LineFitterErrorCode.NoError;

            _a = 0;
            _b = 0;
            _A = 0;
            _B = 0;
            _C = 0;
        }
示例#2
0
 private void SetError(LineFitterErrorCode errorCode)
 {
     Errored   = true;
     ErrorCode = errorCode;
 }