Projeção isométrica WebGL

Tudo bem, enlouquecendo aqui. Estou fazendo algum WebGL e estou tentando fazer um cubo isométrico. Eu não quero usar o Three.js. Quero primeiro entender o que está errado no meu código. Eu tenho pesquisado e os únicos tutoriais que posso encontrar parecem ser para OpenGL

De qualquer forma, aqui está a minha função drawScene:

function drawScene() {

this.gl.clear(this.gl.COLOR_BUFFER_BIT | this.gl.DEPTH_BUFFER_BIT);
mat4.perspective(45, this.gl.viewportWidth / this.gl.viewportHeight, 0.1, 100.0, pMatrix);
mvMatrix = mat4.lookAt([0,0,40], [0, 0, 0], [0, 1, 0]);

_globalNext = this._first;

    while(_globalNext) {
    _globalNext.render();
    }

}

e a função de renderização é

function render() {

mvPushMatrix();

//transform. order matters.
mat4.translate(mvMatrix, [this._x, this._y, this._z]);
mat4.rotate(mvMatrix, 0.01745*this._rot, [this._axisX, this._axisY, this._axisZ]);
mat4.scale(mvMatrix,  [this._scaleX,this._scaleY,this._scaleZ]);

//bind the buffers.
this.gl.bindBuffer(this.gl.ARRAY_BUFFER, this._positionBuff);
this.gl.vertexAttribPointer(this._shader.vertexPositionAttribute, this._positionBuff.itemSize,   this.gl.FLOAT, false, 0, 0);

this.gl.bindBuffer(this.gl.ARRAY_BUFFER, this._colorBuff);
this.gl.vertexAttribPointer(this._shader.vertexColorAttribute, this._colorBuff.itemSize, this.gl.FLOAT, false, 0, 0);

this.gl.bindBuffer(this.gl.ELEMENT_ARRAY_BUFFER, this._indexBuff);
this.setMatrixUniforms(this.gl);
this.gl.drawElements(this.gl.TRIANGLES, this._indexBuff.numItems, this.gl.UNSIGNED_SHORT, 0);

    if(this._usePopper == false) {
    mvPopMatrix();
    } 

_globalNext = this._nextSib;
}

Bastante pedestre. Eu estou usando para desenhar cubos. De qualquer forma, nos exemplos do OpenGL eles parecem acabar com a função de perspectiva, mas aqui, se eu deixar de fora, a minha cena está em branco. Eu sei que a função lookAt está funcionando corretamente, e eu tenho que fazeralguma coisa com a matriz de perspectiva. Uma pequena ajuda seria apreciada. Obrigado!

questionAnswers(1)

yourAnswerToTheQuestion