blob: d5c84b71563a6f4de2ca0b4e4115f1500a874ce1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// 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.
'use strict';
base.require('base.rect');
base.exportTo('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(base.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;
}
};
return {
Region: Region
};
});
|