Function applyRotationTransform

  • Applies a rotation matrix to coordinates Used to adjust mouse coordinates based on the current rotation of the image This function implements a standard 2D rotation matrix transformation: [x'] [cos(θ) -sin(θ)] [x] [y'] = [sin(θ) cos(θ)] [y]

    See

    https://mathworld.wolfram.com/RotationMatrix.html for mathematical derivation

    Returns

    Coordinates after applying rotation matrix

    Parameters

    • relativeX: number

      X-coordinate relative to center before rotation

    • relativeY: number

      Y-coordinate relative to center before rotation

    • angle: number

      Rotation angle in degrees

    Returns {
        rotatedX: number;
        rotatedY: number;
    }

    • rotatedX: number
    • rotatedY: number

Generated using TypeDoc