Exemplo n.º 1
0
 public GridBoundingBox Relate(
     GridBoundingBox other,
     Relation xRelation,
     Relation yRelation,
     int xOffset = 0,
     int yOffset = 0)
 {
     return(new GridBoundingBox(
                XInterval.Relate(other.XInterval, xRelation, xOffset),
                YInterval.Relate(other.YInterval, yRelation, yOffset)));
 }