VideoDimensions

Family: Video · One form

What it does

VideoDimensions sets Dimensions on a Video object. It takes x (a float), y (a float), width (a float) and height (a float), and returns nothing.

Syntax

VideoDimensions(x float, y float, width float, height float)

Parameters

NameType
xfloat
yfloat
widthfloat
heightfloat

Every form returns

nothing

Example · generated

VideoDimensions(100.0, 120.0, 64.0, 64.0)DO  Sync()LOOP

VideoDimensions 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.

18 commands in Video