MeshMemblockVertexBlue

Family: Memblock · One form

What it does

MeshMemblockVertexBlue reads from a Memblock object without changing it. It takes memID (an integer) and vertexIndex (an integer), and answers an integer. memID is the id of a memblock, the one CreateMemblock returned: it is how the call knows what to act on.

Syntax

MeshMemblockVertexBlue(memID integer, vertexIndex integer) → integer

Parameters

NameType
memIDinteger
vertexIndexinteger

Every form returns

integer

Example · generated

memblock = CreateMemblock(64)DO  Print(MeshMemblockVertexBlue(memblock, 1))  Sync()LOOP

CreateMemblock is there to give the call something to act on; MeshMemblockVertexBlue 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.

43 commands in Memblock