Vector3Add

Family: Maths · One form

What it does

Vector3Add takes resultVec (an integer) and addVec (an integer), and returns nothing.

Syntax

Vector3Add(resultVec integer, addVec integer)

Parameters

NameType
resultVecinteger
addVecinteger

Every form returns

nothing

Example · generated

Vector3Add(1, 1)DO  Sync()LOOP

Vector3Add is called with values of the types its signature asks for. The DO … LOOP is not decoration: a classic BASIC program ends the moment it runs out of lines, and Sync() is what draws the frame.

12 commands in Maths