Class: Raylib::Vector3

Inherits:
FFI::Struct
  • Object
show all
Defined in:
lib/raylib_main.rb,
lib/raylib_helper.rb

Overview

Vector3, 3 components

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.copy_from(vec) ⇒ Object



120
121
122
# File 'lib/raylib_helper.rb', line 120

def self.copy_from(vec)
  Vector3.create(vec[:x], vec[:y], vec[:z])
end

.create(x = 0, y = 0, z = 0) ⇒ Object



116
117
118
# File 'lib/raylib_helper.rb', line 116

def self.create(x = 0, y = 0, z = 0)
  Vector3.new.set(x, y, z)
end

Instance Method Details

#set(x, y, z) ⇒ Object



124
125
126
127
128
129
# File 'lib/raylib_helper.rb', line 124

def set(x, y, z)
  self[:x] = x
  self[:y] = y
  self[:z] = z
  self
end

#to_aObject



131
132
133
# File 'lib/raylib_helper.rb', line 131

def to_a
  [x, y, z]
end

#xObject



441
# File 'lib/raylib_main.rb', line 441

def x = self[:x]

#x=(v) ⇒ Object



442
# File 'lib/raylib_main.rb', line 442

def x=(v) self[:x] = v end

#yObject



443
# File 'lib/raylib_main.rb', line 443

def y = self[:y]

#y=(v) ⇒ Object



444
# File 'lib/raylib_main.rb', line 444

def y=(v) self[:y] = v end

#zObject



445
# File 'lib/raylib_main.rb', line 445

def z = self[:z]

#z=(v) ⇒ Object



446
# File 'lib/raylib_main.rb', line 446

def z=(v) self[:z] = v end