1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
# This sets the dashed pattern for lines and curves. The (dash) length defines
# how long each dash will be.
#
# The <code>:space</code> option defines the length of the space between the
# dashes.
#
# The <code>:phase</code> option defines the start point of the sequence of
# dashes and spaces.
#
# Complex dash patterns can be specified by using an array with alternating
# dash/gap lengths for the first parameter (note that the <code>:space</code>
# option is ignored in this case).
require_relative '../example_helper'
filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
stroke_axis
dash([1, 2, 3, 2, 1, 5], phase: 6)
stroke_horizontal_line 50, 500, at: 230
dash([1, 2, 3, 4, 5, 6, 7, 8])
stroke_horizontal_line 50, 500, at: 220
base_y = 210
24.times do |i|
length = (i / 4) + 1
space = length # space between dashes same length as dash
phase = 0 # start with dash
case i % 4
when 0 then base_y -= 5
when 1 then phase = length # start with space between dashes
when 2 then space = length * 0.5 # space between dashes half as long as dash
when 3
space = length * 0.5 # space between dashes half as long as dash
phase = length # start with space between dashes
end
base_y -= 5
dash(length, space: space, phase: phase)
stroke_horizontal_line 50, 500, at: base_y - (2 * i)
end
end
|