Files
inventory-plus-plus/server/ui/svg/length_adjust.go
T
angel 50adc8e2de
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s
Tests / Go tests (push) Failing after 20s
prototyped svg reports
2026-08-20 00:35:13 -06:00

24 lines
361 B
Go

package svg
type (
LengthAdjust int
)
const (
LengthAdjustSpacing LengthAdjust = iota
LengthAdjustSpacingAndGlyph
)
func (LengthAdjust) PrintTag() string {
return "lengthAdjust"
}
func (l LengthAdjust) PrintValue() (string, bool) {
switch l {
case LengthAdjustSpacingAndGlyph:
return "spacingAndGlyphs", true
default:
return "spacing", true
}
}