Class: AsciiTree::Coordinate

Inherits:
Object
  • Object
show all
Defined in:
lib/ascii_tree/coordinate.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(x:, y:) ⇒ Coordinate

Returns a new instance of Coordinate.



5
6
7
8
# File 'lib/ascii_tree/coordinate.rb', line 5

def initialize(x:, y:)
  @x = x
  @y = y
end

Instance Attribute Details

#xObject (readonly)

Returns the value of attribute x.



3
4
5
# File 'lib/ascii_tree/coordinate.rb', line 3

def x
  @x
end

#yObject (readonly)

Returns the value of attribute y.



3
4
5
# File 'lib/ascii_tree/coordinate.rb', line 3

def y
  @y
end

Instance Method Details

#==(other) ⇒ Object



10
11
12
# File 'lib/ascii_tree/coordinate.rb', line 10

def ==(other)
  x == other.x && y == other.y
end