Rot90Op constructor

Rot90Op([
  1. int k = 1
])

Creates a Rot90 Op which will rotate image by k * 90 degree clockwise.

If k is negative image is rotated counter-clockwise.

Implementation

Rot90Op([int k = 1]) : _numRotation = (k % 4);