RelateOp.withRule constructor

RelateOp.withRule(
  1. Geometry g0,
  2. Geometry g1,
  3. BoundaryNodeRule boundaryNodeRule
)

Creates a new Relate operation with a specified Boundary Node Rule.

@param g0 a Geometry to relate @param g1 another Geometry to relate @param boundaryNodeRule the Boundary Node Rule to use

Implementation

RelateOp.withRule(Geometry g0, Geometry g1, BoundaryNodeRule boundaryNodeRule)
    : super.withRule(g0, g1, boundaryNodeRule) {
  relate = new RelateComputer(arg);
}