Remove vec3.tuple (again?). It's a dupe of unpack

This commit is contained in:
Colby Klein 2015-07-25 19:29:11 -07:00
parent 01f7aeeff9
commit 59e844dd34

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