class NewTime::Point

Attributes

latitude[RW]
longitude[RW]
tz[RW]

Public Class Methods

new(latitude, longitude, tz) click to toggle source
# File lib/new_time.rb, line 7
def initialize(latitude, longitude, tz)
  @latitude, @longitude, @tz = latitude, longitude, tz
end