Esempio n. 1
0
 /// <summary>
 /// Creates a new Relate operation, using the default (OGC SFS) Boundary Node Rule.
 /// </summary>
 /// <param name="g0">a Geometry to relate</param>
 /// <param name="g1">another Geometry to relate</param>
 /// <param name="boundaryNodeRule">The Boundary Node Rule to use</param>
 public RelateOp(IGeometry g0, IGeometry g1, IBoundaryNodeRule boundaryNodeRule)
     : base(g0, g1, boundaryNodeRule)
 {
     _relate = new RelateComputer(arg);
 }
Esempio n. 2
0
 /// <summary>
 /// Creates a new Relate operation, using the default (OGC SFS) Boundary Node Rule.
 /// </summary>
 /// <param name="g0">a Geometry to relate</param>
 /// <param name="g1">another Geometry to relate</param>
 public RelateOp(IGeometry g0, IGeometry g1)
     : base(g0, g1)
 {
     _relate = new RelateComputer(arg);
 }