Interface IPointWrapper<TPoint>
Provides a function for wrapping points that is used by wrapped grids.
Since many such functions require lookup tables, it's more suitable to provide it as a class than providing it as a delagate.
[Version(1, 7, 0)]
public interface IPointWrapper<TPoint> where TPoint : IGridPoint<TPoint>
Type Parameters
TPoint
- Extension Methods
Methods
Wrap(TPoint)
Returns a new point, that corresponds to the wrapped version of the give point.
TPoint Wrap(TPoint point)
Parameters
point
TPoint
Returns
- TPoint