UNPKG

@antv/x6

Version:

JavaScript diagramming library that uses SVG and HTML for rendering.

39 lines (34 loc) 914 B
import { FunctionExt } from '../../util' import { Point } from '../../geometry' import { Edge } from '../../model/edge' import { CellView } from '../../view/cell' import { EdgeView } from '../../view/edge' import { ConnectionStrategy } from '../connection-strategy' export function getAnchor( this: EdgeView, pos: Point.PointLike, terminalView: CellView, terminalMagnet: Element, type: Edge.TerminalType, ) { const end = FunctionExt.call( ConnectionStrategy.presets.pinRelative, this.graph, {} as Edge.TerminalCellData, terminalView, terminalMagnet, pos, this.cell, type, {}, ) return end.anchor } export function getViewBBox(view: CellView, quick?: boolean) { if (quick) { return view.cell.getBBox() } return view.cell.isEdge() ? (view as EdgeView).getConnection()!.bbox()! : view.getUnrotatedBBoxOfElement(view.container as SVGElement) }