UNPKG

pixel-utils

Version:
13 lines (12 loc) 263 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = select_b_r_c; function select_b_r_c(data, depth, r, c) { const pixel = []; for (let b = 0; b < depth; b++) { pixel.push(data[b][r][c]); } return pixel; }