mirror of
https://github.com/openseadragon/openseadragon.git
synced 2024-11-22 05:06:09 +03:00
Merge pull request #2183 from altert/master
Fix closure for croppingPolygons in _drawTiles function
This commit is contained in:
commit
c449a8353d
@ -1940,14 +1940,15 @@ $.extend($.TiledImage.prototype, $.EventSource.prototype, /** @lends OpenSeadrag
|
||||
}
|
||||
|
||||
if (this._croppingPolygons) {
|
||||
var self = this;
|
||||
this._drawer.saveContext(useSketch);
|
||||
try {
|
||||
var polygons = this._croppingPolygons.map(function (polygon) {
|
||||
return polygon.map(function (coord) {
|
||||
var point = this
|
||||
var point = self
|
||||
.imageToViewportCoordinates(coord.x, coord.y, true)
|
||||
.rotate(-this.getRotation(true), this._getRotationPoint(true));
|
||||
var clipPoint = this._drawer.viewportCoordToDrawerCoord(point);
|
||||
.rotate(-self.getRotation(true), self._getRotationPoint(true));
|
||||
var clipPoint = self._drawer.viewportCoordToDrawerCoord(point);
|
||||
if (sketchScale) {
|
||||
clipPoint = clipPoint.times(sketchScale);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user