Interface OffsettedPointTwoDimensionalConsumer

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface OffsettedPointTwoDimensionalConsumer
Like a PointTwoDimensionalConsumer but also has a buffer offset.
Author:
Owen Feehan
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    accept(Point2i point, int offset)
    Accepts a point like with a Consumer in general.
  • Method Details

    • accept

      void accept(Point2i point, int offset)
      Accepts a point like with a Consumer in general.
      Parameters:
      point - the current iteration point in a buffer.
      offset - the offset in the buffer.