Graphmath.Vec3.multiply

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

Specs

multiply(vec3(), vec3()) :: vec3()

multiply( a, b) multiplies element-wise a vec3 by another vec3.

a is the vec3 multiplicand.

b is the vec3 multiplier.

It returns a vec3 of the form { a<sub>x</sub>b<sub>x</sub>, a<sub>y</sub>b<sub>y</sub>, a<sub>z</sub>b<sub>z</sub> }.