Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

19 lines
472B

  1. package template
  2. // Panels contains a map with named panels.
  3. type Panels map[string]Panel
  4. // Panel contains all the lines and extra points to draw a panel.
  5. type Panel struct {
  6. Points Points `yaml:"points"`
  7. Lines Lines `yaml:"lines"`
  8. Allowances Allowances `yaml:"allowances"`
  9. Name string `yaml:"name"`
  10. Information Information `yaml:"information"`
  11. }
  12. type Allowances struct {
  13. Hem string `yaml:"hem"`
  14. Seam string `yaml:"seam"`
  15. }