David Briscoe 4dc773865e Reference private.round instead of util.round
Fix "Error: src/lib/cpml/modules/_private_utils.lua:8: attempt to index
    global 'utils' (a nil value)"

Looks like when round was moved to _private_utils, this didn't get
replaced. There is no utils defined and utils.round just points to
private.round.

Add a test. This never triggered test failures because test don't pass
precision.

Test
A love2d program with main.lua:
    local Vec2 = require "cpml.modules.vec2"
    local v = Vec2(1.234, 3.5326)
    print(v:round(0.1))
2021-11-24 09:55:57 -08:00
..
2020-05-03 13:00:22 -04:00
2020-05-03 12:46:30 -04:00
2019-04-23 09:30:44 -07:00
2018-01-26 10:00:38 -05:00
2021-06-15 11:56:04 -07:00
2020-05-03 12:50:42 -04:00