§ Куб, который вращался
Суть такова. Есть набор вершин и есть набор цветов к ним. А также вращение вокруг своей оси.

§ Инициализация
init(gl)
{
this.shader = this.loadShader();
const vertices = [
-1.0, -1.0, 1.0,
1.0, -1.0, 1.0,
1.0, 1.0, 1.0,
-1.0, 1.0, 1.0,
-1.0, -1.0, -1.0,
-1.0, 1.0, -1.0,
1.0, 1.0, -1.0,
1.0, -1.0, -1.0,
-1.0, 1.0, -1.0,
-1.0, 1.0, 1.0,
1.0, 1.0, 1.0,
1.0, 1.0, -1.0,
-1.0, -1.0, -1.0,
1.0, -1.0, -1.0,
1.0, -1.0, 1.0,
-1.0, -1.0, 1.0,
1.0, -1.0, -1.0,
1.0, 1.0, -1.0,
1.0, 1.0, 1.0,
1.0, -1.0, 1.0,
-1.0, -1.0, -1.0,
-1.0, -1.0, 1.0,
-1.0, 1.0, 1.0,
-1.0, 1.0, -1.0,
];
const colors = [
[1.0, 1.0, 1.0, 1.0],
[1.0, 0.0, 0.0, 1.0],
[0.0, 1.0, 0.0, 1.0],
[0.0, 0.0, 1.0, 1.0],
[0.0, 1.0, 1.0, 1.0],
[1.0, 0.0, 1.0, 1.0],
];
const indicies = [
0, 1, 2, 0, 2, 3,
4, 5, 6, 4, 6, 7,
8, 9, 10, 8, 10, 11,
12, 13, 14, 12, 14, 15,
16, 17, 18, 16, 18, 19,
20, 21, 22, 20, 22, 23,
];
let newColors = [];
for (let i = 0; i < 6; i++) {
for (let j = 0; j < 4; j++) {
newColors = newColors.concat(colors[i]);
}
}
this.setAttribute(this.shader, this.createBuffer(vertices), 'aPosition', 3);
this.setAttribute(this.shader, this.createBuffer(newColors), 'aColor', 4);
this.bindIndicies(this.createIndicies(indicies));
this._mx = 0; this._my = 0; this._mz = 0;
}
§ Вращение куба в цикле
loop(gl)
{
this.cls(0, 0, 0);
this.camera = this.dot
(
this.matRotZ(this._mz),
this.matRotY(this._my),
this.matRotX(this._mx),
this.matTr(0, 0, -3),
);
this.updateCamera(this.shader);
gl.drawElements(gl.TRIANGLES, 36, gl.UNSIGNED_SHORT, 0);
this._mx -= 0.01;
this._my -= 0.02;
this._mz -= 0.03;
}