Function calculateCenterOffset

  • Calculates the relative position of a point from the center of an element

    Returns

    Object containing x and y distances from center

    Parameters

    • mouseX: number

      The x-coordinate of the mouse pointer

    • mouseY: number

      The y-coordinate of the mouse pointer

    • rect: DOMRect

      The bounding client rectangle of the target element

    Returns {
        relativeX: number;
        relativeY: number;
    }

    • relativeX: number
    • relativeY: number

Generated using TypeDoc