Function normalizeToPercentage

  • Converts absolute rotated coordinates to percentage values relative to image dimensions Ensures values are clamped between 0-100% for valid CSS transform-origin properties

    Returns

    Normalized coordinates as percentages (0-100%)

    Parameters

    • rotatedX: number

      X-coordinate after rotation transformation

    • rotatedY: number

      Y-coordinate after rotation transformation

    • width: number

      Width of the target element

    • height: number

      Height of the target element

    Returns {
        x: number;
        y: number;
    }

    • x: number
    • y: number

Generated using TypeDoc