Vector3Y

Family: Maths · One form

What it does

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

Syntax

Vector3Y(vectorID integer) → float

Parameters

NameType
vectorIDinteger

Every form returns

float

Example · generated

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

CreateVector3 is there to give the call something to act on; Vector3Y 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