(unitCfg unitConfigurator, u ...*float64)
| 116 | } |
| 117 | |
| 118 | func unitsToPointsVar(unitCfg unitConfigurator, u ...*float64) { |
| 119 | for x := 0; x < len(u); x++ { |
| 120 | *u[x] = unitsToPoints(unitCfg, *u[x]) |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | // PointsToUnitsVar converts points to the provided units for all variables supplied |
| 125 | func PointsToUnitsVar(t int, u ...*float64) { |
no test coverage detected
searching dependent graphs…