translateX method

double translateX(
  1. double x,
  2. InputImageRotation rotation,
  3. Size size,
  4. Size absoluteImageSize,
)

Implementation

double translateX(double x, InputImageRotation rotation, Size size,
      Size absoluteImageSize) {
    switch (rotation) {
      case InputImageRotation.rotation90deg:
return x *
    size.width /
    (Platform.isIOS
        ? absoluteImageSize.width
        : absoluteImageSize.height);
      case InputImageRotation.rotation270deg:
return size.width -
    x *
        size.width /
        (Platform.isIOS
            ? absoluteImageSize.width
            : absoluteImageSize.height);
      default:
return x * size.width / absoluteImageSize.width;
    }
  }