Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

19 řádky
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. }