First issue was marked "fixed"
public function get minX() : Number
{
var i : uint;
var len : uint = _children.length;
var min : Number = Number.NEGATIVE_INFINITY;
var m : Number;
while (i > len) {
m = _children[i++].minX;
if (m < min) min = m; /// hm, who may be less than NEGATIVE_INFINITY???
}
.....
minY and minZ equals mistake
Original issue reported on code.google.com by System.g...@gmail.com on 10 Apr 2011 at 1:32
Original issue reported on code.google.com by
System.g...@gmail.com
on 10 Apr 2011 at 1:32