Graphmath.Vec2.multiply

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

Specs

multiply(vec2(), vec2()) :: vec2()

multiply( a, b) mulitplies element-wise a vec2 (a) by a vec2 (b).

It returns a tuple of the form { axbx, ayby }. multiply( a, b ) multiplies element-wise a vec2 by another vec2.

a is the vec2 multiplicand.

b is the vec2 multiplier.

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