jsts
Version:
A JavaScript library of spatial predicates and functions for processing geometry
16 lines (15 loc) • 329 B
JavaScript
import Edge from '../../planargraph/Edge.js'
export default class LineMergeEdge extends Edge {
constructor() {
super()
LineMergeEdge.constructor_.apply(this, arguments)
}
static constructor_() {
this._line = null
const line = arguments[0]
this._line = line
}
getLine() {
return this._line
}
}