Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | 15x 15x 15x 1x 1x 1x 1x 1x 1x | import BoundingBox from "../streetLayout/boundingBox"
import { CodeMapNode } from "../../../codeCharta.model"
import { Vector2 } from "three"
import { TreeMapHelper } from "../treeMapLayout/treeMapHelper"
export default abstract class Treemap extends BoundingBox {
protected treeMapNodes: CodeMapNode[] = []
protected metricName: string
protected constructor(rootNode: CodeMapNode) {
super(rootNode)
}
abstract layout(margin: number, origin: Vector2): CodeMapNode[]
calculateDimension(metricName: string): void {
this.metricName = metricName
this.metricValue = TreeMapHelper.calculateSize(this.mapNode, metricName)
this.width = Math.sqrt(this.metricValue)
this.height = Math.sqrt(this.metricValue)
}
}
|