0
int x = 100;
int y = 100;
int width = 250;
int height = 250;
int border = 10;

int top     = y + border;
int bottom  = y + height;
int left    = x + border;
int right   = x + width;

static int vertices[] = {
    x,                  y,                  //0
    right,              y,                  //1
    right,              bottom,             //2
    x,                  bottom,             //3

    left,               top,                //4
    right - border,     top,                //5
    right - border,     bottom - border,    //6
    left,               bottom - border,    //7

    left,               top + (height - border - border) * 0.5,
    right - border,     top + (height - border - border) * 0.5
};


static unsigned int indices[] = {
    0, 1, 4, 5, //top border
    5, 1, 6, 2, //right border
    2, 6, 3, 7, //bottom border
    7, 4, 3, 0, //left border

    4, 5, 8, 9,
    8, 9, 7, 6,
};

static unsigned char colors[] = {
    0x00, 0x00, 0x00,
    0x00, 0x00, 0x00,
    0x00, 0x00, 0x00,
    0x00, 0x00, 0x00,

    0xff, 0x00, 0x00,
    0xff, 0x00, 0x00,
    0xff, 0x00, 0x00,
    0xff, 0x00, 0x00,

    0x00, 0xff, 0x00,
    0x00, 0xff, 0x00,
    0x00, 0xff, 0x00,
    0x00, 0xff, 0x00,

    0x00, 0x00, 0xff,
    0x00, 0x00, 0xff,
    0x00, 0x00, 0xff,
    0x00, 0x00, 0xff,
};

我当前不需要的输出:

在此处输入图像描述

在这种实现中是否可以在单个四边形上应用单一颜色?

4

1 回答 1

3

一个常见的误解是“顶点”的意思是“位置”。顶点是它的属性的整体组合,其中包括位置、颜色、纹理坐标等。如果两个顶点之间的属性之一不同,那么顶点就不一样。

如果你想给两个四边形不同的纯色,它们不共享顶点。

我认为其余的应该是显而易见的。

于 2013-07-10T17:07:01.957 回答