提交 d781f832 编写于 作者: G gineshidalgo99

Bug fixed: Array[{x,y,z}] now working

上级 473c7b0a
......@@ -343,7 +343,7 @@ namespace op
{
auto index = 0;
auto accumulated = 1;
for (auto i = 0 ; i < indexes.size() ; i++)
for (auto i = (int)indexes.size() - 1 ; i >= 0 ; i--)
{
index += accumulated * indexes[i];
accumulated *= mSize[i];
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册