remove vec3.tuple (dupe of unpack)

This commit is contained in:
Colby Klein 2015-04-25 05:50:22 -07:00
parent 4cecab73c2
commit f60a7a144c

View File

@ -107,10 +107,6 @@ function vector.dot(a,b)
return a.x*b.x + a.y*b.y + a.z*b.z
end
function vector:tuple()
return self.x, self.y, self.z
end
function vector:len2()
return self.x * self.x + self.y * self.y + self.z * self.z
end