class Vector

def proj(other)

def proj(other)
  dot(other) / other.norm
end