UNPKG

node-red-contrib-tak-registration

Version:

A Node-RED node to register to TAK and to help wrap files as datapackages to send to TAK

61 lines (59 loc) 1.45 kB
import DirectedEdgeStar from './DirectedEdgeStar' import HashSet from '../../../../java/util/HashSet' import DirectedEdge from './DirectedEdge' import GraphComponent from './GraphComponent' export default class Node extends GraphComponent { constructor () { super() this._pt = null this._deStar = null if (arguments.length === 1) { const pt = arguments[0] Node.call(this, pt, new DirectedEdgeStar()) } else if (arguments.length === 2) { const pt = arguments[0] const deStar = arguments[1] this._pt = pt this._deStar = deStar } } isRemoved () { return this._pt === null } addOutEdge (de) { this._deStar.add(de) } getCoordinate () { return this._pt } getOutEdges () { return this._deStar } remove () { if (arguments.length === 0) { this._pt = null } else if (arguments.length === 1) { const de = arguments[0] this._deStar.remove(de) } } getIndex (edge) { return this._deStar.getIndex(edge) } getDegree () { return this._deStar.getDegree() } interfaces_ () { return [] } getClass () { return Node } static getEdgesBetween (node0, node1) { const edges0 = DirectedEdge.toEdges(node0.getOutEdges().getEdges()) const commonEdges = new HashSet(edges0) const edges1 = DirectedEdge.toEdges(node1.getOutEdges().getEdges()) commonEdges.retainAll(edges1) return commonEdges } }