All public logs
From Crumbled World Wiki
Combined display of all available logs of Crumbled World Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 07:54, 6 July 2025 Anders talk contribs created page Vec3ExampleCode (Created page with "==Example Code== <syntaxhighlight lang="lua"> 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) </syntaxhighlight>")