如何生成一个typemap来处理float数组的set和get。我得到了以下结构:
typedef struct
{
float p[2];
} Point;
我应该在swig接口文件中编写什么才能在Lua代码中编写以下内容:
MyPoint.p[1]=123.456
print(MyPoint.p[1])
我从那里尝试了解决方案:
SWIG how to access a byte array from a c struct in Lua using a Lua table to manipulate
但它对我不起作用......