Label constructor

Label(
  1. int onLoc
)

Construct a Label with a single location for both Geometries. Initialize the locations to Null

Implementation

Label(int onLoc) {
  elt[0] = new TopologyLocation.fromOn(onLoc);
  elt[1] = new TopologyLocation.fromOn(onLoc);
}