class PdflibMini::Handle::Path
Constants
- INFO_KEYWORD
Public Class Methods
new(path, p)
click to toggle source
Calls superclass method
# File lib/pdflib_mini/handle/path.rb, line 15 def initialize(path, p) super(path) @p = p end
Public Instance Methods
add_path_point(*args)
click to toggle source
7.6 Path
Objects int add_path_point
(int path, float x, float y, string type, string optlist)
# File lib/pdflib_mini/handle/path.rb, line 22 def add_path_point(*args) @p.add_path_point(self, *args) end
delete_path()
click to toggle source
7.6 Path
Objects delete_path
(int path)
# File lib/pdflib_mini/handle/path.rb, line 40 def delete_path @p.delete_path(self) end
draw_path(*args)
click to toggle source