class PDF::Inspector::Graphics::Curve

Attributes

coords[R]

Public Class Methods

new() click to toggle source
# File lib/pdf/inspector/graphics.rb, line 44
def initialize
  @coords = []          
end

Public Instance Methods

append_curved_segment(*params) click to toggle source
# File lib/pdf/inspector/graphics.rb, line 52
def append_curved_segment(*params)
  @coords += params
end
begin_new_subpath(*params) click to toggle source
# File lib/pdf/inspector/graphics.rb, line 48
def begin_new_subpath(*params)   
  @coords += params
end