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
16 lines (15 loc) • 328 B
JavaScript
import Edge from '../../planargraph/Edge'
export default class PolygonizeEdge extends Edge {
constructor() {
super()
PolygonizeEdge.constructor_.apply(this, arguments)
}
static constructor_() {
this._line = null
const line = arguments[0]
this._line = line
}
getLine() {
return this._line
}
}