mirror of
https://github.com/mozilla/pdf.js.git
synced 2026-07-13 18:45:52 +02:00
Merge pull request #21426 from Snuffleupagus/rm-convertToViewportRectangle
[api-minor] Remove the unused `convertToViewportRectangle` method in the `PageViewport` class
This commit is contained in:
commit
ca34359e1f
@ -190,7 +190,6 @@ class PageViewport {
|
|||||||
* @returns {Array} Array containing `x`- and `y`-coordinates of the
|
* @returns {Array} Array containing `x`- and `y`-coordinates of the
|
||||||
* point in the viewport coordinate space.
|
* point in the viewport coordinate space.
|
||||||
* @see {@link convertToPdfPoint}
|
* @see {@link convertToPdfPoint}
|
||||||
* @see {@link convertToViewportRectangle}
|
|
||||||
*/
|
*/
|
||||||
convertToViewportPoint(x, y) {
|
convertToViewportPoint(x, y) {
|
||||||
const p = [x, y];
|
const p = [x, y];
|
||||||
@ -198,21 +197,6 @@ class PageViewport {
|
|||||||
return p;
|
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
|
* Converts viewport coordinates to the PDF location. For examples, useful
|
||||||
* for converting canvas pixel location into PDF one.
|
* for converting canvas pixel location into PDF one.
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user