class AmazonTRP::Point

Attributes

x[R]
y[R]

Public Class Methods

new(x, y) click to toggle source
# File lib/amazon-textract-parser-ruby.rb, line 42
def initialize(x, y)
  @x = x
  @y = y
end

Public Instance Methods

to_s() click to toggle source
# File lib/amazon-textract-parser-ruby.rb, line 47
def to_s
  "(#{@x}, #{@y})"
end