blob: 1683ee947d2d99bc20a1febbbe149f954fc10a7a [file] [log] [blame]
<!DOCTYPE html>
<!--
Copyright (c) 2013 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<link rel="import" href="/base/rect.html">
<script>
'use strict';
tv.exportTo('tv.e.cc', function() {
/**
* @constructor
*/
function Region() {
this.rects = [];
}
Region.fromArray = function(array) {
if (array.length % 4 != 0)
throw new Error('Array must consist be a multiple of 4 in length');
var r = new Region();
for (var i = 0; i < array.length; i += 4) {
r.rects.push(tv.b.Rect.fromXYWH(array[i], array[i + 1],
array[i + 2], array[i + 3]));
}
return r;
}
/**
* @return {Region} If array is undefined, returns an empty region. Otherwise
* returns Region.fromArray(array).
*/
Region.fromArrayOrUndefined = function(array) {
if (array === undefined)
return new Region();
return Region.fromArray(array);
};
Region.prototype = {
__proto__: Region.prototype,
rectIntersects: function(r) {
for (var i = 0; i < this.rects.length; i++) {
if (this.rects[i].intersects(r))
return true;
}
return false;
},
addRect: function(r) {
this.rects.push(r);
}
};
return {
Region: Region
};
});
</script>