createNode method

Node createNode(
  1. Coordinate coord
)
override

The basic node constructor does not allow for incident edges

Implementation

Node createNode(Coordinate coord) {
  return new Node(coord, new DirectedEdgeStar());
}