Class: PDF::Inspector::Graphics::Matrix
- Inherits:
-
PDF::Inspector
- Object
- PDF::Inspector
- PDF::Inspector::Graphics::Matrix
- Defined in:
- lib/pdf/inspector/graphics.rb
Instance Attribute Summary collapse
-
#matrices ⇒ Object
readonly
Returns the value of attribute matrices.
Instance Method Summary collapse
- #concatenate_matrix(*values) ⇒ Object
-
#initialize ⇒ Matrix
constructor
A new instance of Matrix.
Methods inherited from PDF::Inspector
Constructor Details
#initialize ⇒ Matrix
Returns a new instance of Matrix.
127 128 129 |
# File 'lib/pdf/inspector/graphics.rb', line 127 def initialize @matrices = [] end |
Instance Attribute Details
#matrices ⇒ Object (readonly)
Returns the value of attribute matrices.
125 126 127 |
# File 'lib/pdf/inspector/graphics.rb', line 125 def matrices @matrices end |
Instance Method Details
#concatenate_matrix(*values) ⇒ Object
131 132 133 |
# File 'lib/pdf/inspector/graphics.rb', line 131 def concatenate_matrix(*values) @matrices << values end |