Method Where
Where<TPoint>(IImplicitShape<TPoint>, Func<TPoint, bool>)
Creates a generic Function Shape that works as a Generic Where.
public static IImplicitShape<TPoint> Where<TPoint>(IImplicitShape<TPoint> shape, Func<TPoint, bool> predicate)Parameters
- shapeIImplicitShape<TPoint>
- Shape to apply the Where operation. 
- predicateFunc<TPoint, bool>
- Predicate that indicate the where condition. 
Returns
- IImplicitShape<TPoint>
Type Parameters
- TPoint
- Type of the point.