Vec3ExampleCode
From Crumbled World Wiki
Example Code
local a = Vec3(6,8,0)
local b = a + Vec3(-2,-2, 1) * 2
print("Vec3(" . .b.x .. ", " .. b.y .. ", " .. b.z .. ")") --print Vec3(2.0, 4.0, 2.0)
a:normalize()
print(tostring(a)) --print Vec3(0.6, 0.8, 0.0)