flipImpl

Reverses the picture along the specified axis.

  1. Image flipImpl(Image image)
    template flipImpl(int axis)
    @trusted nothrow pure
    static if(axis == XAxis)
    flipImpl
  2. Image flipImpl(Image image)

Members

Functions

flipImpl
Image flipImpl(Image image)
Undocumented in source. Be warned that the author may not have intended to support it.
flipImpl
Image flipImpl(Image image)
Undocumented in source. Be warned that the author may not have intended to support it.

Examples

image
    .flip!XAxis
    .flip!YAxis;

Meta