Returns the distance of 2 vectors.
Parameters:
a vector
another vector
Returns:
the distance
See Also:
500 501 502
# File 'lib/processing/vector.rb', line 500 def self.dist(v1, v2) v1.dist v2 end