Sha256: 5ac9f044cf328c1953e5e6e702c8c78b72e054755dc515133eb56ff29642b07e
Contents?: true
Size: 1006 Bytes
Versions: 27
Compression:
Stored size: 1006 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 module Cosmos class GlLight attr_accessor :ambient attr_accessor :diffuse attr_accessor :specular attr_accessor :position attr_accessor :direction attr_accessor :exponent attr_accessor :cutoff attr_accessor :c_attn attr_accessor :l_attn attr_accessor :q_attn def initialize @ambient =[0.0, 0.0, 0.0, 1.0] @diffuse = [1.0, 1.0, 1.0, 1.0] @specular = [0.0, 0.0, 0.0, 1.0] @position = [-2.0, 2.0, 5.0, 0.0] @direction = [0.0, 0.0, -1.0] @exponent = 0.0 @cutoff = 180.0 @c_attn = 1.0 @l_attn = 0.0 @q_attn = 0.0 end end # class Light end # module Cosmos
Version data entries
27 entries across 27 versions & 1 rubygems