-
Notifications
You must be signed in to change notification settings - Fork 0
Only1DArray
Nonki Takahashi edited this page Apr 24, 2017
·
3 revisions
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.
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
Copyright © 2017-2019 Nonki Takahashi.
This work is licensed under a Creative Commons Attribution 4.0 International License.