Graphmath.Mat44.make_translate

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

make_translate(tx, ty, tz)

Specs

make_translate(float(), float(), float()) :: mat44()

make_translate( tx, ty, tz ) creates a mat44 that translates a point by tx, ty, and tz.

make_translate( tx, ty, tz ) creates a mat44 that translates a vec3 by (tx, ty, tz).

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

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

tz is a float for translating along the z-axis.

This returns a mat44 which translates by a vec3 { tx, ty, tz }.