Vector3X

Family: Maths · One form

What it does

Vector3X takes vectorID (an integer), and answers a float. vectorID is the id of a Vector object, obtained elsewhere in the Maths family.

Syntax

Vector3X(vectorID integer) → float

Parameters

NameType
vectorIDinteger

Every form returns

float

Example · generated

vector = CreateVector3()DO  Print(Vector3X(vector))  Sync()LOOP

CreateVector3 is there to give the call something to act on; Vector3X is the line that matters. 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