我正在尝试pointT
从Vector<int>
坐标创建一个新的类型对象。这是我的教程引导我的地方,但我得到了它无法将 int 转换为object pointT
. setWall
期望(a,b, bool)
wherea
和b
are 的类型pointT
。
如果这不是方式,我如何xy
从我的向量构建?
谢谢
pointT xy =
{
coords[0],
coords[1]
};
m.setWall(xy.col, xy.col, false);}