Example #1
0
 /// <summary>
 /// Returns true if the primary geometry is wholly contained within the comparison geometry.
 /// </summary>
 /// <param name="g1"></param>
 /// <param name="g2"></param>
 /// <returns></returns>
 public static bool Within(Geometry g1, Geometry g2)
 {
     return(g1.Contains(g2));
 }