如何用opengl将19个点两两相连
答案:1 悬赏:50 手机版
解决时间 2021-12-03 07:24
- 提问者网友:龅牙恐龙妹
- 2021-12-03 01:15
如何用opengl将19个点两两相连
最佳答案
- 五星知识达人网友:你哪知我潦倒为你
- 2021-12-03 02:12
float pos[19][2]; //存储点的位置的数组.
for(int i = 0; i < 19; i ++)
{
cin >> pos[i][0];
cin >> pos[i][1];
}
glBegin(GL_LINES);
for(int i = 0; i < 18; i ++)
for(int j = i + 1; j < 19; j ++)
{
glVertex(pos[i][0], pos[i][1]);
glVertex(pos[j][0], pos[j][1]);
}
glEnd();
for(int i = 0; i < 19; i ++)
{
cin >> pos[i][0];
cin >> pos[i][1];
}
glBegin(GL_LINES);
for(int i = 0; i < 18; i ++)
for(int j = i + 1; j < 19; j ++)
{
glVertex(pos[i][0], pos[i][1]);
glVertex(pos[j][0], pos[j][1]);
}
glEnd();
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯