Skip to content

Commit

Permalink
Allow rotated/skewed variants of projections
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-000 committed Dec 5, 2023
1 parent 76ff880 commit fba39e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ol/proj/Projection.js
Expand Up @@ -275,14 +275,14 @@ class Projection {
}

/**
* @return {import("../transform.js").Transform}|undefined} Transform matrix.
* @return {import("../transform.js").Transform|undefined} Transform matrix.
*/
getMatrix() {
return this.matrix_;
}

/**
* @param {import("../transform.js").Transform}|undefined} matrix Transform matrix.
* @param {import("../transform.js").Transform|undefined} matrix Transform matrix.
*/
setMatrix(matrix) {
this.matrix_ = matrix;
Expand Down

0 comments on commit fba39e7

Please sign in to comment.