module Prawn::Graphics::CapStyle

Constants

CAP_STYLES

Public Instance Methods

cap_style(style=nil) click to toggle source

Sets the cap style for stroked lines and curves

style is one of :butt, :round, or :projecting_square

NOTE: If this method is never called, :butt will be used by default.

# File lib/prawn/graphics/cap_style.rb, line 20
def cap_style(style=nil)
  return @cap_style || :butt if style.nil?

  @cap_style = style

  write_stroke_cap_style
end
Also aliased as: cap_style=
cap_style=(style=nil)
Alias for: cap_style