fix wrong git ignore

This commit is contained in:
Adrian Zürcher
2025-12-15 17:44:00 +01:00
parent ed9f31bb96
commit 8f313c00f0
126 changed files with 70589 additions and 1 deletions

15
internal/pdf/ps/const.go Normal file
View File

@@ -0,0 +1,15 @@
package ps
import (
"errors"
)
// Tolerance for comparing real values.
const TOLERANCE = 0.000001
// Common errors.
var ErrStackUnderflow = errors.New("Stack underflow")
var ErrStackOverflow = errors.New("Stack overflow")
var ErrTypeCheck = errors.New("Type check error")
var ErrRangeCheck = errors.New("Range check error")
var ErrUndefinedResult = errors.New("Undefined result error")