Sets the join style for stroked lines and curves
style is one of :miter, :round, or :bevel
NOTE: if this method is never called, :miter will be used for join style throughout the document
# File lib/prawn/graphics/join_style.rb, line 21
21: def join_style(style=nil)
22: return current_join_style || :miter if style.nil?
23:
24: self.current_join_style = style
25:
26: write_stroke_join_style
27: end
# File lib/prawn/graphics/join_style.rb, line 33
33: def current_join_style
34: graphic_state.join_style
35: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.