Graphmath.Vec3.equal

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

equal(arg1, arg2)

Specs

equal(vec3(), vec3()) :: boolean()

equal(a, b) checks to see if two vec3s a and b are equivalent.

a is the vec3.

b is the vec3.

It returns true if the vectors have equal elements.

Note that due to precision issues, you may want to use equal/3 instead.

Link to this function

equal(arg1, arg2, eps)

Specs

equal(vec3(), vec3(), float()) :: boolean()

equal(a, b, eps) checks to see if two vec3s a and b are equivalent within some tolerance.

a is the vec3.

b is the vec3.

eps is the tolerance, a float.

It returns true if the vectors have equal elements within some tolerance.