UNPKG

image-in-browser

Version:

Package for encoding / decoding images, transforming images, applying filters, drawing primitives on images on the client side (no need for server Node.js)

17 lines 358 B
export class PvrColorBoundingBox { get min() { return this._min; } get max() { return this._max; } constructor(min, max) { this._min = min.copy(); this._max = max.copy(); } add(c) { this._min.setMin(c); this._max.setMax(c); } } //# sourceMappingURL=pvr-color-bounding-box.js.map