OpenGL在for循环中绘制正方形

发布于 2024-12-12 00:47:38 字数 672 浏览 0 评论 0原文

我正在尝试画出图中的内容。所以我可以绘制随机彩色方块,但我很难让 for 循环在图案中绘制方块,如图所示。 在此处输入图像描述

代码:

for (int i =0; i < image.width; i = i+5) {
    for (int j = 0; j < image.height; j = j+5) {

        //will this for loop give me what's in the image?
        //want to incorporate the code below in here. Modifications?
        glPushMatrix();
        glTranslatef(i, j, 0);
        glColor3ub( rand()%255, rand()%255, rand()%255 );
        glBegin(GL_QUADS);
        glVertex2i(0,0);
        glVertex2i(1,0);
        glVertex2i(1,1);
        glVertex2i(0,1);
        glEnd();
        glPopMatrix();
    }
}

I am trying to draw what is in the picture. So I can draw the random colored square but I am having trouble getting the for loop to draw squares in the patter like the image. enter image description here

Code:

for (int i =0; i < image.width; i = i+5) {
    for (int j = 0; j < image.height; j = j+5) {

        //will this for loop give me what's in the image?
        //want to incorporate the code below in here. Modifications?
        glPushMatrix();
        glTranslatef(i, j, 0);
        glColor3ub( rand()%255, rand()%255, rand()%255 );
        glBegin(GL_QUADS);
        glVertex2i(0,0);
        glVertex2i(1,0);
        glVertex2i(1,1);
        glVertex2i(0,1);
        glEnd();
        glPopMatrix();
    }
}

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

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

发布评论

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

评论(1

神仙妹妹 2024-12-19 00:47:38

您甚至没有在循环体中使用 ij 。尝试用它们替换 xpos 和 ypos(无论它们是什么)。

You’re not even using i and j in your loop body. Try substituting those for xpos and ypos (whatever those are).

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