trassel
Version:
Graph computing in JavaScript
12 lines (11 loc) • 321 B
TypeScript
/**
* Component that pulls connected nodes closer to each other.
* I.e. nodes that have edges between them.
*/
export default class Link extends LayoutComponent {
count: any[];
bias: any[];
initialize(...args: any[]): void;
execute(alpha: any): void;
}
import LayoutComponent from "./layoutcomponent";