当前位置: 首页>>代码示例>>TypeScript>>正文


TypeScript mat4.perspective方法代码示例

本文整理汇总了TypeScript中gl-matrix.mat4.perspective方法的典型用法代码示例。如果您正苦于以下问题:TypeScript mat4.perspective方法的具体用法?TypeScript mat4.perspective怎么用?TypeScript mat4.perspective使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在gl-matrix.mat4的用法示例。


在下文中一共展示了mat4.perspective方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。

示例1: Float32Array

window.addEventListener('resize', ev => {
    const
        canvas = core.gl.canvas,
        {offsetWidth: w, offsetHeight: h} = canvas

    canvas.width = w
    canvas.height = h
    core.gl.viewport(0, 0, w, h)


    const
        ratio = {
            screen: w / h,
            w: (img as HTMLImageElement).width / w,
            h: (img as HTMLImageElement).height  / h,
        }

    ratio.screen > 1 ? ratio.h /= ratio.screen : ratio.w *= ratio.screen

    const
        mixes = new Float32Array([
            -1 * ratio.w, ratio.h, .0, 1.0,
            -1 * ratio.w, -1 * ratio.h, .0, .0,
            ratio.w, ratio.h, 1.0, 1.0,
            ratio.w, -1 * ratio.h, 1.0, .0
        ]),
        bSize = mixes.BYTES_PER_ELEMENT


    core.bufferSubData(core.gl.ARRAY_BUFFER, 0, mixes)

    mat4.perspective(pMatrix, Math.PI / 6, w / h, 0, 100)
    core.uniformMatrix4fv(program, 'pMatrix', pMatrix)
})
开发者ID:JetLua,项目名称:WebGL,代码行数:34,代码来源:texture.bak.ts

示例2: projection_matrix

function projection_matrix(out: mat4, width: number, height: number) {
  let aspectRatio = width / height;
  let fieldOfView = Math.PI / 4;
  let near = 0.01;
  let far  = 1000;

  mat4.perspective(out, fieldOfView, aspectRatio, near, far);
}
开发者ID:sampsyo,项目名称:braid,代码行数:8,代码来源:example.ts

示例3: updateProjectionMatrix

 public updateProjectionMatrix() {
   mat4.perspective(
     this.projectionMatrix,
     this.fov,
     this.aspect,
     this.near,
     this.far
   );
 }
开发者ID:davidpaulrosser,项目名称:leonardo,代码行数:9,代码来源:PerspectiveCamera.ts

示例4:

outMat4 = mat4.rotateZ(outMat4, mat4A, Math.PI);
outMat4 = mat4.fromTranslation(outMat4, vec3A);
outMat4Null = mat4.fromRotation(outMat4, Math.PI, vec3A);
outMat4 = mat4.fromScaling(outMat4, vec3A);
outMat4 = mat4.fromXRotation(outMat4, Math.PI);
outMat4 = mat4.fromYRotation(outMat4, Math.PI);
outMat4 = mat4.fromZRotation(outMat4, Math.PI);
outMat4 = mat4.fromRotationTranslation(outMat4, quatA, vec3A);
outVec3 = mat4.getTranslation(outVec3, mat4A);
outVec3 = mat4.getScaling(outVec3, mat4A);
outQuat = mat4.getRotation(outQuat, mat4A);
outMat4 = mat4.fromRotationTranslationScale(outMat4, quatA, vec3A, vec3B);
outMat4 = mat4.fromRotationTranslationScaleOrigin(outMat4, quatA, vec3A, vec3B, vec3A);
outMat4 = mat4.fromQuat(outMat4, quatB);
outMat4 = mat4.frustum(outMat4, -1, 1, -1, 1, -1, 1);
outMat4 = mat4.perspective(outMat4, Math.PI, 1, 0, 1);
outMat4 = mat4.perspectiveFromFieldOfView(outMat4, {upDegrees:Math.PI, downDegrees:-Math.PI, leftDegrees:-Math.PI, rightDegrees:Math.PI}, 1, 0);
outMat4 = mat4.ortho(outMat4, -1, 1, -1, 1, -1, 1);
outMat4 = mat4.lookAt(outMat4, vec3A, vec3B, vec3A);
outStr = mat4.str(mat4A);
outVal = mat4.frob(mat4A);
outMat4 = mat4.add(outMat4, mat4A, mat4B);
outMat4 = mat4.subtract(outMat4, mat4A, mat4B);
outMat4 = mat4.sub(outMat4, mat4A, mat4B);
outMat4 = mat4.multiplyScalar (outMat4, mat4A, 2);
outMat4 = mat4.multiplyScalarAndAdd (outMat4, mat4A, mat4B, 2);
outBool = mat4.exactEquals(mat4A, mat4B);
outBool = mat4.equals(mat4A, mat4B);

// quat
var deg90 = Math.PI / 2;
开发者ID:DenisCarriere,项目名称:DefinitelyTyped,代码行数:31,代码来源:gl-matrix-tests.ts

示例5: getForm

	selfReferencing: true,
	width: bufferSize,
	height: bufferSize,
	bufferStructure: [
		{
			flipY: true,
			wrap: 'REPEAT',
		},
	],
})

// ===== scene =====

const planMat = mat4.fromTranslation(mat4.create(), [0, 0, -3])
const rotation = 0.001
const projection = mat4.perspective(mat4.create(), 45, 1, 0.01, 10)

const form = getForm(painter, 'plane').update(plane(2, 2))

const shade = getShade(painter, 'plane').update({
	vert: planeVert,
	frag: planeFrag,
})

export const sketch = getSketch(painter, 'plane').update({
	form,
	shade,
	uniforms: {
		projection,
		transform: () => mat4.rotateY(planMat, planMat, rotation),
		tex: () => automaton.image(),
开发者ID:trivial-space,项目名称:playground,代码行数:31,代码来源:renderer.ts


注:本文中的gl-matrix.mat4.perspective方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。