Sha256: 2397433b1d1bfad56d262a9b9a971f2d5d208cc81d37971b096d4a0b1fbd9d4f

Contents?: true

Size: 840 Bytes

Versions: 12

Compression:

Stored size: 840 Bytes

Contents

# encoding: ascii-8bit

# Copyright 2014 Ball Aerospace & Technologies Corp.
# All Rights Reserved.
#
# This program is free software; you can modify and/or redistribute it
# under the terms of the GNU General Public License
# as published by the Free Software Foundation; version 3 with
# attribution addendums as found in the LICENSE.txt

require 'cosmos'
require 'cosmos/gui/opengl/texture_mapped_sphere'

module Cosmos
  # Three dimensional model of the earth by mapping a picture of the earth onto
  # a sphere.
  class EarthModel < TextureMappedSphere
    # @param x (see TextureMappedSphere#initialize)
    # @param y (see TextureMappedSphere#initialize)
    # @param z (see TextureMappedSphere#initialize)
    def initialize(x, y, z)
      super(x, y, z, File.join(::Cosmos::PATH, 'data', 'Earthmap1024x512.gif'))
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
cosmos-4.5.2-java lib/cosmos/gui/opengl/earth_model.rb
cosmos-4.5.2 lib/cosmos/gui/opengl/earth_model.rb
cosmos-4.5.1-java lib/cosmos/gui/opengl/earth_model.rb
cosmos-4.5.1 lib/cosmos/gui/opengl/earth_model.rb
cosmos-4.5.0-java lib/cosmos/gui/opengl/earth_model.rb
cosmos-4.5.0 lib/cosmos/gui/opengl/earth_model.rb
cosmos-4.4.2-java lib/cosmos/gui/opengl/earth_model.rb
cosmos-4.4.2 lib/cosmos/gui/opengl/earth_model.rb
cosmos-4.4.1-java lib/cosmos/gui/opengl/earth_model.rb
cosmos-4.4.1 lib/cosmos/gui/opengl/earth_model.rb
cosmos-4.4.0-java lib/cosmos/gui/opengl/earth_model.rb
cosmos-4.4.0 lib/cosmos/gui/opengl/earth_model.rb