class PDF::Reader::EventPoint

Utility class used to avoid modifying the underlying TextRun objects while we're looking for duplicates

Attributes

run[R]
x[R]

Public Class Methods

new(x, run) click to toggle source
# File lib/pdf/reader/overlapping_runs_filter.rb, line 56
def initialize x, run
  @x, @run = x, run
end

Public Instance Methods

start?() click to toggle source
# File lib/pdf/reader/overlapping_runs_filter.rb, line 60
def start?
  @x == @run.x
end