Only1DArray - nonkit/SmallWikiPad GitHub Wiki

Only1DArray

Use only 1D arrays (not 2D or more). Because 2D or more arrays don't work properly in Visual Basic code generated with [Graduate] command.

Sample Code

shp = shape[i]
shp["x"] = shp["x"] + deltaX
shp["y"] = shp["y"] + deltaY
shape[i] = shp

instead of

shape[i]["x"] = shape[i]["x"] + deltaX
shape[i]["y"] = shape[i]["y"] + deltaY