Graphmath.Mat33.make_translate

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

make_translate(tx, ty)

Specs

make_translate(float(), float()) :: mat33()

make_translate( tx, ty ) creates a mat33 that translates a vec2 by (tx, ty).

tx is a float for translating along the x-axis.

ty is a float for translating along the y-axis.

This returns a mat33 which translates by a vec2 { tx, ty }.