diff --git a/src/display/page_viewport.js b/src/display/page_viewport.js index 07d10dc83..73086e0ac 100644 --- a/src/display/page_viewport.js +++ b/src/display/page_viewport.js @@ -190,7 +190,6 @@ class PageViewport { * @returns {Array} Array containing `x`- and `y`-coordinates of the * point in the viewport coordinate space. * @see {@link convertToPdfPoint} - * @see {@link convertToViewportRectangle} */ convertToViewportPoint(x, y) { const p = [x, y]; @@ -198,21 +197,6 @@ class PageViewport { return p; } - /** - * Converts PDF rectangle to the viewport coordinates. - * @param {Array} rect - The xMin, yMin, xMax and yMax coordinates. - * @returns {Array} Array containing corresponding coordinates of the - * rectangle in the viewport coordinate space. - * @see {@link convertToViewportPoint} - */ - convertToViewportRectangle(rect) { - const topLeft = [rect[0], rect[1]]; - Util.applyTransform(topLeft, this.transform); - const bottomRight = [rect[2], rect[3]]; - Util.applyTransform(bottomRight, this.transform); - return [topLeft[0], topLeft[1], bottomRight[0], bottomRight[1]]; - } - /** * Converts viewport coordinates to the PDF location. For examples, useful * for converting canvas pixel location into PDF one.