Method: PDF::Reader::TransformationMatrix#initialize
- Defined in:
- lib/pdf/reader/transformation_matrix.rb
#initialize(a, b, c, d, e, f) ⇒ TransformationMatrix
Returns a new instance of TransformationMatrix.
19 20 21 |
# File 'lib/pdf/reader/transformation_matrix.rb', line 19 def initialize(a, b, c, d, e, f) @a, @b, @c, @d, @e, @f = a, b, c, d, e, f end |