WebGL程式設計指南(3)高階變換與動畫基礎
書本原始碼 https://download.csdn.net/download/qfire/10371055
本章要介紹的技術,是複雜的WebGL程式的基礎。
3.1 平移,然後旋轉
為了簡化程式設計,大多數WebGL開發者都使用矩陣操作函式庫來隱藏矩陣計算的細節,簡化與矩陣有關的操作。目前已經有一些開源的矩陣庫。
本書矩陣變換庫:cuon-matrix.js,允許你通過與OpenGL中類似的方式建立變換矩陣。
var xformMatrix = new Matrix4();
xformMatrix.setRotate(ANGLE, 0, 0, 1); //旋轉角和旋轉軸(x,y,z)
//頂點著色器程式
var VSHADER_SOURCE =
'attribute vec4 a_Position;\n' +
'uniform mat4 u_ModelMatrix;\n' +
'void main() {\n' +
' gl_Position = u_ModelMatrix * a_Position; \n' + //設定座標
'}\n';
//片元著色器程式
var FSHADER_SOURCE =
'void main() {\n' +
' gl_FragColor = vec4(1.0, 0.0, 0.0, 1.0);\n' + //設定顏色
'}\n';
function main() {
var canvas = document.getElementById('webgl');
var gl = getWebGLContext(canvas);
if (!gl) {
console.log("Failed to get the rendering context for WebGL");
return;
}
// 初始化著色器
if (!initShaders(gl, VSHADER_SOURCE, FSHADER_SOURCE)) {
console.log('Failed to initialize shaders.');
return ;
}
//
var n = initVertexBuffers(gl);
if (n < 0) {
console.log("Failed to set the positions of the vertices");
return;
}
var modelMatrix = new Matrix4();
var ANGLE = 60.0;
var Tx = 0.5;
modelMatrix.setRotate(ANGLE, 0, 0, 1); //
modelMatrix.translate(Tx, 0, 0);
var u_ModelMatrix = gl.getUniformLocation(gl.program, 'u_ModelMatrix');
gl.uniformMatrix4fv(u_ModelMatrix, false, modelMatrix.elements);
//註冊滑鼠
//canvas.onmousedown = function(ev) { click(ev, gl, canvas, a_Position, u_FragColor)};
//gl.vertexAttrib3f(a_Position, 0.0, 0.0, 0.0);
//RGBA
gl.clearColor(0.0, 0.0, 0.0, 1.0);
//清空
gl.clear(gl.COLOR_BUFFER_BIT);
//繪製點
gl.drawArrays(gl.TRIANGLES, 0, n); //點的位置和大小
}
function initVertexBuffers(gl) {
var vertices = new Float32Array([
0.0, 0.3, -0.3, -0.3, 0.3, -0.3
]);
var n = 3;
var vertexBuffer = gl.createBuffer();
if (!vertexBuffer) {
console.log("Failed to create the buffer object");
return -1;
}
//
gl.bindBuffer(gl.ARRAY_BUFFER, vertexBuffer);
// Write data into the buffer object
gl.bufferData(gl.ARRAY_BUFFER, vertices, gl.STATIC_DRAW);
//獲取attribute變數的儲存位置
var a_Position = gl.getAttribLocation(gl.program, 'a_Position');
if (a_Position < 0) {
console.log("failed to get the storage location of a_Position");
return;
}
//
gl.vertexAttribPointer(a_Position, 2, gl.FLOAT, false, 0, 0);
//
gl.enableVertexAttribArray(a_Position);
return n;
}
3.2 動畫
將矩陣變換運用到動畫圖形中
不斷擦除和重繪三角形,並且在每次重繪時輕微地改變其角度
//頂點著色器程式
var VSHADER_SOURCE =
'attribute vec4 a_Position;\n' +
'uniform mat4 u_ModelMatrix;\n' +
'void main() {\n' +
' gl_Position = u_ModelMatrix * a_Position; \n' + //設定座標
'}\n';
//片元著色器程式
var FSHADER_SOURCE =
'void main() {\n' +
' gl_FragColor = vec4(1.0, 0.0, 0.0, 1.0);\n' + //設定顏色
'}\n';
var ANGLE_STEP = 45.0;
function main() {
var canvas = document.getElementById('webgl');
var gl = getWebGLContext(canvas);
if (!gl) {
console.log("Failed to get the rendering context for WebGL");
return;
}
// 初始化著色器
if (!initShaders(gl, VSHADER_SOURCE, FSHADER_SOURCE)) {
console.log('Failed to initialize shaders.');
return ;
}
//
var n = initVertexBuffers(gl);
if (n < 0) {
console.log("Failed to set the positions of the vertices");
return;
}
gl.clearColor(0.0, 0.0, 0.0, 1.0);
var u_ModelMatrix = gl.getUniformLocation(gl.program, 'u_ModelMatrix');
//gl.uniformMatrix4fv(u_ModelMatrix, false, modelMatrix.elements);
//三角形的當前旋轉角度
var currentAngle = 0.0;
var modelMatrix = new Matrix4();
//開始繪製三角形
var tick = function() {
currentAngle = animate(currentAngle);
draw(gl, n, currentAngle, modelMatrix, u_ModelMatrix);
requestAnimationFrame(tick);
};
tick();
//註冊滑鼠
//canvas.onmousedown = function(ev) { click(ev, gl, canvas, a_Position, u_FragColor)};
//gl.vertexAttrib3f(a_Position, 0.0, 0.0, 0.0);
//RGBA
//gl.clearColor(0.0, 0.0, 0.0, 1.0);
//清空
//gl.clear(gl.COLOR_BUFFER_BIT);
//繪製點
//gl.drawArrays(gl.TRIANGLES, 0, n); //點的位置和大小
}
function initVertexBuffers(gl) {
var vertices = new Float32Array([
0.0, 0.3, -0.3, -0.3, 0.3, -0.3
]);
var n = 3;
var vertexBuffer = gl.createBuffer();
if (!vertexBuffer) {
console.log("Failed to create the buffer object");
return -1;
}
//
gl.bindBuffer(gl.ARRAY_BUFFER, vertexBuffer);
// Write data into the buffer object
gl.bufferData(gl.ARRAY_BUFFER, vertices, gl.STATIC_DRAW);
//獲取attribute變數的儲存位置
var a_Position = gl.getAttribLocation(gl.program, 'a_Position');
if (a_Position < 0) {
console.log("failed to get the storage location of a_Position");
return;
}
//
gl.vertexAttribPointer(a_Position, 2, gl.FLOAT, false, 0, 0);
//
gl.enableVertexAttribArray(a_Position);
return n;
}
function draw(gl, n, currentAngle, modelMatrix, u_ModelMatrix) {
modelMatrix.setRotate(currentAngle, 0, 0, 1); //
gl.uniformMatrix4fv(u_ModelMatrix, false, modelMatrix.elements);
//清空
gl.clear(gl.COLOR_BUFFER_BIT);
//繪製點
gl.drawArrays(gl.TRIANGLES, 0, n); //點的位置和大小
}
// 記錄上一次呼叫函式的計劃
var g_last = Date.now();
function animate(angle) {
var now = Date.now();
var elapsed = now - g_last;
g_last = now;
var newAngle = angle + (ANGLE_STEP * elapsed) / 1000.0;
return newAngle %= 360;
}
相關文章
- WebGL程式設計指南(8)高階技術Web程式設計
- WebGL程式設計指南(2)繪製和變換三角形Web程式設計
- webgl 系列 —— 變換矩陣和動畫Web矩陣動畫
- shell程式設計-高階變數程式設計變數
- WebGL程式設計指南(6)光照Web程式設計
- WebGL程式設計指南(4)顏色與紋理Web程式設計
- VisualDMIS 6.5更換架ACR3 高階程式設計程式設計
- 高階bash/shell指令碼程式設計指南指令碼程式設計
- WebGL程式設計指南(1)簡介Web程式設計
- VS Code 程式碼片段指南: 從基礎到高階技巧
- [譯]AppExtension程式設計指南:擴充套件基礎3APP程式設計套件
- WebGL程式設計指南(7)層次模型Web程式設計模型
- css3高階動畫CSSS3動畫
- 設計模式基礎 之 4 高階函式設計模式函式
- 《WebGL程式設計指南》學習筆記——1.WebGL概述Web程式設計筆記
- 《 Angular高階程式設計(第4版)》之“Angular 基礎知識”Angular程式設計
- Python 指令碼高階程式設計:從基礎到實踐Python指令碼程式設計
- 如何從初級程式設計師變成高階程式設計師?程式設計師
- iOS動畫程式設計-Layer動畫[ 6 ] 高階時間控制Advanced TimingiOS動畫程式設計
- 3D遊戲程式設計與設計4——遊戲物件與圖形基礎3D遊戲程式設計物件
- Rust 程式設計影片教程(進階)——027_3 高階特性 3Rust程式設計
- 1.2程式設計基礎之變數定義、賦值及轉換程式設計變數賦值
- Socket原理與程式設計基礎程式設計
- WebGL程式設計指南(5)進入三維世界Web程式設計
- C++程式設計基礎(2)變數C++程式設計變數
- PHP高階程式設計:模式、框架與測試PHP程式設計模式框架
- Rust 程式設計視訊教程(進階)——027_3 高階特性 3Rust程式設計
- JS高階程式設計第3章--精簡版JS程式設計
- 【疑問】《JavaScript高階程式設計(第3版)》(1)JavaScript程式設計
- 【筆記】《JavaScript高階程式設計(第3版)》(1)筆記JavaScript程式設計
- 【筆記】《JavaScript高階程式設計(第3版)》(2)筆記JavaScript程式設計
- 《JavaScript高階程式設計(第3版)》讀後感JavaScript程式設計
- Redis 基礎、高階特性與效能調優Redis
- Redis基礎、高階特性與效能調優Redis
- Java程式設計指南:高階技巧解析 - Excel單元格樣式的程式設計設定Java程式設計Excel
- Unix環境高階程式設計——第一章-UNIX基礎知識程式設計
- Oracle 高階程式設計 01 ~Oracle程式設計
- 《JavaScript高階程式設計》第3版與第2版有何差異?JavaScript程式設計