Graphmath.Mat44.apply

You're seeing just the function apply, go back to Graphmath.Mat44 module for more information.

Specs

apply(mat44(), vec4()) :: vec4()

apply( a, v ) transforms a vec4 by a mat44.

a is the mat44 to transform by.

v is the vec4 to be transformed.

This returns a vec4 representing A**v**.

This is the "full" application of a matrix, and uses all elements.