Sha256: 7d3f627fe4b3bb870e2cc92a0962bb1e204bfaaf497bd9e5437a83ac84a13d37

Contents?: true

Size: 1.13 KB

Versions: 3

Compression:

Stored size: 1.13 KB

Contents

# transformation_stack.rb : Stores the transformations that have been applied to
# the document
#
# Copyright 2015, Roger Nesbitt. All Rights Reserved.
#
# This is free software. Please see the LICENSE and COPYING files for details.

require 'matrix'

# rubocop: disable Metrics/ParameterLists
module Prawn
  module TransformationStack
    def add_to_transformation_stack(a, b, c, d, e, f)
      @transformation_stack ||= [[]]
      @transformation_stack.last.push([a, b, c, d, e, f].map(&:to_f))
    end

    def save_transformation_stack
      @transformation_stack ||= [[]]
      @transformation_stack.push(@transformation_stack.last.dup)
    end

    def restore_transformation_stack
      @transformation_stack.pop if @transformation_stack
    end

    def current_transformation_matrix_with_translation(x = 0, y = 0)
      transformations = (@transformation_stack || [[]]).last

      matrix = Matrix.identity(3)

      transformations.each do |a, b, c, d, e, f|
        matrix *= Matrix[[a, c, e], [b, d, f], [0, 0, 1]]
      end

      matrix *= Matrix[[1, 0, x], [0, 1, y], [0, 0, 1]]

      matrix.to_a[0..1].transpose.flatten
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
prawn-2.2.2 lib/prawn/transformation_stack.rb
prawn-2.2.1 lib/prawn/transformation_stack.rb
prawn-2.2.0 lib/prawn/transformation_stack.rb