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

7.6 Path Objects draw_path(int path, float x, float y, string optlist)

# File lib/pdflib_mini/handle/path.rb, line 28
def draw_path(*args)
  @p.draw_path(self, *args)
end
info_path(*args) click to toggle source

7.6 Path Objects float info_path(int path, string keyword, string optlist)

# File lib/pdflib_mini/handle/path.rb, line 34
def info_path(*args)
  @p.info_path(self, *args)
end