Skip to content
forked from szecsi/WebGLMath

JavaScript uniform reflection and vector-matrix library for WebGL development. Designed for educational clarity.

License

Notifications You must be signed in to change notification settings

tyekx/WebGLMath

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 

Repository files navigation

WebGLMath

A Vector math library for WebGL programming. Primarily intended for graphics education, with a focused set of features. Coded by Laszlo Szecsi for courses at the Aquincum Institute of Technology and the Budapest University of Technology and Economics.

Features

  • Scalar, 2D, 3D, and 4D vector, and matrix types, with corresponding array types.
  • Support for implementing reflection of ESSL variables, including arrays, and non-vector types Sampler2D and SamplerCube.
  • Offers programmer-friendly interface for expressive non-performance-critical code (e.g. scene setup).
  • Also offers highly optimized methods for for performance-critical-code (e.g. per frame animation).
  • Array methods for optimized bulk processing of data.

Browser install

Currently, there is no minified version. Include all files in html using script tags. This is intentional to make source code instantly referenceable and debuggable for educational purposes and testing.

Usage

a = b + c

can be computed as

var a = b.plus(c);

when a does not yet exist, and performance does not matter. It is not required that c is the same vector type as b: it can be a vector of different length, an object literal, or the coordinates can be given as separate arguments.

a.set(b).add(c);

is about three times faster. Variable a needs to exist, and be a vector object. Neither b nor c are required to be objects of the same vector type: they can be vectors of different length, object literals, or the coordinates can be given as separate arguments.

If a, b and c are vector instances of similar length,

a.setSum(b, c);

can be used for optimum performance. It is seven times faster than a.set(b).add(c);, or twenty times faster than a = b.plus(c);.

It is recommended to use optimized methods for time-critical per-frame tasks, while programmer-friendly interfaces are useful for one-time initializations, e.g. when constructing a scene.

Vectors are considered row vectors. Transforming a vector is performed by multiplying the vector with a matrix from the right.

var v = new Vec4(1, 2, 3, 1);
var m = new Mat4().rotate(Math.PI/2, {z:1});
v.mul(m); // v <= (-2, 1, 3, 1);
console.table(v);

Only 4x4 matrices, i.e. Mat4s, are supported. When transforming Vec2s and Vec3s, there are two options. When using methods Vec2.prototype.xy01mul or Vec3.prototype.xyz1mul, the vector is augmented to a homogeneous four-element position by appending a zero and a one, or a one, respectively. The extra coordinates from the result are discarded.

var v = new Vec2(1, 2);
var m = new Mat4().translate(3, 4);
v.xy01mul(m); // v <= (4, 6), the translated vector
console.table(v);

When using methods Vec2.prototype.xy00mul or Vec3.prototype.xyz0mul, the vector is augmented to a homogeneous four-element direction vector by appending zeros. The extra coordinates from the result are discarded.

var v = new Vec3(0, 1, 0);
var m = new Mat4().translate(3, 4).rotate(Math.PI/2, {z:1});
v.xyz0mul(m); // v <= (-1, 0, 0), as the direction is invariant to translation
console.table(v);

The coordinate system is assumed to be right-handed, i.e. rotations around the z axis rotate counterclockwise in the xy plane, if x points to the right and y upwards.

Matrices are represented in the column-major format internally to conform to the WebGL uniform variable layout. However, constructors, set methods take array input in the row-major layout to allow explicit matrix specification. Indexing matrix variables is also consistent with this row-major layout.

var m = new Mat4([
  1, 0, 0, 0,
  0, 1, 0, 0,
  0, 0, 1, 0,
  2, 3, 5, 1,
]); // a translation matrix
var m2 = new Mat4().translate(-2, -3, -5); //identity multiplied by translation in the opposite direction
m.mul(m2); // m <= identity
var randomVector = Vec4.random(); // create a random vector to test that any vector is transformed to itself
var errorVector = randomVector.minus( randomVector.times(m) ); // errorVector <= (0, 0, 0, 0)
console.table(errorVector);

Uniform Reflection

Uniforms can be reflected using the UniformReflection object. To reflect uniforms into an object use the following functions

// adding properties to object
UniformReflection.addProperties(gl, glProgram, object);

// [R/W object values]

// commiting values
UniformReflection.commitProperties(gl, glProgram, object);

Adding properties are required once at the initialization time, then updating the values each frame, then commit the changes at the end of the frame.

The reflection works the following way

// GLSL code
struct Material {
    vec4 diffuse;
    vec3 fresnelR0;
    float shininess;
};

uniform Material materials[16];

This can be used the following way in the JS code:

// JS
// UniformReflection.addProperties(gl, glProgram, traceProgram); happened during initialization
for(let i = 0; i < traceProgram.materials.getSize(); ++i) {
  traceProgram.materials.at(i).diffuse.set(new Vec4());
}
// commit afterwards

This can be extended to the desired depth

// GLSL
struct Foo {
  float value[16];
};

struct Bar {
  Foo foo[16];
};

uniform Bar bar[16];
traceProgram.bar.at(i).foo.at(j).value.at(k).set(0);
// commit afterwards

In short, use at() function to access arrays, only top level arrays can be bulk updated at this point. In the first example you can not bulk update, in the second example the value can be updated with a Vec1Array with a size of 16.

About

JavaScript uniform reflection and vector-matrix library for WebGL development. Designed for educational clarity.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%