Sha256: b5f7b6f86bcc1bb5b24e213ce054ff9e852f9d3029ce8caec17ada4e8d91b3d9

Contents?: true

Size: 1.05 KB

Versions: 4

Compression:

Stored size: 1.05 KB

Contents

# encoding: utf-8

# join_style.rb : Implements stroke join styling
#
# Contributed by Daniel Nelson. October, 2009
#
# This is free software. Please see the LICENSE and COPYING files for details.
#
module Prawn
  module Graphics
    module JoinStyle
      JOIN_STYLES = { :miter => 0, :round => 1, :bevel => 2 }

      # 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
      #
      def join_style(style=nil)
        return current_join_style || :miter if style.nil?

        self.current_join_style = style

        write_stroke_join_style
      end

      alias_method :join_style=, :join_style

      private

      def current_join_style
        graphic_state.join_style
      end

      def current_join_style=(style)
        graphic_state.join_style = style
      end


      def write_stroke_join_style
        add_content "#{JOIN_STYLES[current_join_style]} j"
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
prawn-0.14.0 lib/prawn/graphics/join_style.rb
prawn-0.13.2 lib/prawn/graphics/join_style.rb
prawn-0.13.1 lib/prawn/graphics/join_style.rb
prawn-0.13.0 lib/prawn/graphics/join_style.rb