No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

19 líneas
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. }