Label.args3 constructor

Label.args3(
  1. int onLoc,
  2. int leftLoc,
  3. int rightLoc
)

Construct a Label with On, Left and Right locations for both Geometries. Initialize the locations for both Geometries to the given values.

Implementation

Label.args3(int onLoc, int leftLoc, int rightLoc) {
  elt[0] = new TopologyLocation(onLoc, leftLoc, rightLoc);
  elt[1] = new TopologyLocation(onLoc, leftLoc, rightLoc);
}