dbm
Version:
12 lines (9 loc) • 387 B
JavaScript
import Dbm from "../../index.js";
export const floodColor = function(aR, aG, aB, aNumberOfDecimals = 4) {
let values = "";
values += "0 0 0 0 " + (aR/255).toFixed(aNumberOfDecimals) + " ";
values += "0 0 0 0 " + (aG/255).toFixed(aNumberOfDecimals) + " ";
values += "0 0 0 0 " + (aB/255).toFixed(aNumberOfDecimals) + " ";
values += "0 0 0 1 0";
return values;
}