File size: 176 Bytes
bc20498
 
 
 
 
 
1
2
3
4
5
6
7
import dice from "./dice.js";
import slice from "./slice.js";

export default function(parent, x0, y0, x1, y1) {
  (parent.depth & 1 ? slice : dice)(parent, x0, y0, x1, y1);
}