site/node_modules/d3-hierarchy/src/treemap/sliceDice.js

7 lines
176 B
JavaScript
Raw Normal View History

2024-10-14 08:09:33 +02:00
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);
}