File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -255,7 +255,7 @@ Node.prototype.subdivide = function()
255
255
width :b_w_h ,
256
256
height :b_h_h
257
257
} ,
258
- depth ) ;
258
+ depth , this . _maxDepth , this . _maxChildren ) ;
259
259
260
260
//top right
261
261
this . nodes [ Node . TOP_RIGHT ] = new this . _classConstructor ( {
@@ -264,7 +264,7 @@ Node.prototype.subdivide = function()
264
264
width :b_w_h ,
265
265
height :b_h_h
266
266
} ,
267
- depth ) ;
267
+ depth , this . _maxDepth , this . _maxChildren ) ;
268
268
269
269
//bottom left
270
270
this . nodes [ Node . BOTTOM_LEFT ] = new this . _classConstructor ( {
@@ -273,7 +273,7 @@ Node.prototype.subdivide = function()
273
273
width :b_w_h ,
274
274
height :b_h_h
275
275
} ,
276
- depth ) ;
276
+ depth , this . _maxDepth , this . _maxChildren ) ;
277
277
278
278
279
279
//bottom right
@@ -283,7 +283,7 @@ Node.prototype.subdivide = function()
283
283
width :b_w_h ,
284
284
height :b_h_h
285
285
} ,
286
- depth ) ;
286
+ depth , this . _maxDepth , this . _maxChildren ) ;
287
287
}
288
288
289
289
Node . prototype . clear = function ( )
@@ -428,4 +428,4 @@ if ( typeof Object.getPrototypeOf !== "function" ) {
428
428
}
429
429
*/
430
430
431
- } ( window ) ) ;
431
+ } ( window ) ) ;
You can’t perform that action at this time.
0 commit comments