point.set

Syntax point.set (h, v)

Params h is the numeric value representing the horizontal component of the point.

v is the numeric value representing the vertical component of the point.

Action Creates a point made up of the two values at h and v.

Returns The newly created point

Examples x = 13; y = 100; scratchpad.pt = point.set (x, y)
» true

Examining scratchpad.pt after this script executes reveals a point object with the value 13,100.

Notes This verb is useful for creating point values for an IAC-aware application.

See Also point.get

Discuss