从 Goocanvas::Points 获取坐标

发布于 2024-09-09 04:44:20 字数 884 浏览 6 评论 0原文

我试图从 goocanvasmm 中的 Goocanvas::Points 实例获取坐标。我有这个:

double x = 0, y = 0;
int i;
Goocanvas::Points points;
Glib::RefPtr<Goocanvas::Item> root = canvaswidget.get_root_item();
Glib::RefPtr<Goocanvas::Polyline> line = Goocanvas::Polyline::create(100, 100, 110, 120);
root->add_child(line);
points = line->property_points().get_value();
for (i = 0; i < 2; i++){
    points.get_coordinate(i, &x, &y);
    printf("%f03, %f03", x, y);
}

哪个应该有效。但当我尝试编译时它会输出:

main.cpp: In function ‘int main(int, char**)’:
main.cpp:21: error: no matching function for call to ‘Goocanvas::Points::get_coordinate(int&, double*, double*)’
/usr/include/goocanvasmm-0.1/goocanvasmm/points.h:82: note: candidates are: void Goocanvas::Points::get_coordinate(int, double&, double&) const
make: *** [all] Error 1

I'm attempting to get the coordinates from an instance of Goocanvas::Points in goocanvasmm. I have this:

double x = 0, y = 0;
int i;
Goocanvas::Points points;
Glib::RefPtr<Goocanvas::Item> root = canvaswidget.get_root_item();
Glib::RefPtr<Goocanvas::Polyline> line = Goocanvas::Polyline::create(100, 100, 110, 120);
root->add_child(line);
points = line->property_points().get_value();
for (i = 0; i < 2; i++){
    points.get_coordinate(i, &x, &y);
    printf("%f03, %f03", x, y);
}

Which should work. But it outputs this when I try to compile:

main.cpp: In function ‘int main(int, char**)’:
main.cpp:21: error: no matching function for call to ‘Goocanvas::Points::get_coordinate(int&, double*, double*)’
/usr/include/goocanvasmm-0.1/goocanvasmm/points.h:82: note: candidates are: void Goocanvas::Points::get_coordinate(int, double&, double&) const
make: *** [all] Error 1

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心作怪 2024-09-16 04:44:20

你试过这个吗?

points.get_coordinate(i, x, y);

Have you tried this?

points.get_coordinate(i, x, y);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文