We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
structure-of-arrays パターンは常用されている (& 推されるべき) なのに knowbug で見づらいというデメリットがある。
備考: structure-of-arrays (SoA) とは複数の配列を使ってオブジェクトの配列を表現する技法。例えば平面上に複数の点があるとき、i 番目の点の x, y 座標をそれぞれ配列 xs, ys の i 番目(xs(i), ys(i)) に入れるような方法。
xs(i)
ys(i)
The text was updated successfully, but these errors were encountered:
dim pointx, 10 dim pointy, 10 pointn = 10 // pointx と長さが違うので SoA に含まない #module dim pointw, 10 // pointx と属すモジュールが違うので SoA に含まない #global
Sorry, something went wrong.
No branches or pull requests
structure-of-arrays パターンは常用されている (& 推されるべき) なのに knowbug で見づらいというデメリットがある。
備考: structure-of-arrays (SoA) とは複数の配列を使ってオブジェクトの配列を表現する技法。例えば平面上に複数の点があるとき、i 番目の点の x, y 座標をそれぞれ配列 xs, ys の i 番目(
xs(i)
,ys(i)
) に入れるような方法。The text was updated successfully, but these errors were encountered: