class Rozi::TrackProperties

Represents the track properties at the top of an Ozi Explorer track file

Constants

PROPERTIES

Public Class Methods

new(*args, **kwargs) click to toggle source
Calls superclass method
# File lib/rozi/tracks.rb, line 63
def initialize(*args, **kwargs)
  update(
    datum: "WGS 84",
    line_width: 2,
    color: 255,
    description: "",
    skip_value: 1,
    type: 0,
    fill_style: 0,
    fill_color: 0
  )

  super
end

Public Instance Methods

color=(color) click to toggle source
Calls superclass method
# File lib/rozi/tracks.rb, line 78
def color=(color)
  super interpret_color(color)
end