ここで大丈夫です。WebGLを実行していて、アイソメキューブを作成しようとしています。Three.jsは使いたくない。まず、コードで何が問題になっているのかを理解したいと思います。私は調査してきましたが、私が見つけることができる唯一のチュートリアルはOpenGL用のようです
とにかく-これが私の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();
}
}
レンダリング機能は
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;
}
かなり歩行者。私はそれを使って立方体を描きます。とにかく、OpenGLの例では、パースペクティブ関数が廃止されているように見えますが、ここで省略した場合、シーンは空白になります。lookAt関数が正しく機能していることはわかっているので、パースペクティブマトリックスを使用して何かを行う必要があります。少し助けていただければ幸いです。ありがとうございました!