class Graphdown::Point

Attributes

x[RW]
y[RW]

Public Class Methods

new(x = 0, y = 0) click to toggle source
# File lib/graphdown/point.rb, line 5
def initialize(x = 0, y = 0)
  @x = x
  @y = y
end