0

我正在尝试pointTVector<int>坐标创建一个新的类型对象。这是我的教程引导我的地方,但我得到了它无法将 int 转换为object pointT. setWall期望(a,b, bool)whereabare 的类型pointT

如果这不是方式,我如何xy从我的向量构建?

谢谢

pointT xy =
{
    coords[0],
    coords[1]
};

m.setWall(xy.col, xy.col, false);}
4

1 回答 1

2

尝试这个:

struct point_t {
    int x;
    int y;
    point_t(const Vector<int>& v)
        :x(v.x),
         y(v.y)
    {}
};

point_t a(vecA);
point_t b(vecB);

m.setWall(a, b, false);
于 2013-03-11T18:23:12.487 回答