Graphmath.Vec3.scale

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

scale(a, scale)

Specs

scale(vec3(), float()) :: vec3()

scale( a, scale) uniformly scales a vec3.

a is the vec3 to be scaled.

scale is the float to scale each element of a by.

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