You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
471 B
14 lines
471 B
require 'squib' |
|
|
|
Squib::Deck.new(width: '65.8mm', height: '76mm', cards: 9) do |
|
polygon( |
|
x: '32.9mm', y: '38mm', n: 6, radius: '38mm', angle: 1.571, |
|
stroke_color: :black, stroke_width: '0.014in', fill_color: :pink |
|
) |
|
text( |
|
str: %w[One Two Three Four Five Six Seven Eight Nine], |
|
x: '27mm', y: '35mm', width: '11.8mm', height: '6mm', |
|
align: :center, valign: :middle |
|
) |
|
save_pdf file: 'hex_tiles.pdf', template_file: 'templates/hex_tiles.yml' |
|
end
|
|
|