Vec4ExampleCode: Revision history

From Crumbled World Wiki

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

6 July 2025

  • curprev 07:5507:55, 6 July 2025Anders talk contribs 291 bytes +291 Created page with "==Example Code== <syntaxhighlight lang="lua"> local a = Vec4(6, 8, 0, 0) local b = a + Vec4(-2,-2, 1, 0) * 2 print(b.x..", "..b.y..", "..b.z..", "..b.w) --print 2.0, 4.0, 2.0, 0.0 a:normalize() print(a.x..", "..a.y..", "..a.z..", "..b.w) --print 0.6, 0.8, 0.0, 0.0 </syntaxhighlight>"