class IRB::Vec

def sub(other)

def sub(other)
  Vec.new(@x - other.x, @y - other.y, @z - other.z)
end