adam-gui/vendor/github.com/srwiley/oksvg/definitions.go

17 lines
349 B
Go
Raw Normal View History

2024-04-29 19:13:50 +02:00
// Copyright 2017 The oksvg Authors. All rights reserved.
// created: 2/12/2017 by S.R.Wiley
//
// utils.go implements translation of an SVG2.0 path into a rasterx Path.
package oksvg
import (
"encoding/xml"
)
// definition is used to store XML-tags of SVG source definitions data.
type definition struct {
ID, Tag string
Attrs []xml.Attr
}