Method Contains
Contains<TPoint>(IEnumerable<TPoint>, IEnumerable<TPoint>)
Checks whether all the points in smallShape are contained in the bigShape.
public static bool Contains<TPoint>(IEnumerable<TPoint> bigShape, IEnumerable<TPoint> smallShape)Parameters
- bigShapeIEnumerable<TPoint>
- List of point representing the big shape. 
- smallShapeIEnumerable<TPoint>
- List of point representing the small shape. 
Returns
Type Parameters
- TPoint
- The type of point of the shapes.