Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- package template
-
- // Panels contains a map with named panels.
- type Panels map[string]Panel
-
- // Panel contains all the lines and extra points to draw a panel.
- type Panel struct {
- Points Points `yaml:"points"`
- Lines Lines `yaml:"lines"`
- Allowances Allowances `yaml:"allowances"`
- Name string `yaml:"name"`
- Information Information `yaml:"information"`
- }
-
- type Allowances struct {
- Hem string `yaml:"hem"`
- Seam string `yaml:"seam"`
- }
|