class Gosuplus::Vec3
Attributes
x[RW]
y[RW]
z[RW]
Public Class Methods
new(x, y, z)
click to toggle source
# File lib/Gosuplus/vec3.rb, line 5 def initialize(x, y, z) @x, @y, @z = x, y, z end