Sha256: 59f0089db6dfafc1ebcb07574d8d7f78af99d5133ab48c54ebb784cfcfe46262

Contents?: true

Size: 982 Bytes

Versions: 2

Compression:

Stored size: 982 Bytes

Contents

# frozen_string_literal: true

# The cap style defines how the edge of a line or curve will be drawn. There are
# three types: <code>:butt</code> (the default), <code>:round</code> and
# <code>:projecting_square</code>
#
# The difference is better seen with thicker lines. With <code>:butt</code>
# lines are drawn starting and ending at the exact points provided. With both
# <code>:round</code> and <code>:projecting_square</code> the line is projected
# beyond the start and end points.
#
# Just like <code>line_width=</code> the <code>cap_style=</code> method needs an
# explicit receiver to work.

require_relative '../example_helper'

filename = File.basename(__FILE__).gsub('.rb', '.pdf')
Prawn::ManualBuilder::Example.generate(filename) do
  stroke_axis

  self.line_width = 25

  %i[butt round projecting_square].each_with_index do |cap, i|
    self.cap_style = cap

    y = 250 - i * 100
    stroke_horizontal_line 100, 300, at: y
    stroke_circle [400, y], 15
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
prawn-2.4.0 manual/graphics/stroke_cap.rb
prawn-2.3.0 manual/graphics/stroke_cap.rb