Vector3Multiply

Family: Maths · One form

What it does

Vector3Multiply takes resultVec (an integer) and multiplier (a float), and returns nothing.

Syntax

Vector3Multiply(resultVec integer, multiplier float)

Parameters

NameType
resultVecinteger
multiplierfloat

Every form returns

nothing

Example · generated

Vector3Multiply(1, 1.0)DO  Sync()LOOP

Vector3Multiply 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