CrossUI.GeometryExtensions.Intersect C# (CSharp) Method

Intersect() public static method

public static Intersect ( this _, IGeometry other ) : IGeometry
_ this
other IGeometry
return IGeometry
        public static IGeometry Intersect(this IGeometry _, IGeometry other)
        {
            return _.Combine(CombineMode.Intersect, other);
        }