Class: Pdfrb::Content::Operator::MoveTo
- Defined in:
- lib/pdfrb/content/operators/path.rb
Overview
Path construction operators (s8.5).
Class Method Summary collapse
Methods inherited from Base
Class Method Details
.invoke(processor, x, y) ⇒ Object
10 11 12 |
# File 'lib/pdfrb/content/operators/path.rb', line 10 def self.invoke(processor, x, y) processor.path_move_to(x.to_f, y.to_f) end |
.name ⇒ Object
9 |
# File 'lib/pdfrb/content/operators/path.rb', line 9 def self.name; "m"; end |