module Gosuplus class Vec3 attr_accessor :x, :y, :z def initialize(x, y, z) @x, @y, @z = x, y, z end end end