UnitsToPointsVar converts units of the provided type to points for all variables supplied
(t int, u ...*float64)
| 112 | |
| 113 | // UnitsToPointsVar converts units of the provided type to points for all variables supplied |
| 114 | func UnitsToPointsVar(t int, u ...*float64) { |
| 115 | unitsToPointsVar(defaultUnitConfig{Unit: t}, u...) |
| 116 | } |
| 117 | |
| 118 | func unitsToPointsVar(unitCfg unitConfigurator, u ...*float64) { |
| 119 | for x := 0; x < len(u); x++ { |
nothing calls this directly
no test coverage detected
searching dependent graphs…